        :root {
            --deep-forest: #1F3D2D;
            --cream: #F7F4EF;
            --warm-taupe: #8C7261;
            --gold-accent: #C9A24A;
            --charcoal: #111111;
            --soft-shadow: rgba(17,17,17,0.08);
            --transition: all 0.3s ease;
        }

        /* Fallbacks for browsers that don't support CSS variables */

        body {
            font-family: 'Inter', sans-serif;
            color: #111111; /* fallback for var(--charcoal) */
            color: var(--charcoal);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            letter-spacing: 0.02em;
        }

        /* Add fallbacks for CSS variable using classes */
        .btn-primary,
        .btn-secondary,
        .btn-main-cart,
        .btn-side-cart {
            /* Ensure these work in older browsers by providing fallbacks */
            border-radius: 16px; /* fallback for rounded-xl */
            border-radius: 9999px; /* Tailwind value */
        }

        /* Fallback styles for browsers without CSS variable support */
        .no-css-variables .btn-primary,
        .no-css-variables .btn-secondary,
        .no-css-variables .btn-main-cart,
        .no-css-variables .btn-side-cart {
            background: #C9A24A; /* fallback for gold-accent */
        }

        .no-css-variables .glass-panel {
            background: #F7F4EF; /* fallback cream color */
            -webkit-backdrop-filter: none;
            backdrop-filter: none;
        }

        .no-css-variables .text-warm-taupe { color: #8C7261; }
        .no-css-variables .text-deep-forest { color: #1F3D2D; }
        .no-css-variables .text-gold-accent { color: #C9A24A; }
        .no-css-variables .bg-deep-forest { background-color: #1F3D2D; }
        .no-css-variables .bg-cream { background-color: #F7F4EF; }
        .no-css-variables .bg-gold-accent { background-color: #C9A24A; }

        /* Additional fallbacks for flexbox and layout classes */
        .no-css-variables .flex { display: -webkit-box; display: -ms-flexbox; display: flex; }
        .no-css-variables .inline-flex { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; }
        .no-css-variables .flex-row { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; }
        .no-css-variables .flex-col { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
        .no-css-variables .items-center { -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
        .no-css-variables .justify-center { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
        .no-css-variables .justify-between { -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
        .no-css-variables .hidden { display: none; }

        /* Grid fallbacks */
        .no-css-variables .grid { display: -webkit-box; display: -ms-grid; display: grid; }
        .no-css-variables .grid-cols-1 { -ms-grid-columns: 1fr; grid-template-columns: 1fr; }
        .no-css-variables .grid-cols-2 { -ms-grid-columns: 1fr 1fr; grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .no-css-variables .grid-cols-3 { -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: repeat(3, minmax(0, 1fr)); }
        .no-css-variables .grid-cols-4 { -ms-grid-columns: 1fr 1fr 1fr 1fr; grid-template-columns: repeat(4, minmax(0, 1fr)); }
        
        .glass-panel {
            background: rgba(247, 244, 239, 0.8);
            /* Fallback for browsers that don't support backdrop-filter */
            background: rgba(247, 244, 239, 0.9);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            box-shadow: 0 10px 30px var(--soft-shadow);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-main-cart { background: linear-gradient(135deg, #C9A24A 0%, #D4B563 100%); border-radius: 9999px; box-shadow: inset 0 2px 4px rgba(255, 215, 0, 0.3); transition: var(--transition); } 
        .btn-main-cart:hover { transform: translateY(-2px); box-shadow: inset 0 2px 4px rgba(255, 215, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.1); } 
        .btn-side-cart { border: 1px solid var(--gold-accent); border-radius: 9999px; background: transparent; transition: var(--transition); } 
        .btn-side-cart:hover { background: var(--cream); }
        
        .btn-primary {
            background: linear-gradient(135deg, #C9A24A 0%, #D4B563 100%);
            border-radius: 9999px;
            box-shadow: inset 0 2px 4px rgba(255, 215, 0, 0.3);
            transition: var(--transition);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: inset 0 2px 4px rgba(255, 215, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .btn-secondary {
            border: 1px solid var(--gold-accent);
            border-radius: 9999px;
            background: transparent;
            transition: var(--transition);
        }
        
        .btn-secondary:hover {
            background: var(--cream);
        }
        
        /* Nuclear option: Force exact same sizes */
        .btn-primary, .btn-secondary {
            width: 200px !important;
            height: 60px !important;
            display: inline-flex !important;
            justify-content: center !important;
            align-items: center !important;
            box-sizing: border-box !important;
        }

        /* Specific secondary button adjustments */
        .btn-secondary {
            font-weight: 600;
            border-width: 1.5px;
        }


        .card-hover {
            transition: var(--transition);
        }
        
        .card-hover:hover {
            transform: translateY(-5px) rotate(1deg);
            box-shadow: 0 15px 35px var(--soft-shadow);
        }
        
        .sticky-header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        padding-top: 1rem !important; /* Force initial padding */
        padding-bottom: 1rem !important; /* Force initial padding */
        box-sizing: border-box !important; /* THIS IS THE KEY - makes padding part of height calculation */
        /* TRANSITION IS NOW HANDLED BY THE FIX BELOW */
        }

        /* --- Smooth Header Shrink Fix --- */
        .sticky-header {
            transition: all 0.3s ease !important; /* Force transition on all properties */
        }

        .sticky-header .logo img {
            transition: all 0.3s ease; /* Smooth transition for the logo */
            height: 3rem; /* Default height */
        }

        .sticky-header .flex.items-center.space-x-4 svg {
            transition: all 0.3s ease; /* Smooth transition for the icons */
            height: 1.25rem; /* h-5 equivalent */
            width: 1.25rem;
        }

        /* Styles for the SHRUNK state */
        header.sticky-header.header-is-shrunk {
            padding: 0.5rem 0 !important;
            background: rgba(247, 244, 239, 0.95) !important;
            /* Fallback for browsers that don't support backdrop-filter */
            background: rgba(247, 244, 239, 0.98) !important;
            -webkit-backdrop-filter: blur(10px) !important;
            backdrop-filter: blur(10px) !important;
            box-shadow: 0 2px 10px var(--soft-shadow) !important;
            /* ADD THIS LINE TO FIX THE VERTICAL ALIGNMENT */
            align-items: center !important;
        }

        /* Shrink the logo and icons when header is shrunk */
        header.sticky-header.header-is-shrunk .logo img {
            height: 2.5rem; /* Slightly smaller logo */
        }

        header.sticky-header.header-is-shrunk .flex.items-center.space-x-4 svg {
            height: 1.1rem; /* Slightly smaller icons */
            width: 1.1rem;
        }

        .hero-parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        /* Ripple effect */
        .ripple {
            position: relative;
            overflow: hidden;
            transform: translate3d(0, 0, 0);
        }
        
        .ripple:after {
            content: "";
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
            background-repeat: no-repeat;
            background-position: 50%;
            transform: scale(10, 10);
            opacity: 0;
            transition: transform .5s, opacity 1s;
        }
        
        .ripple:active:after {
            transform: scale(0, 0);
            opacity: .3;
            transition: 0s;
        }
        
        /* Toast notification */
        .toast-notification {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--deep-forest);
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 10000;
        }
        
        .toast-show {
            transform: translateY(0);
            opacity: 1;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .sr-only.focus:not-sr-only {
            position: static;
            width: auto;
            height: auto;
            padding: 0.5rem;
            margin: 0;
            overflow: visible;
            clip: auto;
            white-space: normal;
        }

        .glass-panel .flex button:last-child {
    display: none !important;
            }

                    /* Slideshow styles */
            .slideshow-container {
                position: relative;
                width: 100%;
                height: 100%;
            }

            .slide {
                background-size: cover;
                background-position: center;
            }

            .slide-dot {
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .slide-dot:hover {
                transform: scale(1.5);
            }

            .slide-dot.active {
                background-color: var(--gold-accent);
                width: 24px;
            }