    /* --- Core Variables (Matches Theme) --- */
        :root {
            --primary: #0A0A0A;
            --secondary: #D4AF37;
            --secondary-dark: #B5952F;
            --light: #FAF9F6;
            --white: #FFFFFF;
            --gray: #666666;
            --light-gray: #E5E5E5;
            --danger: #e74c3c;
            --brand-color: #158FF0; /* New Brand Color */
            --border-radius: 2px;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F7EF8A 50%, #D4AF37 100%);
            --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
            --shadow-hover: 0 15px 30px rgba(0,0,0,0.1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light);
            color: var(--primary);
            line-height: 1.6;
            font-weight: 300;
        }

        h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        
        /* --- Utilities --- */
        .container { width: 90%; max-width: 1440px; margin: 0 auto; padding: 0 15px; }
        .section-padding { padding: 80px 0; }
        .text-center { text-align: center; }
        .mb-20 { margin-bottom: 20px; }
        .mb-30 { margin-bottom: 30px; }

        /* Notification Toast */
        .toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--primary);
            color: var(--white);
            padding: 15px 25px;
            border-left: 4px solid var(--secondary);
            border-radius: var(--border-radius);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 10000;
            transform: translateX(150%);
            transition: transform 0.4s ease;
        }
        .toast.show { transform: translateX(0); }
        .toast.success { border-left-color: #4CAF50; }
        .toast.error { border-left-color: var(--danger); }

        /* --- Navbar (Fully Responsive) --- */
        header {
            position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
            padding: 15px 0; transition: padding 0.3s ease, background 0.3s ease;
            background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent); 
        }
        header.scrolled {
            padding: 10px 0; background: rgba(250, 249, 246, 0.95);
            backdrop-filter: blur(10px); box-shadow: 0 1px 0 rgba(0,0,0,0.05);
            color: var(--primary);
        }
        /* Navbar text color adjustment for transparency over slider */
        header:not(.scrolled) .nav-link, 
        header:not(.scrolled) .icon-btn {
            color: var(--white);
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        header:not(.scrolled) .nav-link::after { background: var(--secondary); }
        
        /* Revert to dark text when scrolled */
        header.scrolled .logo, 
        header.scrolled .nav-link, 
        header.scrolled .icon-btn {
            color: var(--primary);
            text-shadow: none;
        }

        .navbar { display: flex; justify-content: space-between; align-items: center; }
        
        /* --- UPDATED: Logo Styles for Text --- */
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 12px; /* Space between image and text */
        }

        .logo img {
            height: 40px;
            width: auto;
            display: block;
            transition: var(--transition);
        }

        .company-name {
            color: var(--brand-color); /* #158FF0 */
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px; /* Increased slightly */
            font-weight: 700;
            letter-spacing: 0.5px;
            white-space: nowrap;
            /* Added text shadow for "highlighted" effect */
            text-shadow: 0 2px 4px rgba(0,0,0,0.15), 0 0 1px rgba(255,255,255,0.1); 
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        
        header.scrolled .logo img {
            height: 35px; /* Slightly smaller on scroll */
        }

        .nav-menu { display: flex; gap: 40px; align-items: center; }
        .nav-link { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; position: relative; }
        .nav-link:hover, .nav-link.active { color: var(--secondary) !important; }
        .nav-link::after { content: ''; position: absolute; width: 0; height: 1px; bottom: -4px; left: 0; background: var(--secondary); transition: 0.3s; }
        .nav-link:hover::after, .nav-link.active::after { width: 100%; }

        /* Special style for Checkout Link in Nav */
        .nav-link.checkout-link {
            border: 1px solid var(--secondary);
            padding: 8px 15px;
            border-radius: 2px;
        }
        .nav-link.checkout-link:hover {
            background: var(--secondary);
            color: var(--white) !important;
        }
        .nav-link.checkout-link::after { display: none; } /* Remove underline */

        .nav-icons { display: flex; gap: 25px; align-items: center; }
        .icon-btn { font-size: 18px; cursor: pointer; background: none; border: none; transition: color 0.3s; }
        .icon-btn:hover { color: var(--secondary) !important; }
        .cart-wrap { position: relative; }
        .cart-count { position: absolute; top: -6px; right: -6px; background: var(--secondary); color: var(--white); font-size: 9px; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; }
        
        .hamburger, .mobile-only-close { display: none; }

        /* Search Bar Styles */
        .search-container {
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .search-form {
            display: flex;
            align-items: center;
        }

        .search-input {
            width: 0;
            opacity: 0;
            border: none;
            background: transparent;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: inherit;
            padding: 5px 0;
            border-bottom: 1px solid transparent;
            transition: all 0.4s ease;
            pointer-events: none;
            margin-right: 5px;
        }

        .search-container.active .search-input {
            width: 180px;
            opacity: 1;
            pointer-events: auto;
            border-bottom-color: var(--secondary);
            padding: 5px 10px 5px 0;
        }

        /* --- LOGIC: Hide Company Name when Search is Active --- */
        .navbar.search-active .company-name {
            display: none;
        }

        /* Mobile Responsive Search Styles */
        @media (max-width: 768px) {
            .company-name {
                font-size: 22px; /* Smaller text on tablet/mobile */
            }

            .navbar {
                position: relative; /* Establish positioning context */
            }

            .search-container.active {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: var(--light);
                z-index: 50;
                padding-left: 15px;
                /* Center vertically in the header */
                display: flex;
                align-items: center;
                border-radius: 4px;
            }

            /* Dark background when header is transparent on mobile */
            header:not(.scrolled) .search-container.active {
                background: #111;
                box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            }

            .search-container.active .search-form {
                width: 100%;
                justify-content: space-between;
            }

            .search-container.active .search-input {
                width: 100%;
                font-size: 16px; /* Prevents auto-zoom on iOS */
                padding: 10px 0;
            }
            
            .search-container.active .icon-btn {
                padding: 10px;
            }
        }
        
        @media (max-width: 480px) {
            .company-name {
                font-size: 18px; /* Even smaller on very small screens */
            }
            /* Ensure logo image resizes if needed */
            .logo img {
                height: 30px;
            }
        }

        .search-input:focus {
            outline: none;
        }

        /* Adjust placeholder color based on scroll state */
        header:not(.scrolled) .search-input::placeholder { color: rgba(255,255,255,0.7); }
        header.scrolled .search-input::placeholder { color: rgba(0,0,0,0.5); }

        /* --- Account Dropdown Styles --- */
        .nav-item-dropdown {
            position: relative;
            cursor: pointer;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--white);
            min-width: 180px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: var(--border-radius);
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1100;
        }
        
        /* Show dropdown on Hover OR when Active (Clicked) */
        .nav-item-dropdown:hover .dropdown-menu,
        .nav-item-dropdown.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            top: 100%;
        }
        
        .dropdown-item {
            display: block;
            padding: 12px 20px;
            color: var(--primary);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background 0.3s;
            text-align: left;
            text-decoration: none;
        }
        
        .dropdown-item:hover {
            background: var(--light-gray);
            color: var(--secondary);
        }

        @media (max-width: 1024px) {
            .dropdown-menu {
                position: static;
                transform: none;
                box-shadow: none;
                background: transparent;
                text-align: center;
                display: none;
                padding: 0;
                margin-top: 10px;
            }
            /* Show on Mobile: Only Active (Click) to prevent hover issues */
            /* Removed :hover support on mobile to prevent ghost clicks */
            .nav-item-dropdown.active .dropdown-menu {
                display: block;
            }
            .dropdown-item {
                color: var(--gray);
                padding: 10px 0;
            }
        }

        /* --- Hero Slider --- */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 80vh;
            min-height: 500px;
            overflow: hidden;
            background: #000;
        }

        .slider-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out, transform 8s ease;
            transform: scale(1);
            z-index: 1;
        }

        .slide.active {
            opacity: 1;
            transform: scale(1.05);
            z-index: 2;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }

        .slide-content {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 3;
            color: var(--white);
            width: 80%;
            max-width: 800px;
        }

        .slide-subtitle {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease 0.4s;
        }

        .slide-title {
            font-size: 64px;
            line-height: 1.1;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.6s;
        }

        .slide.active .slide-subtitle,
        .slide.active .slide-title,
        .slide.active .slide-btn {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-btn {
            display: inline-block;
            padding: 15px 40px;
            background: transparent;
            border: 1px solid var(--white);
            color: var(--white);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease 0.8s, background 0.3s, border-color 0.3s;
        }

        .slide-btn:hover {
            background: var(--secondary);
            border-color: var(--secondary);
            color: var(--white);
        }

        /* Slider Controls */
        .slider-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: var(--transition);
        }
        .slider-control:hover { background: var(--secondary); border-color: var(--secondary); }
        .prev-btn { left: 30px; }
        .next-btn { right: 30px; }

        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .dot {
            width: 10px; height: 10px;
            border: 1px solid var(--white);
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
        }
        .dot.active { background: var(--secondary); border-color: var(--secondary); }

        /* --- Featured Products --- */
        .featured-section {
            background: linear-gradient(to bottom, #faf9f6 0%, #f0ede6 100%);
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 42px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: var(--secondary);
        }

        .section-header p {
            color: var(--gray);
            font-size: 16px;
            max-width: 600px;
            margin: 20px auto 0;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        /* --- Shop Layout --- */
        .shop-header-area {
            margin-bottom: 40px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        .shop-title h1 { font-size: 42px; margin-bottom: 5px; }
        .shop-title p { color: var(--gray); font-size: 14px; }
        
        .sort-options select {
            padding: 10px 15px;
            border: 1px solid var(--light-gray);
            background: transparent;
            font-family: 'Inter', sans-serif;
            color: var(--primary);
            cursor: pointer;
        }

        .shop-container {
            display: grid;
            grid-template-columns: 240px 1fr;
            gap: 50px;
        }

        /* Sidebar Filters */
        .filter-sidebar h3 { 
            font-size: 16px; 
            margin-bottom: 20px; 
            text-transform: uppercase; 
            letter-spacing: 1px; 
            color: var(--primary);
            font-family: 'Inter', sans-serif;
            font-weight: 500;
        }
        
        .filter-group { 
            margin-bottom: 40px; 
            padding: 20px;
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
        }
        
        .category-list li { 
            margin-bottom: 12px; 
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .category-list li:last-child { 
            border-bottom: none; 
            margin-bottom: 0; 
            padding-bottom: 0;
        }
        
        .category-list a { 
            color: var(--gray); 
            font-size: 14px; 
            display: flex; 
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        .category-list a:hover { 
            color: var(--secondary); 
            transform: translateX(5px);
        }
        .category-list span { 
            font-size: 11px; 
            background: var(--light-gray); 
            padding: 2px 8px; 
            border-radius: 10px; 
            color: var(--gray);
        }

        .price-range input { 
            width: 100%; 
            margin-bottom: 10px; 
            accent-color: var(--secondary); 
        }
        .price-labels { 
            display: flex; 
            justify-content: space-between; 
            font-size: 12px; 
            color: var(--gray); 
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .product-card {
            background: var(--white);
            position: relative;
            transition: var(--transition);
            border: 1px solid transparent;
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .product-image {
            position: relative;
            height: 380px;
            overflow: hidden;
            background: #f4f4f4;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        /* Badges */
        .badge {
            position: absolute;
            top: 15px; left: 15px;
            padding: 5px 12px;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            border-radius: 2px;
            z-index: 2;
        }
        .badge-new { background: var(--primary); color: var(--white); }
        .badge-sale { background: var(--secondary); color: var(--white); }
        .badge-featured { background: var(--white); color: var(--primary); border: 1px solid var(--light-gray); }

        /* Quick Action */
        .quick-actions {
            position: absolute;
            bottom: 0; left: 0; width: 100%;
            padding: 15px;
            display: flex;
            justify-content: center;
            gap: 8px; /* Added gap for multiple buttons */
            opacity: 0;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 3;
        }

        .product-card:hover .quick-actions {
            opacity: 1;
            transform: translateY(0);
        }

        .add-cart-btn, .buy-now-btn {
            padding: 12px 15px;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: 0.3s;
            font-weight: 600;
            border-radius: 2px;
            flex: 1; /* Equal width */
        }

        /* Add to Cart Style */
        .add-cart-btn {
            background: var(--white);
            color: var(--primary);
            border: none;
        }

        .add-cart-btn:hover {
            background: var(--primary);
            color: var(--secondary);
        }

        .add-cart-btn.remove {
            background: var(--primary);
            color: var(--white);
        }
        
        .add-cart-btn.remove:hover {
            background: var(--danger);
            color: var(--white);
        }

        /* Buy Now Style (New) */
        .buy-now-btn {
            background: var(--secondary);
            color: var(--white);
            border: 1px solid var(--secondary);
        }

        .buy-now-btn:hover {
            background: var(--secondary-dark);
            border-color: var(--secondary-dark);
        }

        .product-info {
            padding: 20px;
            text-align: center;
        }

        .product-cat {
            font-size: 11px; 
            color: var(--gray); 
            text-transform: uppercase; 
            letter-spacing: 1px; 
            margin-bottom: 5px;
            font-weight: 400;
        }

        .product-title {
            font-size: 20px; 
            margin-bottom: 8px; 
            color: var(--primary);
            font-weight: 400;
            line-height: 1.3;
        }

        .product-price {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            color: var(--secondary-dark);
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .old-price {
            text-decoration: line-through;
            color: #ccc;
            margin-right: 8px;
            font-size: 16px;
            font-weight: 400;
        }

        /* View All Button */
        .view-all {
            text-align: center;
            margin-top: 60px;
        }

        .view-all-btn {
            display: inline-block;
            padding: 15px 40px;
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: var(--transition);
        }

        .view-all-btn:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        /* --- Footer --- */
        footer { 
            background: #050505; 
            color: #888; 
            font-size: 14px; 
            padding: 80px 0 30px; 
            margin-top: 60px; 
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            color: var(--white);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
            font-family: 'Inter', sans-serif;
        }

        .footer-col p {
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #888; 
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            border: 1px solid #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--secondary);
            border-color: var(--secondary);
            color: var(--white);
        }

        .newsletter-form {
            position: relative;
            margin-top: 20px;
        }

        .newsletter-form input {
            width: 100%;
            padding: 15px 50px 15px 15px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--white);
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            border-radius: 2px;
        }
        
        .newsletter-form input:focus {
            outline: none;
            border-color: var(--secondary);
        }

        .newsletter-form button {
            position: absolute;
            right: 5px;
            top: 5px;
            height: calc(100% - 10px);
            background: var(--secondary);
            color: var(--white);
            border: none;
            padding: 0 15px;
            cursor: pointer;
            transition: var(--transition);
            border-radius: 2px;
        }

        .newsletter-form button:hover {
            background: var(--secondary-dark);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        /* Product Status Colors */
        .status-draft { color: #666; }
        .status-active { color: #4CAF50; }
        .status-inactive { color: #f44336; }
        
        /* --- Responsive Queries --- */
        @media (max-width: 1024px) {
            .hamburger, .mobile-only-close { display: block; cursor: pointer; font-size: 20px; }
            /* Mobile Nav specific colors */
            .nav-menu {
                position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px; height: 100vh;
                background: var(--light); flex-direction: column; justify-content: center; align-items: center;
                transition: right 0.4s ease; box-shadow: -5px 0 20px rgba(0,0,0,0.1); z-index: 1001;
            }
            .nav-menu .nav-link { color: var(--gray) !important; }
            .nav-menu.active { right: 0; }
            .nav-menu.active::before { content: ''; position: fixed; top: 0; left: -100vw; width: 100vw; height: 100vh; background: rgba(0,0,0,0.5); backdrop-filter: blur(2px); z-index: -1; }
            .nav-link { font-size: 18px; margin: 15px 0; }
            
            /* Shop Layout Responsive */
            .shop-container { grid-template-columns: 1fr; gap: 30px; }
            .filter-sidebar { display: none; }
            .product-grid { grid-template-columns: repeat(2, 1fr); }
            
            /* Slider responsive */
            .slide-title { font-size: 42px; }
            .hero-slider { height: 60vh; min-height: 400px; }

            /* Featured Grid */
            .featured-grid { grid-template-columns: repeat(2, 1fr); }

            /* Footer Responsive */
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .product-grid { grid-template-columns: 1fr; }
            .shop-header-area { flex-direction: column; align-items: flex-start; gap: 15px; }
            
            /* On mobile, show quick actions always or different styling */
            /* UPDATED: position: absolute to overlay on image, background for visibility */
            .quick-actions { 
                opacity: 1; 
                transform: translateY(0); 
                padding: 10px; 
                position: absolute; 
                background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
            }
            .product-image { height: 320px; }
            
            .slide-title { font-size: 32px; }
            .slide-btn { padding: 12px 30px; }
            .prev-btn, .next-btn { width: 40px; height: 40px; font-size: 14px; }
            .prev-btn { left: 10px; }
            .next-btn { right: 10px; }

            /* Featured Grid */
            .featured-grid { grid-template-columns: 1fr; }

            /* Footer Mobile */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid var(--light-gray);
            border-top: 2px solid var(--secondary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: var(--gray);
        }

        .empty-state i {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--light-gray);
        }

        .empty-state h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: var(--gray);
        }

        /* Filter Toggle for Mobile */
        .filter-toggle {
            display: none;
            padding: 10px 20px;
            background: var(--primary);
            color: var(--white);
            border: none;
            cursor: pointer;
            margin-bottom: 20px;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 12px;
        }

        @media (max-width: 1024px) {
            .filter-toggle { display: block; }
            .filter-sidebar { display: none; }
            .filter-sidebar.active { display: block; }
        }

        /* --- Floating Cart Basket --- */
        .floating-cart {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            z-index: 9999; /* Increased z-index for visibility */
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid var(--secondary);
            opacity: 0;
            visibility: hidden;
            transform: translate(-50%, 50px); /* Start slightly down */
        }

        /* Mobile specific adjustments for Floating Cart */
        @media (max-width: 768px) {
            .floating-cart {
                bottom: 20px; /* Adjust for mobile screens */
                width: 90%; /* Make it wider on mobile */
                justify-content: center;
                max-width: 350px;
            }
        }

        /* Show cart when it has items */
        .floating-cart.visible {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, 0);
        }

        .floating-cart:hover {
            transform: translate(-50%, -5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            color: var(--white); /* Ensure text stays white */
        }

        .cart-icon-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cart-icon-wrapper i {
            font-size: 24px;
            color: var(--secondary);
        }

        .floating-count {
            position: absolute;
            top: -8px;
            right: -10px;
            background: #f44336;
            color: white;
            font-size: 11px;
            font-weight: bold;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--primary);
        }

        .cart-text-group {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .cart-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gray);
        }

        .cart-total-label {
            font-size: 14px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            color: var(--white);
        }

        /* Animation for adding items */
        .floating-cart.shake {
            animation: cartPop 0.4s ease-out;
        }

        @keyframes cartPop {
            0% { transform: translate(-50%, 0) scale(1); }
            50% { transform: translate(-50%, 0) scale(1.1); }
            100% { transform: translate(-50%, 0) scale(1); }
        }
