﻿@font-face {
    font-family: "Denominary";
    src: url("assets/fonts/denominary-bold.otf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --gray: #f2f2f2;
    --text-muted: #666;
    --vinho: #800020;
    /* Nova cor para detalhes */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.5;
    text-transform: uppercase;
    /* Estética Streetwear */
}

/* Container que envolve todo o PIX */
.pix-payment-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centraliza horizontalmente */
    justify-content: center;
    text-align: center;
    width: 100%;
}

/* Garante que o QR Code não fuja do centro */
#pix-qr-img {
    display: block;
    margin: 0 auto 15px auto;
    max-width: 200px;
}

/* Ajusta o campo de texto do código */
#pixCode {
    width: 100%;
    max-width: 320px;
    /* Evita que fique largo demais no PC */
    margin: 0 auto 10px auto;
}

.bg-white {
    background: var(--white);
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hidden {
    display: none;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: flex-end;
    /* Ícones para a direita */
    align-items: center;
    padding: 15px 5%;
    border-bottom: 1px solid var(--gray);
    background: var(--white);
    position: relative;
    min-height: 130px;
    /* Altura generosa para o logo centralizado */
}

.nav-logo {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    display: flex;
    align-items: center;
    z-index: 10;
}

.navbar img {
    height: 100px;
    /* Tamanho no PC */
    width: auto;
    display: block;
}

nav#nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav#nav-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s;
    gap: 5px;
}

.nav-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
    stroke-width: 1.5;
    fill: none;
}

nav#nav-menu a:hover,
nav#nav-menu a.active {
    color: var(--vinho);
}

nav#nav-menu a:hover .nav-icon svg,
nav#nav-menu a.active .nav-icon svg {
    stroke: var(--vinho);
}

.hamburger {
    display: none !important;
}

/* Typography */
.logo-text {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -4px;
    margin-bottom: 10px;
}

.timer-bold {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
}

/* Checkout Pix Timer */
#pix-countdown.expired {
    color: #999 !important;
    text-decoration: line-through;
}

#pix-timer-container {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
}

/* Product Page */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.product-description {
    text-transform: none;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Buttons & Inputs */
.btn-black {
    background: var(--vinho);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s;
    text-decoration: none;
    display: inline-block;
    border-radius: 12px;
}

.btn-black:hover {
    opacity: 0.8;
}

.w-100 {
    width: 100%;
}

.coupon-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.coupon-box input {
    border: 1px solid #ccc;
    padding: 10px;
    flex: 1;
    font-weight: 600;
    border-radius: 8px;
}

.pix-info {
    background: var(--gray);
    padding: 20px;
    margin-top: 20px;
}

.pix-key {
    display: block;
    background: #ddd;
    padding: 10px;
    margin: 10px 0;
    font-size: 0.8rem;
    word-break: break-all;
}

/* Lookbook Styles */
.lookbook-header {
    padding: 40px 0;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 colunas */
    gap: 20px;
}

.lookbook-item {
    background-color: var(--gray);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    /* Força quadrado */
    position: relative;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter 1.5s ease-out, transform 0.5s ease;
}

/* Classe que será adicionada via JS quando entrar na tela */
.reveal-active {
    filter: grayscale(0%) !important;
}

.lookbook-item:hover img {
    transform: scale(1.05);
    /* Zoom leve ao passar o mouse */
}

/* Itens de tamanhos diferentes para quebrar a monotonia */
.lookbook-item.large {
    grid-column: span 2;
    /* Ocupa a largura toda */
    height: 600px;
}

.lookbook-item.medium {
    height: 500px;
}

/* Efeito Fade-In */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.8s ease-out,
        transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Layout da Vitrine */
.product-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-image-wrapper {
    position: relative;
    background: #f9f9f9;
    margin-bottom: 15px;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    font-weight: 700;
    font-size: 0.8rem;
}

.product-item:hover .image-overlay {
    opacity: 1;
}

.product-item:hover img {
    transform: scale(1.05);
}

/* Detalhes do Produto */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .product-detail-layout {
        display: block;
        /* Stack na vertical */
    }

    .product-image-large {
        width: 100%;
        margin-bottom: 20px;
    }

    .square-image-container {
        pointer-events: none;
        /* Evita zoom/clique indesejado no mobile se necessário */
    }
}

.btn-back {
    background: none;
    border: none;
    font-weight: 700;
    cursor: pointer;
    padding: 10px 0;
    margin-bottom: 20px;
    font-size: 0.8rem;
    text-decoration: underline;
}

/* Estilização da Logo PC */
.navbar img {
    height: 130px;
    width: auto;
    display: block;
}

.main-logo-img {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Seleção de Tamanhos */
.size-selection {
    margin-bottom: 25px;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.size-options {
    display: flex;
    gap: 10px;
}

.size-btn input {
    display: none;
}

.size-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    cursor: pointer;
    font-weight: 700;
    border-radius: 8px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.size-btn input:checked+span {
    background-color: var(--vinho);
    color: var(--white);
    border-color: var(--black);
}

.checkout-form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group input {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: inherit;
    text-transform: uppercase;
    /* Estética da marca */
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 8px;
}

.input-group input:focus {
    border-color: var(--vinho);
}

/* Esconder a área do PIX até que tudo esteja selecionado */
.hidden {
    display: none !important;
}

/* ============================================================
   APENAS O BLOCO DE CELULAR (CORRIGIDO: LOGO E HAMBÚRGUER)
   ============================================================ */
/* Estado inicial (Escondido) */
/* Menu no PC */
nav#nav-menu {
    display: flex;
    gap: 25px;
}

nav#nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav#nav-menu a:hover,
nav#nav-menu a.active {
    color: var(--vinho);
}

.hamburger {
    display: none;
    /* Escondido no PC */
}

/* ============================================================
      CONFIGURAÇÕES MOBILE (ATÉ 768px) - CORRIGIDO
      ============================================================ */
@media (max-width: 768px) {

    /* 1. Impede o vazamento lateral */
    html,
    body {
        overflow-x: hidden !important;
        width: 100%;
    }

    .container {
        width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }

    .navbar {
        padding: 10px 5%;
        min-height: 70px;
        height: auto;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: relative !important;
    }

    .nav-logo {
        position: static !important;
        transform: none !important;
        flex-shrink: 0;
        margin: 0 !important;
    }

    .navbar img {
        height: 50px !important;
        /* Logo menor no celular para não bugar */
        width: auto !important;
    }

    /* NAVEGAÇÃO MOBILE */
    nav#nav-menu {
        position: static !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 15px !important;
        background: none !important;
        padding: 0 !important;
        box-shadow: none !important;
        width: auto !important;
    }

    nav#nav-menu a {
        font-size: 0.65rem !important;
        margin: 0 !important;
        gap: 2px !important;
    }

    .nav-icon svg {
        width: 22px !important;
        height: 22px !important;
    }

    /* BANNER QUADRADO NO CELULAR */
    .promo-carousel-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .promo-swiper {
        aspect-ratio: 1 / 1 !important;
        height: auto !important;
    }

    .promo-swiper img {
        height: 100% !important;
        object-fit: cover !important;
    }

    .container {
        padding-top: 5px !important;
    }

}

/* --- DESKTOP DEFAULTS --- */
.mobile-icon {
    display: none;
}


/* Container da imagem */
.product-image-wrapper {
    position: relative;
    width: 100%;
    /* Define a proporção: 1/1 para Quadrado ou 3/4 para Retangular (estilo moda) */
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f9f9f9;
    /* Cor de fundo caso a imagem demore a carregar */
}

/* Garante que o Swiper ocupe todo o espaço do container quadrado */
.product-vitrine-swiper,
.product-detail-swiper,
.swiper-wrapper,
.swiper-slide {
    width: 100% !important;
    height: 100% !important;
}

/* A imagem dentro do container */
.product-image-wrapper img,
.swiper-slide img,
.swiper-zoom-container img {
    width: 100% !important;
    height: 100% !important;
    /* O SEGREDO: object-fit cover faz a imagem preencher o espaço sem esticar */
    object-fit: cover !important;
    object-position: center;
    /* Centraliza a foto caso ela seja cortada */
    display: block;
}

/* 3. Se houver um link ou div em volta da imagem, trava o tamanho dele também */
.product-item {
    width: 100% !important;
    margin-bottom: 20px !important;
}

/* Celulares muito pequenos */
@media (max-width: 480px) {
    .product-title {
        font-size: 1.2rem !important;
    }

    .btn-black {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Estilização para o item indisponível */
.unavailable-drop {
    cursor: not-allowed !important;
    /* Mostra que não pode clicar */
    filter: grayscale(0.2);
    /* Deixa a foto um pouco mais fria/metal */
}

/* Etiqueta pequena vermelha/vinho no canto da imagem */
.badge-status {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--vinho);
    color: #fff;
    padding: 4px 10px;
    font-size: 0.6rem;
    font-weight: 900;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 1px;
    z-index: 5;
}

/* Garante que o título use a fonte Denominary que o cliente pediu */
.product-title-grid {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    margin-top: 15px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.product-price-grid {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- APLICAÇÃO DA FONTE NOS TÍTULOS --- */
h1,
h2,
h3,
.logo-text {
    font-family: "Denominary", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

/* --- ALINHAMENTO DAS IMAGENS (PARA FOTOS DE TAMANHOS DIFERENTES) --- */
.product-image-wrapper {
    position: relative;
    width: 100%;
    /* Força todas as fotos a terem a mesma proporção (3:4) */
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f0f0f0;
}

.product-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    /* Faz a imagem preencher o espaço sem esticar, cortando as sobras */
    object-fit: cover !important;
    object-position: center;
    transition: transform 0.5s ease;
}

/* Zoom suave ao passar o mouse */
.product-item:hover .product-image-wrapper img {
    transform: scale(1.05);
}

/* --- AJUSTE DOS TEXTOS NA VITRINE --- */
.product-title-grid {
    font-size: 1rem !important;
    margin-top: 15px;
    margin-bottom: 5px;
    line-height: 1.2;
    min-height: 2.4em;
    /* Reserva espaço para 2 linhas, mantendo o preço alinhado */
}

.product-price-grid {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.85rem;
    color: var(--vinho);
    font-weight: bold;
}

/* Estilo para a caixinha de estoque igual ao PRÓXIMO DROP */
.badge-estoque {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--vinho);
    /* Preto padrão */
    color: #fff;
    padding: 5px 10px;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
    border-radius: 8px;
}

.esgotado-badge {
    background-color: #ff0000 !important;
    /* Vermelho se acabar */
}

/* Newsletter Popup Notification Styles */
.newsletter-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: slideInUp 0.6s ease-out;
}

.newsletter-popup.hidden {
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    pointer-events: none;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }

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

.popup-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px 20px;
    max-width: 320px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 0 1px rgba(0, 0, 0, 0.08);
    position: relative;
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-muted);
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--black);
    transform: rotate(90deg);
}

.popup-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.popup-urso-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.popup-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 1px;
    color: var(--black);
}

.popup-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.4;
    text-transform: none;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}

.btn-popup {
    padding: 14px 24px;
    border: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-transform: uppercase;
    font-family: inherit;
}

.btn-accept {
    background: var(--vinho);
    color: white;
    box-shadow: 0 4px 16px rgba(128, 0, 32, 0.2);
}

.btn-accept:hover {
    background: #a00030;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 32, 0.3);
}

.btn-decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid #ddd;
}

.btn-decline:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--black);
    border-color: var(--black);
}

/* Email Form (Shown After Accept) */
.popup-email-form {
    animation: fadeInDown 0.4s ease-out;
    margin-top: 20px;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.email-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.email-input-group input {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-input-group input:focus {
    border-color: var(--vinho);
    outline: none;
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

.email-input-group .btn-black {
    width: 100%;
    border-radius: 8px;
    padding: 14px;
    font-size: 0.8rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .newsletter-popup {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .popup-content {
        max-width: 100%;
        padding: 24px 20px;
    }

    .popup-title {
        font-size: 1.1rem;
    }

    .popup-text {
        font-size: 0.8rem;
    }
}

/* =========================================
   NOVAS ADI��ES (FIX)
   ========================================= */

/* Badge Frete Grátis na Vitrine */
.badge-frete-vitrine {
    position: absolute;
    top: 40px;
    right: 10px;
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    z-index: 10;
    border-radius: 8px;
}

/* Badge Frete Grátis na Página do Produto (Estilo Loja) */
.badge-frete {
    background-color: var(--vinho);
    color: #fff;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin: 10px 0;
    border-radius: 8px;
}

/* Imagem Quadrada Fix */
.square-image-container {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.square-image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

@media (max-width: 768px) {
    .square-image-container img {
        object-fit: contain !important;
    }
}

/* Steps do Checkout */
.step-hidden {
    display: none !important;
}

.step-visible {
    display: block !important;
    animation: fadeIn 0.5s ease-in;
}

/* Corre��o Texto Amassado */
@media (min-width: 769px) {
    .product-detail-layout {
        gap: 60px;
        /* Aumentar espa�o entre imagem e texto */
    }

    .product-info-checkout {
        padding-left: 20px;
    }

    .product-description {
        font-size: 1rem;
        line-height: 1.6;
        /* Melhorar leitura */
    }
}


/* ESTILO PARA PRODUTOS ESGOTADOS */
.size-btn.out-of-stock {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    background: #f0f0f0 !important;
    color: #999 !important;
    pointer-events: none !important;
}

.size-btn.out-of-stock span {
    text-decoration: line-through;
}

/* =========================================
   SWIPER CAROUSEL STYLES
   ========================================= */

/* Carousel Promocional no Topo */
.promo-carousel-section {
    margin: 40px 0;
    width: 100%;
}

.promo-swiper {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.promo-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}

.promo-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}

.promo-swiper .swiper-pagination-bullet-active {
    background: var(--vinho);
    opacity: 1;
}

.promo-swiper .swiper-button-next,
.promo-swiper .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.promo-swiper .swiper-button-next:after,
.promo-swiper .swiper-button-prev:after {
    font-size: 20px;
}

/* Swiper da Vitrine */
.product-vitrine-swiper {
    width: 100%;
    height: 100%;
}

.product-vitrine-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-vitrine-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .product-vitrine-swiper .swiper-slide img {
        object-fit: contain !important;
    }
}

.product-vitrine-swiper .swiper-pagination {
    bottom: 10px;
}

.product-vitrine-swiper .swiper-pagination-bullet {
    background: #000;
    opacity: 0.5;
}

.product-vitrine-swiper .swiper-pagination-bullet-active {
    background: var(--vinho);
    opacity: 1;
}

/* Swiper da Página de Detalhes */
.product-detail-swiper {
    width: 100%;
    height: 100%;
}

.product-detail-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .product-detail-swiper .swiper-slide img {
        object-fit: contain !important;
    }
}

.product-detail-swiper .swiper-pagination {
    bottom: 10px;
}

.product-detail-swiper .swiper-pagination-bullet {
    background: #000;
    opacity: 0.5;
}

.product-detail-swiper .swiper-pagination-bullet-active {
    background: var(--vinho);
    opacity: 1;
}

.product-detail-swiper .swiper-button-next,
.product-detail-swiper .swiper-button-prev {
    color: #000;
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.product-detail-swiper .swiper-button-next:after,
.product-detail-swiper .swiper-button-prev:after {
    font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .promo-swiper {
        height: 300px;
    }

    .promo-swiper .swiper-button-next,
    .promo-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .promo-swiper .swiper-button-next:after,
    .promo-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
}