 /* --- GLOBAL & PALETTE --- */
        :root {
            --bg-cream: #f4f0e6;
            --mitaar-red: #ba2025; 
            --ink-black: #1a1a1a;
            --border-thick: 3px solid #1a1a1a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg-cream);
            font-family: 'Montserrat', sans-serif;
            color: var(--ink-black);
            overflow-x: hidden;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
        }

        /* --- SMART TOP NAVIGATION --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 5%;
            background-color: rgba(244, 240, 230, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 2px solid rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .logo img {
            height: 90px;
            display: block;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-links > a, .nav-item-title {
            text-decoration: none;
            color: var(--ink-black);
            font-weight: 800;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: color 0.2s;
        }

        .nav-links > a:hover, .nav-item-title:hover {
            color: var(--mitaar-red);
        }

        /* --- FIXED DROPDOWN MENU --- */
        .dropdown-wrapper {
            position: relative;
            padding: 20px 0; 
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: var(--bg-cream);
            border: var(--border-thick);
            padding: 30px;
            display: flex;
            gap: 40px;
            width: 380px; 
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 10px 10px 0px rgba(0,0,0,0.08);
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 20px;
        }

        .dropdown-wrapper:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .drop-column {
            flex: 1; 
        }

        .drop-column h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            color: var(--mitaar-red);
            margin-bottom: 15px;
            text-transform: uppercase;
            border-bottom: 2px solid var(--ink-black);
            padding-bottom: 5px;
        }

        .drop-column a {
            display: block; 
            text-decoration: none;
            color: var(--ink-black);
            font-weight: 600;
            margin-bottom: 12px;
            font-size: 0.95rem;
            transition: padding-left 0.2s, color 0.2s;
        }

        .drop-column a:hover {
            color: var(--mitaar-red);
            padding-left: 5px;
        }

        .btn-cart {
            background: var(--mitaar-red);
            color: #fff !important;
            padding: 10px 24px;
            border-radius: 4px;
            white-space: nowrap;
        }
        
        .btn-cart:hover {
            background: var(--ink-black) !important;
        }

        /* --- THE FIXED ANIMATED BOTTLE --- */
        #fixed-bottle {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); 
            height: 80vh; 
            max-width: 95vw;
            object-fit: contain;
            z-index: 500;
            will-change: transform, top, left;
            pointer-events: none; 
            filter: drop-shadow(15px 25px 25px rgba(0,0,0,0.4));
        }

        /* --- PAGE SECTIONS --- */
        .section {
            position: relative;
            min-height: 120vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            padding: 0 5%;
        }

        .massive-text {
            position: absolute;
            font-family: 'Oswald', sans-serif;
            font-size: 22vw; 
            font-weight: 700;
            color: var(--mitaar-red);
            line-height: 0.8;
            text-transform: uppercase;
            text-align: center;
            z-index: 10; 
            white-space: nowrap;
            letter-spacing: -0.03em;
            text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
        }

        .text-top { top: 15%; }
        .text-bottom { bottom: 15%; }

        /* --- EDITORIAL INFO BOXES --- */
        .info-box {
            position: absolute;
            background: var(--bg-cream);
            border: var(--border-thick);
            padding: 25px;
            width: 300px;
            z-index: 100;
            box-shadow: 8px 8px 0px rgba(0,0,0,0.08);
        }

        .box-1 { top: 30%; left: 10%; }
        .box-2 { bottom: 20%; right: 10%; }
        .box-3 { top: 40%; right: 12%; }

        .info-header {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            text-transform: uppercase;
            border-bottom: 2px solid var(--ink-black);
            padding-bottom: 8px;
            margin-bottom: 15px;
        }

        .info-stat {
            font-size: 3rem;
            font-weight: 800;
            font-family: 'Oswald', sans-serif;
            color: var(--ink-black);
            line-height: 1;
        }

        .info-text {
            font-size: 0.85rem;
            line-height: 1.6;
            margin-top: 10px;
            font-weight: 600;
        }

        /* --- STYLISH FIXED ACCENT TEXT (RECTANGULAR BADGES) --- */
        .accent-text {
            font-family: 'Oswald', sans-serif;
            font-style: normal;
            font-weight: 700;
            font-size: 1.4rem;
            text-transform: uppercase;
            position: absolute;
            z-index: 400; /* Placed strictly behind the bottle (500) */
            background-color: var(--ink-black);
            color: var(--bg-cream);
            padding: 12px 25px;
            border: 2px solid var(--mitaar-red);
            border-radius: 0; /* Rectangular instead of oval */
            box-shadow: 8px 8px 0px var(--mitaar-red);
            white-space: nowrap;
            letter-spacing: 1px;
        }

        /* --- SCROLLING RIBBONS (MARQUEE) --- */
        .ribbon-wrapper {
            position: relative;
            padding: 60px 0;
            background: var(--bg-cream);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 50;
            border-top: 1px solid rgba(0,0,0,0.1);
        }

        .ribbon {
            display: flex;
            width: fit-content;
            padding: 15px 0;
            border-top: var(--border-thick);
            border-bottom: var(--border-thick);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .ribbon-black {
            background: var(--ink-black);
            color: var(--bg-cream);
            transform: rotate(-2deg) scale(1.05);
        }

        .ribbon-red {
            background: var(--mitaar-red);
            color: var(--bg-cream);
            transform: rotate(2deg) scale(1.05);
        }

        .ribbon-content {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding-right: 30px;
            animation: marquee 25s linear infinite;
        }

        .ribbon-content span {
            margin: 0 15px;
            color: var(--mitaar-red);
        }

        .ribbon-red .ribbon-content span {
            color: var(--ink-black);
        }

        .ribbon-content.reverse {
            animation: marquee-reverse 25s linear infinite;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        @keyframes marquee-reverse {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(0); }
        }

        /* --- THE LINEUP SECTION --- */
        .lineup-section {
            min-height: 100vh;
            background: var(--bg-cream);
            padding: 120px 5% 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .lineup-title {
            font-family: 'Oswald', sans-serif;
            font-size: 8rem;
            color: var(--ink-black);
            text-transform: uppercase;
            margin-bottom: 80px;
            line-height: 0.9;
            text-align: center;
        }

        .lineup-grid {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            gap: 60px;
            width: 100%;
            max-width: 1200px;
        }

        .product-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 300px;
        }

        .product-item img {
            height: 35vh;
            object-fit: contain;
            filter: drop-shadow(0 15px 15px rgba(0,0,0,0.2));
            margin-bottom: 30px;
        }

        #dock-target {
            width: 300px;
            height: 35vh; 
            margin-bottom: 30px;
        }

        .product-meta h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .product-meta p {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--mitaar-red);
        }

        /* --- EDITORIAL FOOTER / BOTTOM BAR --- */
        .site-footer {
            background-color: var(--bg-cream);
            border-top: var(--border-thick);
            padding: 60px 5% 30px;
            position: relative;
            z-index: 100; 
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            border-bottom: 2px solid var(--ink-black);
            padding-bottom: 40px;
            margin-bottom: 30px;
        }

        .footer-brand h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 3.5rem;
            line-height: 1;
            color: var(--mitaar-red);
            margin-bottom: 10px;
        }

        .footer-brand p {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .footer-col h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            text-transform: uppercase;
            margin-bottom: 15px;
            color: var(--ink-black);
        }

        .footer-col a {
            display: block;
            text-decoration: none;
            color: var(--ink-black);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 10px;
            transition: color 0.2s;
        }

        .footer-col a:hover {
            color: var(--mitaar-red);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--ink-black);
        }

        /* =========================================
           MOBILE & TABLET OPTIMIZATION 
        ========================================= */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr 1fr;
            }
            .footer-brand {
                grid-column: span 3;
            }
        }

        @media (max-width: 768px) {
            /* Header adjustments */
            header {
                flex-direction: column;
                padding: 15px;
                gap: 15px;
            }
            .logo img { height: 60px; }
            .nav-links {
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
            }
            .nav-links > a, .nav-item-title { font-size: 0.8rem; }
            
            /* Typography scaling */
            .massive-text { font-size: 28vw; }
            .text-top { top: 22%; }
            .text-bottom { bottom: 22%; }

            /* Bottle scaling */
            #fixed-bottle {
                height: 60vh; 
            }

            /* Accent text mobile sizing */
            .accent-text {
                font-size: 1.1rem;
                padding: 10px 20px;
                white-space: normal;
                text-align: center;
            }

            /* Layout of info boxes for mobile */
            .info-box {
                width: 40%;
                padding: 15px;
            }
            .info-stat { font-size: 2rem; }
            .info-text { font-size: 0.75rem; }
            .box-1 { top: 28%; left: 3%; }
            .box-2 { bottom: 15%; right: 3%; }
            .box-3 { top: 25%; right: 3%; }

            /* Lineup section stacked layout */
            .lineup-title { font-size: 5rem; margin-bottom: 40px; }
            .lineup-grid {
                flex-direction: column;
                align-items: center;
                gap: 50px;
            }

            /* Ribbons scaling */
            .ribbon-content { font-size: 1.3rem; }

            /* Footer stacked layout */
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }
            .footer-brand { grid-column: span 1; }
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            /* Force stacked layout for small mobile */
            .info-box {
                position: relative;
                width: 85%;
                margin: 0 auto;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                bottom: auto !important;
                margin-top: 20px;
            }
            .accent-text {
                position: relative;
                width: fit-content;
                margin: 20px auto;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                bottom: auto !important;
                box-shadow: 5px 5px 0px var(--mitaar-red);
            }
            .section {
                padding-top: 150px; 
                justify-content: flex-start;
            }
            .massive-text { position: relative; margin: 30px 0; }
        }