/* ============================================
   DESIGN SYSTEM — Método Doce Gelado 🍬
   Mobile-First Premium Redesign v3.0
   ============================================ */

:root {
    --primary: #FFD700;
    --secondary: #FF69B4;
    --accent: #4B2E1E;
    --accent-light: #6B3F28;
    --bg-light: #fffdf5;
    --bg-cream: #FFF8E7;
    --text-dark: #2C1810;
    --white: #FFFFFF;
    --success: #27ae60;
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-border: rgba(255, 255, 255, 0.35);
    --glass-shadow: 0 8px 32px rgba(75, 46, 30, 0.12);
    --shadow-sm: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-md: 0 12px 32px rgba(0,0,0,0.12);
    --shadow-lg: 0 24px 60px rgba(0,0,0,0.18);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 40px;
}

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= PAGE LOAD FADE ================= */
@keyframes pageFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
    animation: pageFadeIn 0.6s ease-out both;
}

/* ============================================
   ANIMAÇÕES DE SCROLL — FADE IN
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up {
    opacity: 0;
    transform: scale(0.93);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-up.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animation para itens filhos */
.fade-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-item.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-item:nth-child(1) { transition-delay: 0.05s; }
.fade-item:nth-child(2) { transition-delay: 0.15s; }
.fade-item:nth-child(3) { transition-delay: 0.25s; }
.fade-item:nth-child(4) { transition-delay: 0.35s; }
.fade-item:nth-child(5) { transition-delay: 0.45s; }

/* ============================================
   LAYOUT BASE
   ============================================ */
.container {
    width: 92%;
    max-width: 680px;
    margin: 0 auto;
    padding: 0;
}

.text-center { text-align: center; }

/* ============================================
   TIPOGRAFIA
   ============================================ */
.section-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.15;
    text-align: center;
    width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

.section-title span {
    color: var(--secondary);
}

.section-title.white {
    color: var(--white);
}

.section-subtitle {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    color: #777;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

/* ============================================
   TOP BANNER (sticky urgência)
   ============================================ */
.top-banner {
    background: linear-gradient(135deg, #1a0f08 0%, #2D1A12 100%);
    color: #fff;
    padding: 10px 12px;
    font-weight: 700;
    font-size: clamp(0.75rem, 2.5vw, 0.9rem);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.banner-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.banner-flex p {
    margin: 0;
    line-height: 1.4;
}

.strike {
    text-decoration: line-through;
    color: #ff9999;
    font-size: 0.85em;
}

.highlight {
    color: #FFD700;
    font-size: 1.1em;
    font-weight: 900;
}

.timer {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a0f08;
    padding: 6px 18px;
    border-radius: 8px;
    font-family: monospace;
    font-size: clamp(1rem, 3.5vw, 1.3rem);
    font-weight: 900;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    letter-spacing: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 55vh;
    padding: clamp(2rem, 6vw, 4rem) 0 2rem;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.hero-content {
    width: 100%;
}

.badge {
    background: linear-gradient(135deg, var(--secondary), #E91E8C);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 900;
    font-size: clamp(0.7rem, 2.5vw, 0.82rem);
    display: inline-block;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(255, 105, 180, 0.4);
    letter-spacing: 0.5px;
    animation: shimmerBadge 3s ease-in-out infinite;
}

@keyframes shimmerBadge {
    0%, 100% { box-shadow: 0 4px 14px rgba(255, 105, 180, 0.4); }
    50% { box-shadow: 0 6px 22px rgba(255, 105, 180, 0.7); }
}

.hero h1 {
    font-size: clamp(1.9rem, 6vw, 2.8rem);
    margin-bottom: 16px;
    line-height: 1.15;
    font-weight: 900;
    overflow-wrap: break-word;
    padding: 0 0.25rem;
}

.hero h1 span {
    color: var(--secondary);
    display: block;
}

.hero p {
    font-size: clamp(1rem, 3.5vw, 1.15rem);
    margin-bottom: 28px;
    color: #5a3a2a;
    padding: 0 0.25rem;
}

.social-proof-hero {
    margin-top: 16px;
    font-size: 0.88rem !important;
    color: #888 !important;
    padding: 0 !important;
}

.social-proof-hero i {
    color: var(--secondary);
}

/* ============================================
   HERO MOCKUP
   ============================================ */
.hero-mockup-container {
    margin: 24px auto 28px;
    max-width: 340px;
    perspective: 1000px;
}

.mockup-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(75, 46, 30, 0.35));
    transition: transform 0.5s ease;
    border-radius: 12px;
    max-width: 320px;
}

.mockup-img:hover {
    transform: rotateY(-8deg) rotateX(3deg) scale(1.02);
}

/* ============================================
   CTA BUTTON — GLOBAL
   ============================================ */
.cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 60%, #FF8C00 100%);
    color: #1a0f08;
    padding: 1.3rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 900;
    text-decoration: none;
    font-size: clamp(1rem, 4vw, 1.25rem);
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.4), inset 0 -4px 0 rgba(0,0,0,0.15);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.3;
    margin: 0 auto;
    max-width: 480px;
}

.cta-button:hover,
.cta-button:active {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 34px rgba(255, 140, 0, 0.5);
}

.cta-ultra-pulse {
    animation: ultraPulse 2.2s ease-in-out infinite;
}

@keyframes ultraPulse {
    0%   { transform: scale(1);    box-shadow: 0 8px 24px rgba(255,215,0,0.5), 0 0 0 0 rgba(255,215,0,0.6); }
    50%  { transform: scale(1.03); box-shadow: 0 12px 30px rgba(255,215,0,0.6), 0 0 0 14px rgba(255,215,0,0); }
    100% { transform: scale(1);    box-shadow: 0 8px 24px rgba(255,215,0,0.5), 0 0 0 0 rgba(255,215,0,0); }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.04); }
}

/* ============================================
   EBOOK PREVIEW — STACKED CARDS
   (Sem fundo branco flutuante)
   ============================================ */
.ebook-preview {
    background: var(--bg-light);
    padding: clamp(3rem, 8vw, 5rem) 0 clamp(5rem, 12vw, 8rem);
    text-align: center;
    overflow: visible;
}

.stacked-wrapper {
    position: relative;
    height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 30px;
    gap: 24px;
}

.stacked-cards {
    position: relative;
    width: min(260px, 72vw);
    height: 380px;
}

.card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.13);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    display: block;
    padding: 4px;
}

.card:nth-child(1) { transform: rotate(-2deg);                    z-index: 6; }
.card:nth-child(2) { transform: rotate(3deg)  translate(5px,  5px); z-index: 5; }
.card:nth-child(3) { transform: rotate(-4deg) translate(-5px, 8px); z-index: 4; }
.card:nth-child(4) { transform: rotate(2deg)  translate(8px, -5px); z-index: 3; }
.card:nth-child(5) { transform: rotate(-1deg) translate(-8px,10px); z-index: 2; }
.card:nth-child(6) { transform: rotate(4deg)  translate(10px, 5px); z-index: 1; }

.card:hover {
    transform: scale(1.06) rotate(0deg) !important;
    z-index: 10 !important;
    box-shadow: 0 22px 50px rgba(0,0,0,0.22);
}

.card.active {
    z-index: 10;
    transform: rotate(0deg) scale(1) !important;
    box-shadow: 0 22px 50px rgba(0,0,0,0.2);
}

/* ============================================
   PARA QUEM É — BENEFITS
   ============================================ */
.benefits {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: var(--bg-light);
}

.benefit-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

/* Glassmorphism card */
.benefit-item {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    border-left: 5px solid var(--primary);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(75, 46, 30, 0.16);
}

.benefit-item i {
    font-size: 1.4rem;
    color: var(--success);
    flex-shrink: 0;
}

.benefit-item p {
    font-size: clamp(0.95rem, 3vw, 1.05rem);
    margin: 0;
}

/* ============================================
   MECANISMO (seção marrom)
   Sem margens laterais para evitar "barras"
   ============================================ */
.mechanism {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    padding: clamp(3rem, 8vw, 5rem) clamp(1.2rem, 4vw, 2rem);
    border-radius: 0;           /* sem bordas laterais no mobile */
    margin: 0;                  /* sem margin lateral */
    overflow: hidden;
    position: relative;
}

.mechanism::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    background: rgba(255,215,0,0.06);
    border-radius: 50%;
    pointer-events: none;
}

.mechanism p {
    color: rgba(255,255,255,0.88);
    font-size: clamp(0.95rem, 3.2vw, 1.1rem);
    max-width: 560px;
    margin: 1rem auto 0;
}

.perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.perk {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.4rem 0.8rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    transition: var(--transition);
}

.perk:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-4px);
}

.perk i {
    font-size: clamp(1.4rem, 4vw, 2rem);
    color: var(--primary);
    display: block;
    margin-bottom: 0.7rem;
}

.perk span {
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    font-weight: 700;
    color: #fff;
}

/* ============================================
   PROVA SOCIAL
   ============================================ */
.social-proof {
    background: var(--bg-light);
    padding: clamp(3rem, 8vw, 6rem) 0;
    text-align: center;
    overflow: hidden;
}

.social-proof .section-title span {
    display: inline;
    font-size: inherit;
    overflow-wrap: break-word;
}

.prints-grid.duo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.print-item {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    background: #111;
    padding: 8px;
    border: 2px solid #222;
    transition: var(--transition);
    overflow: hidden;
}

.print-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.22);
}

.whatsapp-print {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

/* ============================================
   OFERTA / PRICING
   ============================================ */
.pricing {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: var(--bg-cream);
}

/* Glassmorphism card de preço */
.premium-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 480px;
    margin: 0 auto;
    border: 1px solid rgba(255,215,0,0.2);
}

.card-header {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    padding: clamp(1.8rem, 5vw, 2.5rem) 1.5rem;
    text-align: center;
}

.card-header h3 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    font-weight: 900;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.card-header .promo {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.85rem;
}

.card-body {
    padding: clamp(1.8rem, 5vw, 3rem) clamp(1.2rem, 4vw, 2rem);
    text-align: center;
}

.scarcity-badge {
    background: linear-gradient(135deg, #ece0ff, #d8c9ff);
    color: #5a3db5;
    padding: 0.8rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(0.8rem, 3vw, 0.9rem);
    display: inline-block;
    margin-bottom: 1.8rem;
    animation: shake 3s ease-in-out infinite;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

@keyframes shake {
    0%, 85%, 100% { transform: translateX(0); }
    88%, 94% { transform: translateX(-4px); }
    91%, 97% { transform: translateX(4px); }
}

.price-container {
    margin: 1.5rem 0 1rem;
}

.old-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 1rem;
    display: block;
    margin-bottom: 4px;
}

.new-price {
    font-size: clamp(3rem, 12vw, 4.5rem);
    color: var(--success);
    font-weight: 900;
    display: block;
    margin: 0.5rem 0;
    line-height: 1;
}

.payment-info {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.price-bubble-new {
    background: linear-gradient(135deg, var(--primary), #FFA500);
    color: var(--accent);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 900;
    font-size: clamp(0.95rem, 3.5vw, 1.15rem);
    display: inline-block;
    margin-bottom: 1.8rem;
    box-shadow: 0 8px 20px rgba(255,215,0,0.35);
}

.secure-checkout {
    padding: clamp(1rem, 3vw, 1.5rem) 1rem;
    border-top: 1px solid #f0f0f0;
    margin-top: 1rem;
}

.secure-checkout .secure-img {
    max-width: 220px;
    width: 100%;
    margin: 0 auto 1rem;
    display: block;
    opacity: 0.95;
}

.secure-text {
    font-size: 0.88rem;
    color: #27ae60;
    margin-bottom: 1rem;
    font-weight: 600;
}

.secure-text i {
    margin-right: 4px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: #777;
}

.fa-pix { color: #32bcad; }

/* ============================================
   GARANTIA
   ============================================ */
.guarantee {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: var(--bg-light);
}

.guarantee-badge img {
    width: 90px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
    animation: spin-slow 12s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.guarantee h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 1rem;
    color: var(--accent);
}

.guarantee p {
    font-size: clamp(0.95rem, 3.2vw, 1.1rem);
    color: #555;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

/* ============================================
   FAQ — GLASSMORPHISM
   ============================================ */
.faq {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--bg-cream);
}

.faq-list {
    max-width: 640px;
    margin: 2rem auto 0;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.faq-item[open] {
    box-shadow: 0 12px 36px rgba(75, 46, 30, 0.14);
    border-color: var(--primary);
}

.faq-item summary {
    padding: 1.4rem 1.5rem;
    font-weight: 700;
    font-size: clamp(0.95rem, 3.2vw, 1.1rem);
    color: var(--accent);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    line-height: 1.4;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 1.5rem 1.4rem;
    color: #555;
    line-height: 1.65;
    font-size: clamp(0.9rem, 3vw, 1rem);
    margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background: var(--accent);
    color: var(--white);
    text-align: center;
}

.footer p {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
}

.legal {
    font-size: 0.78rem;
    opacity: 0.45;
    margin-top: 1.5rem;
    line-height: 1.5;
    padding: 0 1rem;
}

/* ============================================
   STICKY CTA BAR — aparece ao rolar no mobile
   ============================================ */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, #1a0f08, #2D1A12);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar a {
    display: block;
    width: 100%;
    max-width: 420px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a0f08;
    padding: 0.95rem 1.2rem;
    border-radius: 14px;
    font-weight: 900;
    text-decoration: none;
    font-size: clamp(0.85rem, 3.5vw, 1rem);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(255,165,0,0.4);
    animation: ultraPulse 2.2s ease-in-out infinite;
}

/* ============================================
   UTILIDADES DIVERSAS
   ============================================ */
.header { display: none; }

.page-indicator {
    font-weight: 700;
    color: var(--accent);
    font-size: 1rem;
    min-width: 70px;
    text-align: center;
}

.nav-btn {
    background: var(--primary);
    border: none;
    border-radius: 50%;
    width: 44px; height: 44px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.nav-btn:hover {
    transform: scale(1.1);
    background: var(--accent);
    color: #fff;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
}

/* ============================================
   MEDIA QUERIES — AJUSTES TABLET
   ============================================ */
@media (min-width: 600px) {
    .banner-flex {
        flex-direction: row;
        justify-content: space-between;
    }

    .perks {
        grid-template-columns: repeat(3, 1fr);
    }

    .carousel-slide {
        min-width: 70vw;
        max-width: 340px;
    }

    .hero-mockup-container {
        max-width: 400px;
    }

    .mechanism {
        border-radius: 2rem;
        margin: 2rem 1rem;
    }
}

@media (min-width: 900px) {
    .mechanism {
        border-radius: 3rem;
        margin: 2rem 2rem;
    }

    .sticky-cta-bar {
        display: none;
    }

    .carousel-slide {
        min-width: 280px;
        max-width: 280px;
    }
}

/* ============================================
   CARROSSEL HORIZONTAL DO EBOOK
   ============================================ */
.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    margin: 12px 0 16px;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 16px 8px;
    scroll-padding-left: 16px;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 auto;
    min-width: min(80vw, 300px);
    max-width: min(80vw, 300px);
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 24px rgba(75,46,30,0.15);
    border: 2px solid rgba(255,215,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide:active {
    transform: scale(0.97);
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: #fff;
}

/* DOTS */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 4px 0 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(75,46,30,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    width: 22px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(255,215,0,0.5);
}

/* SWIPE HINT */
.swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 4px 0 12px;
    font-size: 0.82rem;
    color: var(--accent-light);
    font-weight: 600;
    animation: swipeHintFade 3s ease-in-out infinite;
}

.swipe-icon {
    font-size: 1.1rem;
}

.swipe-arrow {
    animation: bounceArrow 1.2s ease-in-out infinite;
    display: inline-block;
    font-size: 1rem;
}

.swipe-arrow:last-child {
    animation-delay: 0.2s;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(4px); opacity: 1; }
}

.swipe-arrow:first-of-type {
    animation-name: bounceArrowLeft;
}

@keyframes bounceArrowLeft {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(-4px); opacity: 1; }
}

@keyframes swipeHintFade {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
