:root {
    --primary: #000000;
    --accent: #16a34a;
    --accent-red: #dc2626;
    --gray-light: #f3f4f6;
    --gray-medium: #6b7280;
    --border: #e5e7eb;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: #1a1a1a; line-height: 1.5; overflow-x: hidden;
    padding-top: 36px; padding-bottom: 80px;
    -webkit-user-select: none; -moz-user-select: none; user-select: none;
}
img { -webkit-user-drag: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Trust Banner */
.trust-banner-top {
    position: fixed; top: 0; left: 0; width: 100%; height: 36px;
    background: #111; display: flex; align-items: center; justify-content: center; gap: 8px;
    z-index: 2147483647; color: #fff; font-size: 13px;
}
.trust-stars { display: flex; gap: 2px; }
.trust-star { background: #00b67a; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; }
.trust-star svg { width: 12px; height: 12px; fill: #fff; }

/* Header */
.site-header { position: sticky; top: 36px; background: #fff; border-bottom: 1px solid var(--border); z-index: 100; padding: 0 20px; }
.header-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; height: 60px; }
.logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; text-decoration: none; color: #000; }
.logo span { color: #d4a853; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--gray-medium); font-size: 14px; font-weight: 600; }
#countdown { font-weight: 800; font-size: 18px; color: var(--accent-red); }
@media (max-width: 767px) { .nav-links { display: none; } }

/* Product Grid */
.product-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; padding: 40px 0; align-items: start; }
@media (max-width: 991px) { .product-grid { grid-template-columns: 1fr; gap: 30px; padding: 20px 0; } }

/* Gallery */
.gallery { position: sticky; top: 100px; }
@media (max-width: 991px) { .gallery { position: relative; top: 0; } }
.main-img-box { background: var(--gray-light); border-radius: 20px; overflow: hidden; margin-bottom: 20px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.main-img-box img { width: 100%; height: 100%; object-fit: contain; }
.thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.thumb { aspect-ratio: 1; border-radius: 8px; border: 2px solid transparent; cursor: pointer; overflow: hidden; background: var(--gray-light); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--primary); }

/* Product Info */
.product-info { display: flex; flex-direction: column; gap: 15px; }
.badge-viral { background: #000; color: #fff; padding: 6px 12px; border-radius: 50px; font-size: 11px; font-weight: 800; width: fit-content; text-transform: uppercase; letter-spacing: 1px; }
.title { font-size: 32px; font-weight: 800; letter-spacing: -1px; line-height: 1.1; }
.subtitle { font-size: 15px; color: var(--gray-medium); line-height: 1.6; }
.price-row { display: flex; align-items: center; gap: 15px; margin: 10px 0; }
.price-now { font-size: 36px; font-weight: 900; color: var(--accent-red); }
.price-old { font-size: 20px; color: var(--gray-medium); text-decoration: line-through; }
.save-badge { background: #fee2e2; color: var(--accent-red); padding: 4px 8px; border-radius: 6px; font-weight: 700; font-size: 14px; }

/* Stock Indicator */
.stock-indicator { background: #fff7ed; border: 1px solid #fed7aa; border-radius: 10px; padding: 12px 16px; font-size: 14px; font-weight: 600; color: #ea580c; }
.stock-bar { height: 6px; background: #fed7aa; border-radius: 3px; margin-top: 8px; overflow: hidden; }
.stock-fill { height: 100%; background: linear-gradient(90deg, #f97316, #dc2626); border-radius: 3px; transition: width 0.3s; }

/* Offer Box */
.offer-box { display: flex; align-items: center; gap: 15px; background: #fdf2f8; padding: 15px; border-radius: 12px; border: 1px dashed #ec4899; }
.offer-icon { font-size: 28px; flex-shrink: 0; }
.offer-tag { color: #ec4899; font-weight: 800; font-size: 12px; display: block; text-transform: uppercase; }
.offer-text { font-size: 14px; font-weight: 600; line-height: 1.3; }

/* Bundles */
.bundle-list { display: flex; flex-direction: column; gap: 12px; margin: 15px 0; }
.bundle-option { display: flex; align-items: center; gap: 15px; padding: 18px; border: 2px solid var(--border); border-radius: 16px; cursor: pointer; transition: all 0.2s; position: relative; }
.bundle-option.active { border-color: var(--accent); background: #f0fdf4; }
.bundle-option.best-value { border-color: var(--accent); }
.best-badge { position: absolute; top: -10px; right: 15px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.radio-dot { width: 20px; height: 20px; border-radius: 50%; border: 2px solid #ddd; position: relative; flex-shrink: 0; }
.bundle-option.active .radio-dot { border-color: var(--accent); }
.bundle-option.active .radio-dot::after { content: ''; position: absolute; inset: 4px; background: var(--accent); border-radius: 50%; }
.bundle-info { flex: 1; }
.bundle-name { font-weight: 700; font-size: 16px; }
.bundle-sub { font-size: 12px; color: var(--gray-medium); }
.bundle-price { font-weight: 800; font-size: 18px; }
.bundle-price small { font-weight: 600; font-size: 12px; color: var(--gray-medium); }

/* Upsells */
.upsell-section { background: var(--gray-light); border-radius: 16px; padding: 20px; }
.upsell-title { font-size: 16px; font-weight: 800; margin-bottom: 15px; }
.upsell-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.upsell-item:last-child { border-bottom: none; }
.upsell-item label { display: flex; align-items: center; cursor: pointer; flex-shrink: 0; }
.upsell-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; }
.upsell-info { flex: 1; }
.upsell-name { font-weight: 700; font-size: 14px; display: block; }
.upsell-desc { font-size: 12px; color: var(--gray-medium); }
.upsell-price { font-weight: 800; font-size: 15px; color: var(--accent); flex-shrink: 0; }

/* Checkout Button */
.checkout-btn {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white; border: none; padding: 20px; border-radius: 14px;
    font-size: 18px; font-weight: 800; cursor: pointer; width: 100%;
    text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(22,163,74,0.3);
    transition: transform 0.2s;
    animation: pulse 2s infinite;
}
.checkout-btn:hover { transform: scale(1.02); }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.02)} }

/* Trust & Payment Icons */
.trust-icons { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.trust-icon { background: var(--gray-light); padding: 6px 12px; border-radius: 8px; font-size: 12px; font-weight: 600; color: var(--gray-medium); }
.payment-icons { display: flex; align-items: center; gap: 10px; margin-top: 10px; justify-content: center; }

/* Sections */
.section { padding: 60px 0; border-top: 1px solid var(--border); }
.section-title { font-size: 28px; font-weight: 800; text-align: center; margin-bottom: 40px; text-transform: uppercase; letter-spacing: -0.5px; }

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 767px) { .features-grid { grid-template-columns: 1fr; } }
.feature-item { text-align: center; }
.feature-img { background: var(--gray-light); border-radius: 20px; overflow: hidden; margin-bottom: 20px; }
.feature-img img { width: 100%; border-radius: 20px; }
.feature-item h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.feature-item p { color: var(--gray-medium); font-size: 14px; line-height: 1.6; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 767px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 20px; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar-circle { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 14px; }
.review-stars { color: #f59e0b; font-size: 14px; }
.review-text { font-size: 14px; color: #444; line-height: 1.6; }
.review-photo { width: 100%; border-radius: 12px; margin: 12px 0; object-fit: cover; max-height: 200px; }
.review-verified { display: flex; align-items: center; gap: 4px; color: var(--accent); font-size: 12px; font-weight: 600; margin-top: 10px; }

/* FAQ */
.faq { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q { padding: 20px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; background: #fff; }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.3s; color: var(--gray-medium); font-size: 14px; line-height: 1.7; }
.faq-item.active .faq-a { padding: 0 20px 20px; max-height: 300px; }

/* Footer */
.fravegga-footer { background: #111; color: #fff; padding: 40px 20px 24px; }
.fravegga-footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.fravegga-footer-col a, .fravegga-footer-col p { display: block; color: #999; font-size: 14px; margin-bottom: 8px; text-decoration: none; }
.fravegga-footer-col a:hover { color: #fff; }
.fravegga-footer-col h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: #d4a853; }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 20px; margin-top: 30px; color: #666; font-size: 13px; }
@media (max-width: 768px) { .fravegga-footer-inner { grid-template-columns: 1fr; text-align: center; } }

/* Sticky Bar */
.frav-sticky-footer { position: fixed; bottom: 0; left: 0; right: 0; background: white; border-top: 1px solid #e5e7eb; padding: 10px 15px; display: none; align-items: center; justify-content: space-between; gap: 10px; z-index: 2000; box-shadow: 0 -4px 15px rgba(0,0,0,0.08); }
.frav-sticky-info { display: flex; align-items: center; gap: 10px; min-width: 0; }
.frav-sticky-img { width: 42px; height: 42px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.frav-sticky-name { font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #111; }
.frav-sticky-price { font-size: 14px; font-weight: 800; color: #dc2626; }
.frav-sticky-btn { background: linear-gradient(135deg, #16a34a 0%, #15803d 100%); color: white; border: none; border-radius: 10px; padding: 12px 18px; font-size: 14px; font-weight: 800; cursor: pointer; white-space: nowrap; flex-shrink: 0; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 4px 10px rgba(22,163,74,0.25); }
@media (max-width: 480px) { .frav-sticky-info { display: none; } .frav-sticky-btn { width: 100%; font-size: 15px; padding: 15px; } }
