/**
Theme Name: Stroneo! Child Theme
Author: Two colours
Author URI: https://two-colours.com/
Description: Motyw Potomny Stroneo!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stroneo-child-theme
Template: astra
*/

.dashicons-editor-help:before {
    content: "\f223" !important;
}
.custom-upsell-widget {
            padding: 1.5em;
            background: #f7f7f7;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .custom-upsell-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin-bottom: 1em;
        }
        .custom-upsell-table th, 
        .custom-upsell-table td {
            padding: 10px;
            text-align: left;
            vertical-align: middle;
        }
        .upsell-product-row {
            transition: background-color 0.3s ease;
        }
        .upsell-product-row:hover {
            background-color: #f0f0f0;
        }
        .upsell-icon-cell {
            width: 40px;
            text-align: center;
        }
        .upsell-product-icon {
            max-width: 30px;
            max-height: 30px;
        }
        .upsell-tooltip-icon {
            color: #999;
            margin-left: 5px;
            cursor: help;
        }
        .upsell-checkbox-cell {
            width: 50px;
            text-align: center;
        }
        .custom-upsell-checkbox {
            transform: scale(1.2);
        }
        .custom-upsell-button {
            background-color: #0073aa;
            color: white;
            transition: all 0.3s ease;
        }
        .custom-upsell-button:hover {
            background-color: #005177;
        }
        .upsell-status-msg {
            margin-top: 10px;
            padding: 8px;
            border-radius: 3px;
            display: none;
        }
        .upsell-status-success {
            background-color: #dff0d8;
            color: #3c763d;
            display: block;
        }
        .upsell-status-error {
            background-color: #f2dede;
            color: #a94442;
            display: block;
        }
        .upsell-adding-animation {
            animation: pulse 1s infinite;
            opacity: 0.7;
        }
        @keyframes pulse {
            0% { opacity: 0.7; }
            50% { opacity: 0.3; }
            100% { opacity: 0.7; }
        }
        .cart-refresh-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
        }
        .cart-refreshing .cart-refresh-overlay {
            opacity: 1;
            visibility: visible;
        }
        .cart-refresh-spinner {
            border: 4px solid rgba(0,0,0,0.1);
            border-radius: 50%;
            border-top: 4px solid #0073aa;
            width: 30px;
            height: 30px;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .added-to-cart-highlight {
            animation: highlightGreen 2s ease-out;
        }
        @keyframes highlightGreen {
            0% { background-color: #dff0d8; }
            100% { background-color: transparent; }
        }
        input[type=checkbox], input[type=radio] {
            cursor: pointer;
        }
        @media screen and (max-width: 900px) {
            .cart-collaterals {
                flex-direction: column;
                gap: 20px;
                align-items: flex-end;
            }
            .custom-upsell-widget {
                width: 100%;
            }
        }