/* 
 * CSS Spec for Single Offer Page (Premium Mobile-First)
 * Project: TeixeiraZap
 * 
 * DESIGN TOKENS (Baseados no Guia de Estilo)
 * Primary: #25d366 (WhatsApp Green)
 * Secondary: #075e54 (WhatsApp Dark)
 * Accent: #ffcc00 (Highlight)
 * Text: #128c7e (Dark Teal)
 * Bg: #f0f2f5 (WhatsApp Gray)
 */

* {
    -webkit-tap-highlight-color: transparent;
}

:root {
    --gz-primary: #25d366;
    --gz-secondary: #075e54;
    --gz-text: #111b21;
    --gz-text-light: #54656f;
    --gz-bg: #f0f2f5;
    --gz-bg-card: #ffffff;
    --gz-bg-bubble: #d9fdd3;
    --gz-radius: 20px;
    --gz-shadow: 0 2px 16px rgba(7, 94, 84, 0.08);
}

/* ============================================
   ESTRUTURA BASE
   ============================================ */

.oferta-single-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--gz-container-spacing);
    /* Harmonia lateral padronizada */
    padding-top: var(--gz-container-spacing);
    /* Compensação após o header (Desktop) */
    min-height: 100vh;
    box-sizing: border-box;
}

/* Compensação do Header Fixo para Páginas Single */
body.single-oferta,
body.single-produto {
    padding-top: 60px !important;
    /* Altura exata do header */
}

@media (max-width: 768px) {

    body.single-oferta,
    body.single-produto {
        padding-top: 60px !important;
    }
}

/* 
 * BOTÃO VOLTAR (Glassmorphism)
 * Padrão Premium unificado com ícone e efeito glass
 */
.oferta-voltar {
    margin-bottom: 20px;
}

.btn-voltar-premium {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: var(--gz-text);
    text-decoration: none;
    font-weight: 600;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.icon-voltar {
    stroke: var(--gz-primary);
}

.btn-voltar-premium:hover {
    -webkit-transform: translateX(-3px);
    -moz-transform: translateX(-3px);
    -ms-transform: translateX(-3px);
    -o-transform: translateX(-3px);
    transform: translateX(-3px);
    background: #fff;
    -webkit-box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
    -moz-box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
}

/* ============================================
   GRID RESPONSIVO (Desktop/Mobile)
   ============================================ */
.oferta-layout-two-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 900px) {
    .oferta-layout-two-columns {
        grid-template-columns: 2fr 1fr;
        /* 2/3 Conteúdo, 1/3 Sidebar */
    }

    .oferta-layout-one-column {
        max-width: 900px;
        margin: 0 auto;
    }
}

.oferta-content-main {
    background: transparent;
    /* Padding já vem do .teixeirazap-container (20px) */
}

@media (max-width: 768px) {
    .oferta-single-container {
        padding: 0 var(--gz-container-spacing);
        /* Mobile - igual ao hero banner */
        padding-top: 12px;
        /* Respiro superior mobile */
        -webkit-overflow-scrolling: touch;
        /* Scroll suave iOS */
    }

    .oferta-content-main {
        padding: 0;
        /* Padding vem do container */
    }
}

/* ============================================
   HERO DA OFERTA (Imagem + Badges)
   ============================================ */
.oferta-hero {
    position: relative;
    border-radius: var(--gz-radius);
    overflow: hidden;
    margin-top: var(--gz-container-spacing);
    margin-bottom: var(--gz-container-spacing);
    /* Espaçamento vertical padronizado com o feed */
    background: #ffffff;
    -webkit-box-shadow: var(--gz-shadow);
    -moz-box-shadow: var(--gz-shadow);
    box-shadow: var(--gz-shadow);
}

.oferta-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* Proporção 16:9 (9/16 = 0.5625) - Igual ao Hero Banner */
    overflow: hidden;
    background: #ffffff;
}

/* Imagem Principal - COVER (Igual ao Hero Banner) */
.oferta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    -moz-transition: -moz-transform 0.3s ease;
    -o-transition: -o-transform 0.3s ease;
    transition: transform 0.3s ease;
}

/* Badges de Status (Sobrepostas) */
.oferta-badge-single {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.badge-encerrada {
    background: #ea4335;
    /* Google Red */
    color: white;
}

.badge-em-breve {
    background: #fbbc04;
    /* Google Yellow */
    color: #333;
}

/* Mobile Pequeno - Alinhamento (igual ao hero banner) */
@media (max-width: 480px) {
    .oferta-single-container {
        padding: 0 var(--gz-container-spacing);
        /* Mobile pequeno - igual ao hero banner */
    }

    .oferta-hero {
        border-radius: 0;
        /* Full-width visual mas respeitando o padding lateral do container */
        margin-top: var(--gz-container-spacing);
        margin-bottom: var(--gz-container-spacing);
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}


/* ============================================
   MODAL DE CONTATO PREMIUM (Glassmorphism)
   ============================================ */

/* Backdrop (Fundo Escuro com Blur) */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

/* Modal Content Wrapper (Para facilitar alinhamento vertical flexível) */
.modal-content-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

/* Modal Card (O container branco) */
.modal-card {
    background: #ffffff;
    width: 90%;
    max-width: 400px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    padding: 30px 25px;
    position: relative;
    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    -moz-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop[style*="display: flex"] {
    opacity: 1;
}

.modal-backdrop[style*="display: flex"] .modal-card {
    -webkit-transform: scale(1) translateY(0);
    -moz-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    -o-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Responsividade: Estilo Bottom Sheet para Mobile */
@media (max-width: 600px) {
    .modal-content-wrapper {
        align-items: flex-end !important;
    }

    .modal-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 32px 32px 0 0 !important;
        padding: 40px 24px 30px 24px !important;
        transform: translateY(100%) !important;
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease !important;
    }

    .modal-backdrop[style*="display: flex"] .modal-card {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }

    .modal-close-btn {
        top: 12px !important;
        right: 12px !important;
        background: #f0f2f5 !important;
        border-radius: 50% !important;
        width: 36px !important;
        height: 36px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 24px !important;
        color: #666 !important;
    }

    /* Adicionar um "handle" visual para o bottom sheet */
    .modal-card::before {
        content: "";
        position: absolute;
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: #e0e0e0;
        border-radius: 2px;
    }
}

/* Header do Modal */
.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gz-bg-bubble);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    color: var(--gz-primary);
}

.modal-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--gz-text);
    margin: 0 0 5px 0;
}

.modal-subtitle {
    font-size: 14px;
    color: var(--gz-text-light);
    margin: 0;
}

/* Ações do Modal */
.modal-actions {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}

.modal-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    /* Compatib: fallback para margin se gap falhar, mas moderno suporta */
    padding: 16px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-link-compra {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp {
    background: #f0f2f5;
    color: #25d366;
}

.btn-instagram {
    background: #f0f2f5;
    color: #e1306c;
}

.btn-mapa {
    background: #f0f2f5;
    color: #4285f4;
}

.btn-perfil-loja {
    background: #f0f2f5;
    color: #0d6efd;
}

/* ESTILO DO BOTÃO DE COMPARTILHAR NO MODAL */
.btn-share-modal {
    background: white;
    color: var(--gz-text);
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-share-modal:active {
    background: #f9f9f9;
    transform: scale(0.98);
}

.modal-btn:hover {
    transform: translateY(-2px);
    filter: brightness(0.95);
}

/* Botão Fechar */
.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #aaa;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close-btn:hover {
    color: #333;
}

/* ============================================
   INFORMAÇÕES DA OFERTA (Títulos, Preço)
   ============================================ */
.oferta-info-principal {
    background: var(--gz-bg-card);
    -webkit-border-radius: var(--gz-radius);
    -moz-border-radius: var(--gz-radius);
    border-radius: var(--gz-radius);
    padding: 24px;
    -webkit-box-shadow: var(--gz-shadow);
    -moz-box-shadow: var(--gz-shadow);
    box-shadow: var(--gz-shadow);
    margin-bottom: var(--gz-container-spacing);
}

/* Nova Seção de Ação Separada (Gap Visual entre cards) */
.oferta-secao-acao {
    background: var(--gz-bg-card);
    -webkit-border-radius: var(--gz-radius);
    -moz-border-radius: var(--gz-radius);
    border-radius: var(--gz-radius);
    padding: 24px;
    -webkit-box-shadow: var(--gz-shadow);
    -moz-box-shadow: var(--gz-shadow);
    box-shadow: var(--gz-shadow);
    margin-bottom: var(--gz-container-spacing);
}

.oferta-categoria-single {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--gz-primary);
    background: var(--gz-bg-bubble);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.oferta-title-single {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gz-text);
    margin: 0 0 12px 0;
}

/* Trust Signals (Página de Produto) */
.produto-trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.trust-badge-verificado {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    background: rgba(37, 211, 102, 0.1);
    color: #128c7e;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.trust-update-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #777;
    font-size: 11px;
    font-weight: 600;
    background: #f1f3f5;
    padding: 6px 12px;
    border-radius: 50px;
}

.trust-badge-verificado svg,
.trust-update-date svg {
    opacity: 0.8;
}

/* Preços */
.oferta-preco-single {
    margin-bottom: 24px;
}

.preco-destaque {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    /* Evitar quebra em telas muito pequenas */
}

.preco-com-desconto {
    font-size: 32px;
    font-weight: 800;
    color: var(--gz-secondary);
    letter-spacing: -1px;
}

.preco-original-riscado {
    font-size: 16px;
    color: var(--gz-text-light);
    text-decoration: line-through;
    opacity: 0.7;
}

.percentual-destaque {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: #ea4335;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Card de Estabelecimento */

.oferta-estabelecimento-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: var(--gz-container-spacing);
    border: 1px solid #eee;
}

.loja-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gz-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    flex-shrink: 0;
    overflow: hidden;
    padding: 4px;
}

.loja-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    border-radius: 50%;
}

.loja-icon svg {
    width: 22px;
    height: 22px;
}

.loja-info {
    display: flex;
    flex-direction: column;
}

.loja-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    font-weight: 600;
}

.loja-nome {
    font-size: 16px;
    color: var(--gz-text);
}

.endereco-texto {
    font-size: 13px;
    color: #666;
    margin: 2px 0 0 0;
}

/* Validade */
.oferta-validade-single {
    font-size: 14px;
    color: var(--gz-text-light);
    margin-bottom: var(--gz-container-spacing);
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.validade-vencida-texto {
    color: #ea4335;
    font-weight: 700;
    margin-top: 4px;
}

/* Call to Actions (Sticky Mobile) */
.oferta-ctas {
    margin-top: 30px;
}

.btn-cta-principal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 18px;
    background: var(--gz-primary);
    color: #fff;
    border: none;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    -webkit-box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    -moz-box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.oferta-ctas .btn-cta-principal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.oferta-ctas .btn-cta-principal:hover::before {
    left: 100%;
}

.oferta-ctas .btn-cta-principal:hover {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    background: var(--gz-secondary);
}

.oferta-ctas .btn-cta-principal:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}


/* Estado Vazio Premium */
.estado-vazio-premium {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px dashed #e0e0e0;
    margin: 20px 0;
}

.vazio-icon {
    color: var(--gz-text-light);
    margin-bottom: 20px;
    opacity: 0.5;
    -webkit-animation: pulseIcon 2s infinite ease-in-out;
    -moz-animation: pulseIcon 2s infinite ease-in-out;
    -o-animation: pulseIcon 2s infinite ease-in-out;
    animation: pulseIcon 2s infinite ease-in-out;
}

.produto-header-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.produto-share-container {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn-share-produto {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--gz-bg-bubble);
    border: 1px solid var(--gz-primary);
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    color: var(--gz-secondary);
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-box-shadow: 0 4px 12px rgba(37, 211, 102, 0.1);
    -moz-box-shadow: 0 4px 12px rgba(37, 211, 102, 0.1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.1);
    width: 100%;
    max-width: 400px;
    -webkit-animation: sharePulse 3s infinite ease-in-out;
    -moz-animation: sharePulse 3s infinite ease-in-out;
    -o-animation: sharePulse 3s infinite ease-in-out;
    animation: sharePulse 3s infinite ease-in-out;
}

@keyframes sharePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        transform: scale(1.01);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

@-webkit-keyframes sharePulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
        -webkit-transform: scale(1);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        -webkit-transform: scale(1.01);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes sharePulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
        -moz-transform: scale(1);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        -moz-transform: scale(1.01);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        -moz-transform: scale(1);
    }
}

@-o-keyframes sharePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        transform: scale(1.01);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

.btn-share-produto svg {
    color: var(--gz-secondary);
    transition: transform 0.3s;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    -o-transition: -o-transform 0.3s;
}

/* Growth: Rotação de texto nos labels */
.share-label-dynamic,
.share-text-label,
#share-text-dynamic {
    transition: opacity 0.4s ease-in-out;
    -webkit-transition: opacity 0.4s ease-in-out;
    -moz-transition: opacity 0.4s ease-in-out;
    -o-transition: opacity 0.4s ease-in-out;
}

.btn-share-produto:hover {
    background: var(--gz-primary);
    color: white;
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
    -webkit-box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
    -moz-box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-share-produto:hover svg {
    color: white;
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}

.btn-share-produto.btn-share-success {
    background: var(--gz-primary);
    border-color: var(--gz-primary);
    color: white;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.btn-share-produto.btn-share-success svg {
    color: white;
}

@media (max-width: 768px) {
    .btn-share-produto {
        font-size: 15px;
        padding: 16px 20px;
    }
}

.produto-titulo {
    font-size: 28px;
    font-weight: 800;
    color: var(--gz-text);
    margin: 0;
    line-height: 1.2;
}

.estado-vazio-premium h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--gz-text);
    margin-bottom: 12px;
}

.estado-vazio-premium p {
    color: var(--gz-text-light);
    max-width: 400px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.btn-voltar-vazio {
    display: inline-block;
    padding: 14px 28px;
    background: var(--gz-bg-bubble);
    color: var(--gz-secondary);
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.2s;
}

.btn-voltar-vazio:hover {
    background: var(--gz-secondary);
    color: white;
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0.5;
    }
}

@-webkit-keyframes pulseIcon {
    0% {
        -webkit-transform: scale(1);
        opacity: 0.5;
    }

    50% {
        -webkit-transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0.5;
    }
}

@-moz-keyframes pulseIcon {
    0% {
        -moz-transform: scale(1);
        opacity: 0.5;
    }

    50% {
        -moz-transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        -moz-transform: scale(1);
        opacity: 0.5;
    }
}

@-o-keyframes pulseIcon {
    0% {
        -o-transform: scale(1);
        opacity: 0.5;
    }

    50% {
        -o-transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        -o-transform: scale(1);
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .oferta-ctas .btn-cta-principal {
        font-size: 16px;
        padding: 16px 20px;
    }

    .estado-vazio-premium {
        padding: 40px 15px;
    }

    .estado-vazio-premium h3 {
        font-size: 19px;
    }
}

/* ============================================
   DESCRIÇÃO DA OFERTA (Melhoria UX/UI)
   ============================================ */
.oferta-descricao-completa {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    /* Melhor leitura */
}

/* Espaçamento entre parágrafos - ESSENCIAL PARA EVITAR TEXTO GRUDADO */
.oferta-descricao-completa p {
    margin-bottom: 1.5em;
    /* Equivalente a uma linha e meia de espaço */
    display: block;
    /* Garante comportamento de bloco */
}

.oferta-descricao-completa p:last-child {
    margin-bottom: 0;
}

/* Listas na descrição */
.oferta-descricao-completa ul,
.oferta-descricao-completa ol {
    margin: 1em 0 1.5em 20px;
    padding-left: 20px;
}

.oferta-descricao-completa li {
    margin-bottom: 8px;
    padding-left: 4px;
}

/* Títulos dentro da descrição (caso a IA gere) */
.oferta-descricao-completa h3,
.oferta-descricao-completa h4 {
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    color: #1a1a1a;
    font-weight: 700;
}

/* Links na descrição */
.oferta-descricao-completa a {
    color: #25d366;
    text-decoration: underline;
    font-weight: 500;
}

.oferta-descricao-completa a:hover {
    color: #128c7e;
}

/* ============================================
   SINGLE PRODUTO - VENDOR CARDS STYLING
   ============================================ */

.produto-vendedores {
    margin-top: 30px;
}

/* ============================================
   FILTROS PREMIUM (Página de Produto)
   ============================================ */

.vendedores-header-filtros {
    margin-bottom: 24px;
    background: #f8f9fa;
    /* Slight contrast bg for the header area */
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #eef0f2;
}

.vendedores-titulo {
    font-size: 22px;
    font-weight: 800;
    color: var(--gz-text);
    margin: 0 0 20px 0;
}

.filtros-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 700;
    margin-bottom: 12px;
}

.select-wrapper-premium {
    position: relative;
    background: #ffffff;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    /* Pill Shape */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Soft Shadow */
    border: 1px solid #e0e0e0;
    height: 52px;
    /* Large touch target */
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.select-wrapper-premium:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    /* Lift effect */
    transform: translateY(-1px);
    border-color: #d0d0d0;
}

/* Ícone de Filtro (Novo) */
.select-icon {
    position: absolute;
    left: 16px;
    /* Reduced from 20px */
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gz-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.select-icon svg {
    width: 18px;
    height: 18px;
}

/* O Select Nativo (Invisível mas funcional) */
.select-filtro-premium {
    width: 100%;
    height: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--gz-text);
    padding: 0 40px 0 44px;
    /* Reduced padding (Left 44px for icon, Right 40px for arrow) */
    cursor: pointer;
    z-index: 1;
    border-radius: 50px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.select-filtro-premium:focus {
    outline: none;
}

.select-wrapper-premium:focus-within {
    border-color: var(--gz-primary);
    -webkit-box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
    -moz-box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

/* Seta Customizada */
.select-arrow {
    position: absolute;
    right: 16px;
    /* Reduced from 20px */
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gz-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s ease;
}

.select-arrow svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5px;
}

.select-wrapper-premium:focus-within .select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: var(--gz-primary);
}

.vendedores-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.vendedor-item-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vendedor-item-card:hover {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.15);
    transform: translateY(-3px);
    border-color: rgba(37, 211, 102, 0.3);
}

/* Wrapper Interno */
.vendedor-conteudo-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Coluna 1: Nome */
.vendedor-col-nome {
    display: flex;
    align-items: center;
}

.loja-info-premium {
    display: flex;
    flex-direction: column;
}

.loja-nome {
    font-size: 18px;
    font-weight: 800;
    color: var(--gz-text);
    line-height: 1.3;
}

/* Coluna 2: Preços (Lista) */
.vendedor-col-precos {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.item-preco-linha {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: background 0.2s;
}

.item-preco-linha:nth-child(even) {
    background: #fafbfc;
}

.item-preco-linha:hover {
    background: #f1f3f5;
}

/* Modo de Foco do Filtro */
.item-preco-linha.foco {
    background: rgba(37, 211, 102, 0.08) !important;
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 10px 11px;
    /* Compensar borda */
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.item-preco-linha.foco .variante-valor-final {
    color: var(--gz-secondary);
    font-size: 1.05em;
    font-weight: 800;
}

.item-preco-linha.dimmed {
    opacity: 0.5;
    filter: grayscale(0.2);
    transform: scale(0.98);
}

.item-preco-linha.destaque {
    background: rgba(37, 211, 102, 0.05);
    border: 1px dashed rgba(37, 211, 102, 0.2);
    font-weight: 600;
    color: var(--gz-text);
}

.item-preco-linha.destaque .variante-valor-final {
    color: var(--gz-secondary);
    font-weight: 800;
}

.variante-dot {
    width: 6px;
    height: 6px;
    background: var(--gz-primary);
    /* Green Dot */
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
    position: relative;
    top: -1px;
}

.item-preco-linha.destaque .variante-dot {
    background: var(--gz-secondary);
    /* Darker Green for main price */
    width: 8px;
    height: 8px;
}

.variante-label {
    white-space: nowrap;
}

.variante-separator {
    flex: 1;
    border-bottom: 2px dotted #e0e0e0;
    margin: 0 10px;
    position: relative;
    top: -4px;
}

.variante-valor-final {
    font-weight: 700;
    color: var(--gz-text);
    white-space: nowrap;
}

/* Coluna 3: Botão */
.vendedor-col-botao {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btn-abrir-contato {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: #25D366;
    /* WhatsApp Green Vibrant */
    color: white;
    border: none;
    border-radius: 50px;
    /* Pill Shape */
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    width: 100%;
    /* Full width mobile */
    height: 48px;
}

.btn-abrir-contato:hover {
    background: #1faf58;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-abrir-contato:active {
    transform: scale(0.98);
}

/* ============================================
   RESPONSIVIDADE (Desktop Grid)
   ============================================ */
@media (min-width: 900px) {
    .vendedor-conteudo-wrapper {
        display: grid;
        grid-template-columns: 2fr 3fr auto;
        /* Nome | Lista | Botão */
        gap: 24px;
        align-items: center;
    }

    .vendedor-col-precos {
        border-left: 1px solid #f0f0f0;
        border-right: 1px solid #f0f0f0;
        padding: 0 24px;
    }

    .btn-abrir-contato {
        width: auto;
        /* Auto width desktop */
        min-width: 120px;
    }
}

/* Produto Container Novo */
.produto-container-novo {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.produto-imagem-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
}

.produto-imagem-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produto-conteudo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.produto-descricao {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

@media (min-width: 900px) {
    .produto-container-novo {
        flex-direction: column;
        /* Vertical Stack */
        gap: 32px;
        align-items: center;
        /* Centralizar horizontalmente */
        max-width: 900px;
        /* Largura máxima controlada para leitura */
        margin: 0 auto;
        /* Centralizar na tela */
    }

    .produto-imagem-wrapper {
        flex: none;
        /* Remover flex-basis */
        width: 100%;
        max-width: 100%;
        /* Ocupar toda a largura do container (900px) */
        aspect-ratio: 16 / 9;
        height: auto;
        border-radius: 20px;
        /* Arredondamento completo no desktop */
        margin-bottom: 20px;
    }

    .produto-conteudo {
        flex: none;
        width: 100%;
        padding-top: 0;
        text-align: left;
        /* Manter texto alinhado à esquerda para leitura */
    }
}

/* Adaptação Mobile para Produtos (v2.2.1) */
@media (max-width: 600px) {
    .produto-container-novo {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
    }

    .produto-imagem-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        aspect-ratio: 16 / 9 !important;
        height: auto !important;
        max-height: none !important;
        border-radius: 0 0 24px 24px !important;
        margin: 0 0 24px 0 !important;
        box-shadow: none !important;
    }

    .produto-imagem-wrapper img {
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 0 0 24px 24px !important;
    }

    .produto-conteudo {
        padding: 0 10px 40px 10px !important;
    }

    .item-preco-linha {
        padding: 10px 6px !important;
    }

    /* Remover Glow Azul e Sombras Laterais no Mobile */
    .site,
    #page,
    .site-content,
    .oferta-single-container {
        box-shadow: none !important;
        background: #f0f2f5 !important;
        overflow-x: hidden !important;
    }

    /* Ajuste de min-width que estava quebrando o layout */
    .oferta-single-container {
        min-width: 0 !important;
        width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* Redução de Paddings nos Containers de Ação/Vendedores */
    .oferta-secao-acao {
        padding: 16px 12px !important;
    }

    .vendedores-header-filtros {
        padding: 16px 12px !important;
    }

    .vendedor-item-card {
        padding: 16px 12px !important;
    }
}

/* 
 * FIX: Encartes sem Cortes (Modo Flyer) 
 * Garante que ofertas do tipo 'encarte' mostrem a imagem inteira
 */
.type-encarte .oferta-image-wrapper {
    height: auto !important;
    padding-bottom: 0 !important;
    /* Remove o bloqueio de aspecto 16:9 */
    min-height: 300px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--gz-radius);
    overflow: hidden;
}

.type-encarte .oferta-image {
    position: relative !important;
    /* Tira do absolute para o wrapper crescer com a imagem */
    width: 100% !important;
    height: auto !important;
    max-height: 85vh;
    object-fit: contain !important;
    border-radius: var(--gz-radius);
}

@media (max-width: 768px) {
    .type-encarte .oferta-image-wrapper {
        min-height: 250px;
    }
}