/* Kosár oldal - Összes CSS stílus */


        /* Modern színpaletta és változók */
        :root {
            --primary-color: #3b82f6;
            --primary-hover: #2563eb;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --danger-color: #ef4444;
            --dark-color: #1f2937;
            --light-bg: #f8fafc;
            --border-color: #e5e7eb;
            --text-primary: #111827;
            --text-secondary: #6b7280;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --border-radius: 12px;
        }

        /* Modern kosár container */
        .modern-cart-section {
            background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
            padding: 2rem 0;
            min-height: 100vh;
        }

        .modern-cart-container {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow-xl);
            border: 1px solid var(--border-color);
            margin-bottom: 2rem;
        }

        .modern-cart-title {
            color: var(--primary-color);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
        }

        .modern-cart-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
            border-radius: 2px;
        }

                 /* Modern termék kártya */
         .modern-product-card {
             display: flex;
             align-items: center;
             background: linear-gradient(135deg, #ffffff 0%, var(--light-bg) 100%);
             border-radius: var(--border-radius);
             padding: 1.5rem;
             margin-bottom: 1.5rem;
             box-shadow: var(--shadow-md);
             border: 1px solid var(--border-color);
             transition: all 0.3s ease;
             position: relative;
             overflow: hidden;
             animation-delay: calc(var(--index) * 0.1s);
         }

        .modern-product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--success-color));
        }

        .modern-product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-color);
        }

        .modern-product-image {
            flex: 0 0 120px;
            margin-right: 1.5rem;
            position: relative;
        }

        .modern-product-image img {
            width: 120px;
            height: 120px;
            border-radius: 8px;
            object-fit: cover;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease;
        }

        .modern-product-card:hover .modern-product-image img {
            transform: scale(1.05);
        }

        .modern-product-details {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .modern-product-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .modern-product-price {
            font-size: 1.125rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .modern-product-total {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-top: 0.5rem;
        }

        /* Modern mennyiség vezérlők */
        .modern-qty-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-left: 1.5rem;
        }

        .modern-qty-wrapper {
            display: flex;
            align-items: center;
            background: var(--light-bg);
            border-radius: 8px;
            padding: 0.5rem;
            box-shadow: var(--shadow-sm);
        }

        .modern-qty-btn {
            width: 36px;
            height: 36px;
            border: none;
            border-radius: 6px;
            background: var(--primary-color);
            color: white;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modern-qty-btn:hover {
            background: var(--primary-hover);
            transform: scale(1.1);
        }

        .modern-qty-btn:active {
            transform: scale(0.95);
        }

        .modern-qty-display {
            min-width: 50px;
            text-align: center;
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0 0.75rem;
        }

        .modern-delete-btn {
            background: linear-gradient(135deg, var(--danger-color), #dc2626);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .modern-delete-btn:hover {
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* Modern checkout gomb */
        .modern-checkout-container {
            text-align: center;
            margin-top: 3rem;
            padding: 2rem;
            background: var(--light-bg);
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
        }

        .modern-checkout-summary {
            margin-bottom: 2rem;
        }

        .modern-total-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .modern-checkout-btn {
            background: linear-gradient(135deg, var(--success-color), #059669);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 1rem 3rem;
            font-size: 1.25rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: var(--shadow-md);
        }

        .modern-checkout-btn:hover {
            background: linear-gradient(135deg, #059669, #047857);
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
            color: white;
            text-decoration: none;
        }

        .modern-checkout-btn:active {
            transform: translateY(-1px);
        }

        /* Üres kosár állapot */
        .modern-empty-cart {
            text-align: center;
            padding: 4rem 2rem;
            background: var(--light-bg);
            border-radius: var(--border-radius);
            border: 2px dashed var(--border-color);
        }

        .modern-empty-cart-icon {
            font-size: 4rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        .modern-empty-cart-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .modern-empty-cart-text {
            color: var(--text-secondary);
            font-size: 1.125rem;
            margin-bottom: 2rem;
        }

        .modern-shop-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
            color: white;
            border: none;
            border-radius: 8px;
            padding: 0.875rem 2rem;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .modern-shop-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            color: white;
            text-decoration: none;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .modern-product-card {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .modern-product-image {
                margin-right: 0;
                margin-bottom: 1rem;
            }

            .modern-qty-controls {
                margin-left: 0;
                justify-content: center;
            }

            .modern-cart-container {
                padding: 1rem;
            }
        }

        /* Animációk */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Loading state */
        .loading {
            opacity: 0.7;
            pointer-events: none;
        }

        .loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            border: 2px solid var(--border-color);
            border-top: 2px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
    

/* ========== Next CSS Block ========== */



                    

/* ========== Next CSS Block ========== */


                        #search-results {
                        background: white;
                        border: 1px solid #ddd;
                        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                        padding: 10px;
                        border-radius: 5px;
                        max-height: 450px;
                        overflow-y: auto;
                        z-index: 1000; 
                        position: absolute;
                        top: 100%; 
                        left: 0;
                        }
                    

/* ========== Next CSS Block ========== */


                        .dropdown-menu {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Árnyék hozzáadása */
    border-radius: 8px; /* Kerekített sarkok */
    padding: 10px; /* Több tér az elemek között */
    border: none; /* Eltávolítjuk az alapértelmezett keretet */
}

.dropdown-menu ul {
    list-style: none; /* Listajelölők eltávolítása */
    margin: 0;
    padding: 0;
}

.dropdown-menu li {
    padding: 8px 0; /* Több tér minden elem között */
    border-bottom: 1px solid #f1f1f1; /* Elválasztó vonal hozzáadása */
}

.dropdown-menu li:last-child {
    border-bottom: none; /* Az utolsó elem alatti elválasztó vonal eltávolítása */
}

.dropdown-menu .dropdown-item {
    display: block; /* Teljes szélességű elemek */
    padding: 8px 20px; /* Nagyobb padding az elemeknek */
    color: #333; /* Szövegszín beállítása */
    text-decoration: none; /* Az aláhúzás eltávolítása a linkekről */
    transition: background-color 0.2s ease-in-out; /* Sima háttérszín átmenet */
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f8f8f8; /* Háttérszín megváltoztatása amikor ráviszik az egeret */
}

.balance {
    font-weight: bold; /* Az egyenleg kiemelése */
}
                    

/* ========== Next CSS Block ========== */


        /* CSS for the dropdown */
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #f9f9f9;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
            z-index: 1;
        }

        .dropdown-content a {
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
        }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }
        

/* ========== Next CSS Block ========== */


@media only screen and (min-width: 991px) {
    #responsive-nav .cart-menu-item {
        display: none !important;
    }
}


/* Header cart visibility styles moved to header.css */


/* ========== Next CSS Block ========== */

.rainbow-text a {
                        background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet, red);
                        background-size: 400%;
                        -webkit-background-clip: text;
                        background-clip: text;
                        color: transparent;
                        animation: rainbow-animation 10s linear infinite;
                        }

                        @keyframes rainbow-animation {
                            0% { background-position: 0% 50%; }
                            50% { background-position: 100% 50%; }
                            100% { background-position: 0% 50%; }
                        }

                    

/* ========== Next CSS Block ========== */


                            .footer-payments {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-payments li {
    margin: 0 10px; /* A logók közötti távolság */
}

.footer-payments li a img {
    width: 80px;   /* Fix szélesség */
    height: 50px;  /* Fix magasság */
    object-fit: contain; /* A kép arányainak megtartása */
    display: block;
}

                        

/* ========== Next CSS Block ========== */

/* Kategória menü CSS már a category_menu.css-ben van definiálva */
