 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    background: #ffffff;
    color: #1a1a1a;
    font-family: Arial, Helvetica, sans-serif;
}

.top-bar {
    background: #1e40af;
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
}

.container {
    max-width: 760px;
    margin: 0 auto;
    padding: 28px 16px 0;
}

.byline {
    font-size: 12px;
    color: #777;
    text-align: center;
    margin-bottom: 14px;
}

.byline b {
    color: #1e40af;
}

.headline {
    font-size: clamp(18px, 3.5vw, 28px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #1a1a1a;
}

.headline em {
    color: #1e40af;
    font-style: normal;
}

.video-wrap {
    width: 100%;
    max-width: 640px;
    margin: 0 auto 28px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 36px rgba(0,0,0,.6);
}

.video-wrap iframe,
.video-wrap video,
.video-wrap vturb-smartplayer {
    width: 100% !important;
    display: block !important;
}

/* URGENCY */
.urgency-bar {
    background: #fff7ed;
    border-bottom: 2px solid #fb923c;
    padding: 10px;
    text-align: center;
    font-size: 13px;
    color: #9a3412;
    display: none;
}

.urgency-bar.show {
    display: block;
}

.timer-val {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #940a0a;
    display: inline-block;
    margin-top: 2px;
}

.stock-bar {
    background: #940a0a11;
    border-top: 1px solid #940a0a33;
    border-bottom: 1px solid #940a0a33;
    padding: 9px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    display: none;
}

.stock-bar.show {
    display: block;
}

.stock-num {
    color: #940a0a;
}

/* OFFER */
#offer-section {
    display: none;
}

.offer-header {
    text-align: center;
    padding: 32px 16px 8px;
}

.offer-header h2 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 900;
    color: #1a1a1a;
}

.offer-header p {
    font-size: 14px;
    color: #888;
    margin-top: 6px;
}

.bottles-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    max-width: 920px;
    margin: 20px auto 0;
    padding: 0 12px;
}

.bottle-card {
    flex: 1;
    min-width: 220px;
    max-width: 290px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s;
}

.bottle-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

.bottle-card.best {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0,0,0,.5);
}

.bottle-card.best:hover {
    transform: translateY(-8px) scale(1.06);
    box-shadow: 0 16px 48px rgba(0,0,0,.6);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1.05); }
    50% { transform: scale(1.08); }
}

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

#offer-section .bottles-grid .bottle-card:nth-child(1) { animation: fadeInUp .5s .1s both; }
#offer-section .bottles-grid .bottle-card:nth-child(2) { animation: fadeInUp .5s .25s both, pulse 2s 1s ease-in-out 3; }
#offer-section .bottles-grid .bottle-card:nth-child(3) { animation: fadeInUp .5s .4s both; }

.card-badge { font-size: 12px; font-weight: 900; padding: 6px 10px; text-align: center; letter-spacing: .4px; }
.card-header { padding: 10px; font-size: 17px; font-weight: 900; letter-spacing: 1px; text-align: center; }
.card-body { padding: 0 0 10px; text-align: center; }
.card-days { font-size: 13px; padding: 6px 0 2px; }

.card-img { width: 150px; height: 150px; object-fit: contain; margin: 10px auto; display: block; }
.card-img-empty { width: 150px; height: 150px; margin: 10px auto; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-style: italic; }

.card-price { font-size: 40px; font-weight: 900; padding: 6px 0 0; line-height: 1; }
.card-per { font-size: 12px; padding-bottom: 6px; }
.card-benefits { list-style: none; padding: 6px 14px; font-size: 13px; text-align: left; line-height: 2; }

.pay-icons { display: flex; gap: 5px; justify-content: center; padding: 5px 0; }
.pay-icons span { padding: 2px 6px; border-radius: 3px; color: #fff; font-size: 9px; font-weight: 700; }
.card-total { padding: 8px 12px; font-size: 12px; text-align: center; margin-top: 4px; }

/* TESTIMONIALS */
.testimonials-wrap { max-width: 680px; margin: 36px auto; padding: 0 16px 40px; }
.testimonials-wrap h3 { text-align: center; font-size: 20px; font-weight: 800; margin-bottom: 6px; color: #1a1a1a; }
.testimonials-wrap p.tsub { text-align: center; font-size: 13px; color: #888; margin-bottom: 20px; }

.fb-card { background: #fff; border-radius: 10px; padding: 16px; margin-bottom: 12px; border: 1px solid #e5e7eb; color: #111; }
.fb-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.fb-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.fb-name { font-weight: 700; font-size: 14px; }
.fb-time { font-size: 11px; color: #6b7280; }
.fb-logo { margin-left: auto; width: 26px; height: 26px; background: #1877f2; color: #fff; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 15px; }
.fb-text { font-size: 14px; color: #333; line-height: 1.6; margin-bottom: 10px; }
.fb-footer { display: flex; justify-content: space-between; padding-top: 8px; border-top: 1px solid #f0f0f0; font-size: 12px; color: #6b7280; }

/* FOOTER */
.page-footer { background: #111; color: #555; text-align: center; padding: 20px 16px; font-size: 11px; line-height: 1.8; }
.footer-links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; }
.footer-links a { color: #666; text-decoration: underline; }

/* EXIT */
#exit-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#exit-overlay.show { display: flex; }

.exit-box { background: #fff; border-radius: 16px; padding: 28px 24px; max-width: 520px; width: 100%; text-align: center; position: relative; color: #111; }
.exit-close { position: absolute; top: 10px; right: 14px; font-size: 22px; cursor: pointer; background: none; border: none; color: #888; line-height: 1; }
.exit-box h2 { font-size: 20px; font-weight: 900; margin-bottom: 8px; line-height: 1.3; }
.exit-box p { font-size: 13px; color: #555; margin-bottom: 18px; line-height: 1.6; }

.exit-bottles { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.exit-bottle-item { width: 76px; text-align: center; text-decoration: none; color: #555; }
.exit-bottle-item img { width: 66px; height: 66px; object-fit: contain; }
.exit-bottle-item div { width: 66px; height: 66px; background: #f3f4f6; border-radius: 8px; margin: 0 auto; }
.exit-bottle-item span { font-size: 10px; display: block; margin-top: 3px; }

.exit-cta {
    display: block;
    background: #1e40af;
    color: #fff;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
}

.exit-note { font-size: 10px; color: #aaa; margin-top: 10px; }

@media(max-width: 600px) {
    .bottles-grid {
        flex-direction: column;
        align-items: center;
    }
    .bottle-card, .bottle-card.best {
        max-width: 100%;
        width: 100%;
        transform: none;
    }
}