        :root {
            --bg-dark: #FFFFFF;
            --bg-card: rgba(245, 245, 245, 0.9);
            --blue-navy: #1B365D;
            --gold-antique: #A67C37;
            --gold-metallic: linear-gradient(135deg, #8A662E 0%, #C5A059 50%, #8A662E 100%);
            --gold-soft: #8A662E;
            --text-light: #1B365D;
            --font-premium: 'Zilla Slab', serif;
            --font-body: 'Outfit', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        html,
        body {
            width: 100%;
            overflow-x: hidden;
            background: #FFFFFF;
            color: var(--blue-navy);
            font-family: var(--font-body);
            touch-action: manipulation;
            -webkit-text-size-adjust: 100%;
            -webkit-tap-highlight-color: transparent;
            padding-top: 100px;
            /* Colado: 30px (barra) + 70px (header) */
        }

        body.vip-mode {
            padding-top: 70px !important;
        }

        body.vip-mode .announcement-bar {
            display: none !important;
        }

        body.vip-mode .header-main {
            top: 0 !important;
        }

        body.vip-mode .swiper-hero {
            margin-top: -70px !important;
        }

        /* --- ANNOUNCEMENT BAR --- */
        .announcement-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 30px;
            /* Altura confortável */
            background: var(--blue-navy);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9000;
            /* De volta ao topo para rolagem normal */
            font-size: 0.75rem;
            /* Fonte legível */
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #FFFFFF;
            overflow: hidden;
        }

        .announcement-bar span {
            white-space: nowrap;
            text-align: center;
            font-size: 0.75rem;
            /* Aumentado para dar mais destaque à frase curta */
            font-weight: 900;
            padding: 0 10px;
        }

        /* --- HEADER PRINCIPAL --- */
        .header-main {
            position: fixed;
            top: 30px;
            /* Logo abaixo da barra de 30px */
            left: 0;
            width: 100%;
            height: 70px;
            /* Altura premium robusta */
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 25px;
            z-index: 8500;
            /* De volta ao topo para rolagem normal */
            border-bottom: 1px solid rgba(197, 160, 89, 0.25);
        }

        .header-logo {
            font-family: 'Barlow Condensed', Impact, 'Arial Narrow', sans-serif;
            font-size: 1.6rem;
            /* Logo de volta ao tamanho de destaque */
            color: #000000;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 700;
        }

        .header-location {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 2px;
            margin-top: 8px;
            /* Deslocando levemente para baixo */
        }

        .loc-user {
            font-size: 0.75rem;
            color: #000000;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 800;
        }

        .loc-city {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--gold-soft);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        body.stop-scroll {
            overflow-y: hidden;
        }

        /* Apenas trava o scroll sem resetar a altura */

        /* --- MODAL DE VERIFICAÇÃO DE IDADE --- */
        #age-verification-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.9);
            z-index: 1000000;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            text-align: center;
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
        }

        .modal-produto {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000000;
            z-index: 11000;
            display: none;
            overflow-y: auto;
            padding: 30px 20px;
        }

        .age-box {
            max-width: 450px;
            width: 100%;
            padding: 50px 30px;
            border: 1px solid var(--gold-antique);
            background: #FFFFFF;
            border-radius: 40px;
            box-shadow: 0 50px 120px rgba(27, 54, 93, 0.25), 0 10px 40px rgba(0, 0, 0, 0.05);
            animation: modalPop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        @keyframes modalPop {
            0% {
                transform: scale(0.8);
                opacity: 0;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* --- RODAPÉ PREMIUM --- */
        footer {
            background: #f9f9f9;
            padding: 60px 20px 40px;
            text-align: center;
            border-top: 1px solid #eee;
            margin-top: 50px;
        }

        .footer-brand {
            font-family: 'Barlow Condensed', Impact, 'Arial Narrow', sans-serif;
            font-size: 1.6rem;
            color: #000000;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 700;
            margin-bottom: 15px;
            display: block;
        }

        .footer-desc {
            color: #888;
            font-size: 0.9rem;
            max-width: 500px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }

        .footer-socials {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-link {
            color: var(--gold-soft);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            padding: 10px 20px;
            border: 1px solid rgba(197, 160, 89, 0.2);
            border-radius: 50px;
        }

        .footer-link:hover {
            background: var(--gold-antique);
            color: #000;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(166, 124, 55, 0.2);
        }

        .footer-legal {
            font-size: 0.7rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 800;
            border-top: 1px solid #eee;
            padding-top: 30px;
            max-width: 800px;
            margin: 0 auto;
        }

        .footer-address {
            color: #444;
            font-size: 0.75rem;
            margin-bottom: 20px;
            display: block;
        }

        .age-logo {
            font-family: 'Barlow Condensed', Impact, 'Arial Narrow', sans-serif;
            font-size: 3.8rem;
            color: #000000;
            margin-bottom: 25px;
            display: block;
            letter-spacing: 3px;
            line-height: 1.1;
            text-transform: uppercase;
            font-weight: 700;
            text-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            /* Proteção contra flicker: começa invisível e aparece quando a fonte carrega */
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .fonts-loaded .age-logo {
            opacity: 1;
        }

        .age-text {
            font-size: 1.1rem;
            color: var(--blue-navy);
            margin-bottom: 30px;
            line-height: 1.4;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 800;
        }

        .age-text small {
            display: block;
            margin-top: 15px;
            font-size: 0.95rem;
            opacity: 0.9;
            font-weight: 400;
            text-transform: none;
            letter-spacing: 0.5px;
            font-style: italic;
            color: var(--blue-navy);
        }

        .age-text small b {
            color: var(--gold-antique);
            font-weight: 700;
            font-style: normal;
        }
        .age-buttons {
            display: flex;
            gap: 15px;
            flex-direction: column;
        }

        .btn-age {
            padding: 20px;
            border-radius: 15px;
            font-weight: 900;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.4s;
            font-family: var(--font-body);
            border: none;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        .btn-yes {
            background: var(--gold-metallic);
            color: #FFFFFF;
            box-shadow: 0 10px 25px rgba(166, 124, 55, 0.3);
        }

        .btn-yes:disabled {
            background: #f4f4f4;
            color: #bbb;
            border: 1px solid #eee;
            box-shadow: none;
            cursor: not-allowed;
            transform: none !important;
            opacity: 0.9;
        }

        .btn-yes:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(197, 160, 89, 0.5);
        }

        .btn-no {
            background: transparent;
            color: var(--blue-navy);
            border: 1px solid rgba(27, 54, 93, 0.2);
            transition: 0.4s;
            opacity: 0.5;
        }

        .btn-no:hover:not(:disabled) {
            color: #fff;
            border-color: #fff;
            transform: translateY(-3px);
        }

        .btn-no:disabled {
            opacity: 0.2;
            cursor: not-allowed;
            transform: none !important;
        }

        .visitor-input {
            width: 100%;
            padding: 20px;
            border-radius: 15px;
            border: 2px solid rgba(166, 124, 55, 0.3);
            background: #f9f9f9;
            color: var(--blue-navy);
            font-family: var(--font-body);
            font-size: 1.1rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            outline: none;
            animation: goldPulse 2.5s infinite ease-in-out;
        }

        .visitor-input::placeholder {
            color: rgba(27, 54, 93, 0.3);
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .visitor-input:focus {
            border-color: var(--gold-antique);
            background: #ffffff;
            box-shadow: 0 15px 40px rgba(166, 124, 55, 0.1);
            transform: scale(1.02);
            animation: none;
        }

        .age-input-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--blue-navy);
            margin-bottom: 12px;
            font-weight: 600;
            opacity: 0.8;
        }

        @keyframes goldPulse {
            0% {
                border-color: rgba(166, 124, 55, 0.3);
                box-shadow: 0 0 0 rgba(166, 124, 55, 0);
            }
            50% {
                border-color: var(--gold-antique);
                box-shadow: 0 0 25px rgba(166, 124, 55, 0.4);
                transform: scale(1.01);
            }
            100% {
                border-color: rgba(166, 124, 55, 0.3);
                box-shadow: 0 0 0 rgba(166, 124, 55, 0);
            }
        }

        .age-input-group {
            margin-bottom: 30px;
            text-align: center;
            animation: fadeInDown 0.8s ease-out 0.3s both;
        }

        .age-input-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--gold-soft);
            margin-bottom: 15px;
            font-weight: 900;
            text-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
        }

        @keyframes fadeInDown {
            0% {
                opacity: 0;
                transform: translateY(-10px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ---- LOADER CINEMATOGRÁFICO ---- */
        #loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #FFFFFF;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        #loader-wrapper.hidden {
            opacity: 0;
            pointer-events: none;
        }

        /* ---- ANIMAÇÃO DE SERVIR PREMIUM ---- */
        .loader-serving-container {
            position: relative;
            width: 110px;
            height: 110px;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
        }

        /* O contorno do vidro (base grossa) */
        .loader-glass-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10 5 L90 5 L80 85 Q 80 95 50 95 Q 20 95 20 85 Z" fill="none" stroke="%23c5a059" stroke-width="2" opacity="0.4"/><path d="M22 80 L78 80 Q 75 88 50 88 Q 25 88 22 80 Z" fill="%23c5a059" opacity="0.2"/></svg>') center/contain no-repeat;
        }

        /* O brilho do vidro (glare) */
        .loader-glass-shine {
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M30 10 L40 10 L30 85 L20 85 Z" fill="white" opacity="0.1"/><path d="M75 15 L78 15 L75 40 L72 40 Z" fill="white" opacity="0.05"/></svg>') center/contain no-repeat;
            z-index: 2;
        }

        /* O líquido dourado preenchendo */
        .loader-glass-fill {
            position: absolute;
            width: 100%;
            height: 100%;
            /* Gradiente para parecer cachaça envelhecida */
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><linearGradient id="liquido" x1="0" y1="0" x2="0" y2="1"><stop offset="0%" stop-color="%23f1d3a1"/><stop offset="100%" stop-color="%23c5a059"/></linearGradient></defs><path d="M10 5 L90 5 L80 85 Q 80 95 50 95 Q 20 95 20 85 Z" fill="url(%23liquido)"/></svg>') center/contain no-repeat;
            clip-path: inset(100% 0 0 0);
            animation: fillingGlass 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
            will-change: clip-path;
            z-index: 1;
        }

        @keyframes fillingGlass {
            0% {
                clip-path: inset(100% 0 0 0);
                opacity: 0.5;
            }

            50% {
                clip-path: inset(0% 0 0 0);
                opacity: 1;
            }

            100% {
                clip-path: inset(0% 0 0 0);
                opacity: 0;
            }
        }



        .loading-text {
            font-family: var(--font-premium);
            color: var(--gold-antique);
            font-size: 0.9rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            font-weight: 300;
            margin-bottom: 25px;
            text-align: center;
            opacity: 0.8;
        }

        .loader-bar-container {
            width: 140px;
            height: 2px;
            background: rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
            border-radius: 4px;
        }

        .loader-bar-fill {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gold-metallic);
            animation: loaderProgress 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
            will-change: left;
        }

        @keyframes shine {
            to {
                background-position: 200% center;
            }
        }

        @keyframes loaderProgress {
            0% {
                left: -100%;
            }

            50% {
                left: 0;
            }

            100% {
                left: 100%;
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        #toast-notificacao {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(-100px);
            background: var(--gold-metallic);
            color: #000;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 900;
            font-size: 0.9rem;
            z-index: 15000;
            transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            text-transform: uppercase;
            white-space: nowrap;
        }

        #toast-notificacao.show {
            transform: translateX(-50%) translateY(0px);
        }

        #container-frete {
            
            padding: 20px 15px;
            border-radius: 15px;
            margin-bottom: 25px;
            text-align: center;
            border: 1px solid #eee;
            box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.03);
        }

        #texto-frete {
            font-size: 0.7rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 12px;
            color: var(--blue-navy);
            letter-spacing: 2px;
            opacity: 0.7;
        }

        .barra-progresso-bg {
            width: 100%;
            height: 10px;
            background: #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #ddd;
        }

        .barra-progresso-fill {
            width: 0%;
            height: 100%;
            background: var(--gold-metallic);
            transition: width 0.5s ease-in-out;
        }

        .swiper-pagination-bullet {
            background: var(--blue-navy) !important;
            opacity: 0.2;
            width: 8px !important;
            height: 8px !important;
        }

        .swiper-pagination-bullet-active {
            background: var(--gold-antique) !important;
            opacity: 1 !important;
            width: 8px !important;
            height: 8px !important;
            border-radius: 50% !important;
        }

        .hero-pagination {
            display: flex;
            justify-content: center;
            gap: 5px;
            position: relative;
            bottom: auto !important;
            margin-top: 15px;
            margin-bottom: 20px;
            z-index: 10;
        }

        .swiper-hero {
            width: 100%;
            max-width: 700px;
            padding: 0;
            margin: -100px auto 0;
            /* Container agora começa no topo absoluto por baixo do menu */
            background: transparent;
        }

        .swiper-hero img {
            width: 95%;
            max-height: 350px;
            border-radius: 15px;
            object-fit: contain;
            display: block;
            margin: 0 auto;
            background: transparent;
        }

        /* Setas do Carrossel Hero */
        .swiper-hero .swiper-button-next,
        .swiper-hero .swiper-button-prev {
            color: var(--gold-antique);
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(197, 160, 89, 0.3);
            border-radius: 50%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .swiper-hero .swiper-button-next::after,
        .swiper-hero .swiper-button-prev::after {
            font-size: 1.1rem;
            font-weight: 900;
        }

        .swiper-hero .swiper-button-next:hover,
        .swiper-hero .swiper-button-prev:hover {
            background: rgba(255, 255, 255, 0.25);
            color: var(--gold-soft);
            transform: scale(1.1);
            border-color: var(--gold-antique);
        }

        @media (max-width: 768px) {
            .swiper-hero .swiper-button-next,
            .swiper-hero .swiper-button-prev {
                display: flex !important;
                transform: scale(0.6) !important;
                opacity: 1 !important;
                visibility: visible !important;
            }
            .swiper-hero .swiper-button-next { right: 5px !important; }
            .swiper-hero .swiper-button-prev { left: 5px !important; }
        }
        .hero-section {
            width: 100%;
            text-align: center;
            padding: 20px 10px;
            /* Reduzido pela metade */
        }

        .hero-section h1 {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: clamp(2rem, 8vw, 3.8rem);
            color: var(--gold-antique);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: -10px;
            line-height: 1.1;
            word-wrap: break-word;
        }

        .vitrine {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 60px 35px;
            padding: 10px 20px 150px;
            /* Reduzido top padding pela metade */
            max-width: 1200px;
            margin: 0 auto;
        }

        .card-produto {
            background: #FFFFFF;
            padding: 40px 30px;
            text-align: center;
            border-radius: 20px;
            border: 1px solid rgba(197, 160, 89, 0.2);
            position: relative;
            transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
            overflow: visible;
            /* Permitir que a garrafa saia para fora */
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }



        .card-produto:hover,
        .card-produto.active-scroll {
            transform: translateY(-18px) scale(1.02);
            border-color: var(--gold-antique);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2), 0 0 40px rgba(197, 160, 89, 0.15);
        }

        .prod-img {
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.6s;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
        }

        .card-produto:hover .prod-img,
        .card-produto.active-scroll .prod-img {
            filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
            transform: translateY(5px);
            /* Leve movimento para baixo no hover para dar peso */
        }

        .img-wrapper { 
            width: 100%;
            height: 340px;
            margin-bottom: 20px;
            position: relative;
            overflow: visible;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 40px;
            /* Empurrando mais para baixo */
        }

        .hint-detalhes {
            position: absolute;
            bottom: 40px;
            right: 10px;
            transform: translateY(10px);
            background: var(--blue-navy);
            border: 1px solid var(--gold-antique);
            color: #FFFFFF;
            padding: 4px 10px;
            /* Reduzido */
            border-radius: 50px;
            font-size: 0.55rem;
            /* Reduzido */
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 30;
            pointer-events: none;
            display: flex;
            align-items: center;
            gap: 4px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            white-space: nowrap;
        }

        .card-produto:hover .hint-detalhes {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 1023px) {
            .hint-detalhes {
                opacity: 0.95;
                bottom: 40px;
                right: 10px;
                left: auto;
                transform: none;
                padding: 4px 10px;
                font-size: 0.55rem;
            }
        }

        .card-produto.esgotado-card {
            opacity: 0.7;
            filter: grayscale(0.5);
        }

        .faixa-esgotado-clean {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(80, 0, 0, 0.9);
            color: #fff;
            padding: 6px 14px;
            border-radius: 8px;
            font-family: var(--font-body);
            font-weight: 800;
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 50;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        @media (min-width: 1024px) {
            .swiper-produto {
                display: none !important;
            }

            .desktop-only-images {
                display: block;
                width: 100%;
                height: 100%;
                position: relative;
                cursor: pointer;
            }

            .foto-1,
            .foto-2 {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                max-width: 100%;
                max-height: 300px;
                /* Aumentado de 260px */
                object-fit: contain;
                transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.6s, opacity 0.3s ease;
                filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
            }

            .foto-1 {
                z-index: 2;
            }

            .foto-2 {
                z-index: 1;
                opacity: 0;
            }

            .card-produto:hover .foto-1,
            .card-produto.active-scroll .foto-1,
            .card-produto:hover .foto-2,
            .card-produto.active-scroll .foto-2 {
                filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
                transform: translate(-50%, -50%);
            }

            .card-produto:not(.esgotado-card):hover .foto-1 {
                opacity: 0;
            }

            .card-produto:not(.esgotado-card):hover .foto-2 {
                opacity: 1;
            }
        }

        @media (max-width: 1023px) {
            .desktop-only-images {
                display: none;
            }

            .swiper-produto {
                display: block;
                width: 100%;
                height: 350px;
                /* Aumentado para dar espaço às bolinhas abaixo e mais respiro */
                overflow: visible !important;
                padding-bottom: 35px;
            }

            .swiper-produto .swiper-wrapper,
            .swiper-produto .swiper-slide {
                overflow: visible !important;
            }

            .swiper-produto img {
                max-height: 300px;
                /* Aumentado de 260px */
                max-width: 100%;
                object-fit: contain;
                margin-bottom: 10px;
            }

            .swiper-produto .swiper-pagination {
                bottom: 5px !important;
            }
        }

        .cart-toggle {
            position: fixed;
            bottom: 30px;
            right: 25px;
            background: var(--gold-metallic);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 12000;
            box-shadow: 0 10px 25px rgba(166, 124, 55, 0.4);
            transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            color: #FFFFFF;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .cart-toggle:hover {
            transform: scale(1.1);
        }

        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #FFFFFF;
            color: var(--blue-navy);
            min-width: 26px;
            height: 26px;
            border-radius: 13px;
            font-size: 0.85rem;
            font-weight: 800;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 2px solid var(--gold-antique);
        }

        .nudge-frete {
            color: #FFFFFF !important;
            position: fixed;
            bottom: 115px;
            right: 25px;
            background: var(--blue-navy);
            color: #FFFFFF;
            padding: 12px 18px;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 800;
            z-index: 12001;
            box-shadow: 0 10px 30px rgba(27, 54, 93, 0.3);
            opacity: 0;
            transform: scale(0.5) translateY(20px);
            pointer-events: none;
            white-space: nowrap;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            visibility: hidden;
        }

        .nudge-frete.active {
            opacity: 1;
            transform: scale(1) translateY(0);
            visibility: visible;
        }

        .nudge-frete::after {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 25px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid var(--blue-navy);
        }

        @keyframes popNudge {
            0% {
                transform: scale(0.5) translateY(20px);
                opacity: 0;
            }

            100% {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        @keyframes bounceCart {

            0%, 100% { transform: scale(1) rotate(0); }
            20% { transform: scale(1.3) rotate(-15deg); }
            40% { transform: scale(1.3) rotate(15deg); }
            60% { transform: scale(1.1) rotate(-10deg); }
            80% { transform: scale(1.1) rotate(10deg); }
        }

        @keyframes popBadge {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.5) translateY(-5px);
            }

            100% {
                transform: scale(1);
            }
        }

        .cart-overlay {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 500px;
            height: 100%;
            background: #FFFFFF;
            z-index: 13000;
            transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            padding: 40px 25px;
            display: flex;
            flex-direction: column;
            box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
            border-left: 1px solid rgba(0, 0, 0, 0.08);
        }

        .cart-overlay.active {
            right: 0;
        }

        .cart-input {
            
            border: 1px solid #ddd;
            color: var(--blue-navy);
            padding: 18px;
            border-radius: 12px;
            font-size: 1rem;
            margin-bottom: 12px;
            width: 100%;
            font-family: var(--font-body);
            transition: all 0.3s;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
        }

        .cart-input:focus {
            border-color: var(--gold-antique);
            background: #fff;
            outline: none;
        }

        .input-error {
            border-color: #ff4444 !important;
            background-color: rgba(255, 68, 68, 0.05) !important;
            animation: shakeError 0.4s ease-in-out;
        }

        @keyframes shakeError {

            0%,
            100% {
                transform: translateX(0);
            }

            20%,
            60% {
                transform: translateX(-5px);
            }

            40%,
            80% {
                transform: translateX(5px);
            }
        }

        .btn-adicionar {
            background: var(--gold-metallic);
            color: #FFFFFF;
            border: none;
            padding: 22px;
            width: 100%;
            font-weight: 900;
            cursor: pointer;
            border-radius: 12px;
            text-transform: uppercase;
            font-size: 1.1rem;
            position: relative;
            z-index: 10;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
            letter-spacing: 2.5px;
            font-family: var(--font-premium);
            box-shadow: 0 12px 30px rgba(166, 124, 55, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            /* Brilho na borda */
        }

        /* Brilho Passante Mais Intenso */
        .btn-adicionar::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -150%;
            width: 80%;
            height: 200%;
            background: linear-gradient(to right,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 0.6) 50%,
                    rgba(255, 255, 255, 0) 100%);
            transform: rotate(25deg);
            animation: ultraShine 5s infinite;
        }

        @keyframes ultraShine {
            0% {
                left: -150%;
            }

            20% {
                left: 150%;
            }

            100% {
                left: 150%;
            }
        }

        .btn-adicionar:active {
            transform: scale(0.95);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }

        @media (hover: hover) {
            .btn-adicionar:hover {
                transform: translateY(-5px) scale(1.02);
                box-shadow: 0 20px 45px rgba(166, 124, 55, 0.5);
                filter: brightness(1.1);
            }
        }

        .btn-adicionar:disabled {
            background: #0a0a0a !important;
            color: #ccc !important;
            border: 1px solid #600;
            cursor: not-allowed;
            transform: none !important;
            box-shadow: none !important;
            opacity: 1;
            font-weight: 900;
            letter-spacing: 3px;
        }

        .btn-adicionar::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            pointer-events: none;
        }

        .btn-adicionar.animating::after {
            animation: rippleEffect 0.6s ease-out;
        }

        .btn-adicionar:active:not(:disabled) {
            transform: scale(0.95);
            box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.3);
        }

        .preco {
            font-family: var(--font-body);
            font-size: 1.8rem;
            color: var(--gold-soft);
            margin-bottom: 20px;
            display: block;
            font-weight: 900;
        }

        .prod-nome {
            font-size: 1.2rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 8px;
            color: var(--blue-navy);
        }

        .cart-item-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }

        .qty-btn {
            background: #f4f4f4;
            color: var(--blue-navy);
            border: 1px solid #ddd;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 800;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            line-height: 1;
            padding: 0;
        }

        .qty-btn:hover {
            background: #fff;
            border-color: var(--gold-antique);
        }

        .qty-btn:active {
            transform: scale(0.85);
            background: #333;
        }

        .btn-continuar {
            width: 100%;
            margin-top: 15px;
            background: none;
            border: 1px solid #444;
            color: #888;
            padding: 12px;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            text-transform: uppercase;
            font-size: 0.8rem;
            transition: transform 0.2s, background 0.2s;
            user-select: none;
            -webkit-user-select: none;
        }

        .btn-continuar:active {
            transform: scale(0.96);
            background: rgba(255, 255, 255, 0.08);
        }

        #btn-finalizar {
            background: #25D366;
            color: #fff;
            border: none;
            width: 100%;
            padding: 18px;
            font-weight: 800;
            border-radius: 12px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 1rem;
            font-family: var(--font-body);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 25px;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
        }

        #btn-finalizar:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
        }

        #btn-finalizar:active {
            transform: scale(0.96);
        }

        .btn-fechar {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--blue-navy);
            font-size: 2.5rem;
            cursor: pointer;
            transition: transform 0.2s;
            user-select: none;
            -webkit-user-select: none;
        }

        .btn-fechar:active {
            transform: scale(0.85);
            opacity: 0.7;
        }

        @keyframes chacoalharRapido {

            0%,
            100% {
                transform: scale(1);
            }

            20%,
            60% {
                transform: scale(1.15) rotate(5deg);
            }

            40%,
            80% {
                transform: scale(1.15) rotate(-5deg);
            }
        }

        @keyframes rippleEffect {
            0% {
                width: 0;
                height: 0;
                opacity: 0.8;
            }

            100% {
                width: 300px;
                height: 300px;
                opacity: 0;
            }
        }

        @keyframes clickPulse {
            0% {
                transform: scale(0.95);
                box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(212, 175, 55, 0.8);
            }

            50% {
                transform: scale(1.02);
                box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 20px 10px rgba(212, 175, 55, 0);
            }

            100% {
                transform: scale(1);
                box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(212, 175, 55, 0);
            }
        }

        .btn-adicionar.animating {
            animation: clickPulse 0.5s ease-out;
        }

        /* ---- MODAL DETALHES DO PRODUTO ---- */
        #modal-produto-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 11000;
            display: none;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        #modal-produto-overlay.active {
            display: flex;
        }

        #modal-produto-box {
            max-width: 500px;
            width: 95%;
            background: #FFFFFF;
            border-radius: 25px;
            padding: 35px 25px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(197, 160, 89, 0.2);
            transform: scale(0.9);
            opacity: 0;
            transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow-y: auto;
            max-height: 90vh;
        }

        #modal-produto-overlay.active #modal-produto-box {
            opacity: 1;
            transform: scale(1);
        }

        .modal-prod-foto { 
            width: 100%;
            height: 280px;
            object-fit: contain;
            margin-bottom: 25px;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
        }

        .modal-prod-nome {
            font-family: var(--font-premium);
            font-size: 2rem;
            color: var(--blue-navy);
            font-weight: 800;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .modal-prod-preco {
            font-size: 2rem;
            font-weight: 400;
            color: var(--blue-navy);
            margin-bottom: 25px;
            font-family: var(--font-premium);
        }

        .modal-tag {
            display: inline-block;
            background: var(--blue-navy);
            color: var(--gold-antique);
            border: 1px solid var(--gold-antique);
            border-radius: 4px;
            padding: 8px 18px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 0 5px 15px;
        }

        .modal-prod-desc {
            color: #555;
            line-height: 1.8;
            margin: 25px 0;
            font-size: 1.05rem;
            font-weight: 400;
        }

        .modal-harm-title {
            color: var(--blue-navy);
            opacity: 0.6;
            font-weight: 800;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin-bottom: 12px;
            margin-top: 20px;
        }

        .modal-fechar {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: #555;
            font-size: 2.2rem;
            cursor: pointer;
            line-height: 1;
            transition: transform 0.2s;
            user-select: none;
            -webkit-user-select: none;
        }

        .modal-fechar:active {
            transform: scale(0.85);
        }

        /* ---- GARRAFA VOADORA PREMIUM (ARCO) ---- */
        .garrafa-voando {
            position: fixed;
            z-index: 20000;
            pointer-events: none;
            object-fit: contain;
            will-change: transform, opacity;
            filter: drop-shadow(0 20px 30px rgba(212, 175, 55, 0.9)) brightness(1.2);
        }

        .tag-estoque-discreta {
            font-size: 0.7rem;
            font-weight: 800;
            color: #ff6b6b;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
            display: block;
            opacity: 0.9;
        }

        /* --- SEARCH BAR --- */
        .search-container {
            max-width: 600px;
            margin: 20px auto 40px;
            padding: 0 20px;
            position: relative;
            z-index: 50;
        }

        .search-container input {
            width: 100%;
            background: #fdfdfd;
            border: 1px solid rgba(197, 160, 89, 0.4);
            padding: 16px 25px 16px 55px;
            border-radius: 50px;
            color: var(--blue-navy);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            outline: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            display: block;
        }

        .search-container input::placeholder {
            color: rgba(27, 54, 93, 0.4);
        }

        .search-container input:focus {
            background: #ffffff;
            border-color: var(--gold-antique);
            box-shadow: 0 15px 40px rgba(197, 160, 89, 0.15);
            transform: translateY(-2px);
        }

                .search-container svg.search-icon {
            position: absolute !important;
            left: 38px !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            fill: var(--gold-antique) !important;
            width: 20px !important;
            height: 20px !important;
            min-width: 20px !important;
            min-height: 20px !important;
            max-width: 20px !important;
            max-height: 20px !important;
            pointer-events: none !important;
            opacity: 0.7 !important;
            z-index: 60 !important;
            display: block !important;
        }

        @keyframes emojiFloat {
            0% { transform: translateY(0) scale(0.3) rotate(0deg); opacity: 0; }
            30% { transform: translateY(-50px) scale(1.4) rotate(20deg); opacity: 1; }
            100% { transform: translateY(-150px) scale(1) rotate(-20deg); opacity: 0; }
        }
        .img-wrapper::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
            transform: skewX(-25deg);
            z-index: 1;
            pointer-events: none;
        }

        .card-produto:hover .img-wrapper::before,
        .card-produto.active-scroll .img-wrapper::before {
            animation: shimmer 1.5s infinite;
        }

        @keyframes shimmer {
            100% { left: 200%; }
        }

        /* --- EXPLOSÃO DE PARTÍCULAS DOURADAS --- */
        .particle {
            position: fixed;
            pointer-events: none;
            z-index: 9999999; /* Z-index máximo */
            border-radius: 50%;
            background: #FFD700; /* Dourado Sólido */
            box-shadow: 0 0 15px #FFD700, 0 0 30px #C5A059;
        }

        @keyframes particleExplosion {
            0% { transform: translate(0, 0) scale(1); opacity: 1; }
            100% { transform: translate(var(--tx), var(--ty)) scale(0.5); opacity: 0; }
        }
