/* Reset and Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: #fdfdfd; color: #1a1a1a; line-height: 1.5; }

.top-announcement { background: #000; color: #fff; text-align: center; font-size: 11px; padding: 8px; font-weight: bold; letter-spacing: 1px; }

.vsl-wrapper { max-width: 1000px; margin: 0 auto; padding: 20px; text-align: center; }

/* Headline */
.headline { font-size: 42px; font-weight: 900; color: #cc0000; margin: 20px 0 10px; line-height: 1.2; }
.subheadline { font-size: 20px; color: #555; margin-bottom: 30px; font-weight: bold;}

/* Video */
.video-container { background: #fff; padding: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 10px; margin-bottom: 40px; }
.video-aspect-ratio { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; border-radius: 5px;}
.video-aspect-ratio iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.sound-alert { margin-top: 15px; font-weight: bold; color: #cc0000; font-size: 18px;}

/* Reveal Logic */
.hidden { display: none; }

/* Offer Section */
.offer-title { font-size: 32px; font-weight: 800; margin-bottom: 10px; }

/* Product Grid */
.product-grid { display: flex; gap: 20px; justify-content: center; margin-top: 30px; }
.card { background: white; border: 2px solid #e0e0e0; border-radius: 15px; padding: 20px; flex: 1; position: relative; display: flex; flex-direction: column; align-items: center;}
.card.featured { border: 4px solid #ff9900; transform: scale(1.05); box-shadow: 0 10px 30px rgba(255,153,0,0.2); background: #fffdf5;}
.card-header { background: #eee; font-weight: bold; padding: 8px; margin: -20px -20px 15px -20px; border-radius: 11px 11px 0 0; width: calc(100% + 40px); font-size: 18px; text-transform: uppercase;}
.card.featured .card-header { background: #ff9900; color: white; font-size: 20px; }

.product-shot { max-width: 140px; margin: 15px 0; }
.price { font-size: 54px; font-weight: 900; color: #111;}
.price span { font-size: 24px; vertical-align: top; margin-right: 2px; }
.per-bottle { color: #666; font-weight: bold; margin-bottom: 15px;}

.buy-button { display: block; background: #28a745; color: white; padding: 18px 20px; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 22px; width: 100%; box-shadow: 0 4px 0 #1e7e34; transition: all 0.2s ease;}
.buy-button:hover { background: #218838; transform: translateY(2px); box-shadow: 0 2px 0 #1e7e34;}
.buy-button:active { transform: translateY(4px); box-shadow: none;}

.shipping { margin-top: 15px; font-size: 14px; font-weight: bold; color: #555;}
.savings-tag { background: #cc0000; color: white; font-weight: bold; padding: 8px 15px; border-radius: 5px; margin-top: 15px; font-size: 18px; width: 100%;}

/* Guarantee */
.guarantee-box { margin-top: 60px; padding: 40px; border: 2px dashed #ccc; border-radius: 10px; background: #fdfdfd;}
.guarantee-box img { margin-bottom: 15px;}
.guarantee-box h3 { font-size: 24px; margin-bottom: 10px;}
.guarantee-box p { font-size: 16px; color: #555; max-width: 600px; margin: 0 auto;}

/* Footer */
.footer { background: #f4f4f4; padding: 60px 20px; font-size: 13px; color: #777; margin-top: 80px; text-align: center;}
.footer-links { margin: 15px 0;}
.footer-links a { color: #555; text-decoration: none; margin: 0 10px;}
.disclaimer { max-width: 800px; margin: 20px auto; font-style: italic; line-height: 1.4;}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .product-grid { flex-direction: column; align-items: center; gap: 40px;}
    .card { width: 100%; max-width: 380px; }
    .card.featured { transform: scale(1); }
    .headline { font-size: 32px; }
    .subheadline { font-size: 18px; }
    .buy-button { font-size: 20px;}
}