/* ===================================
   V-LOVKAFE - VitalHealth Brand
   Color Palette: Purple/Black/Gold
   =================================== */

/* CSS Variables */
:root {
    --purple-dark: #2D0A3E;
    --purple-main: #4A1A6B;
    --purple-light: #6B2FA0;
    --purple-glow: #8B45C6;
    --gold-main: #D4AF37;
    --gold-light: #F0D060;
    --gold-dark: #B8960F;
    --black: #0D0D0D;
    --dark-bg: #1A0A2E;
    --white: #FFFFFF;
    --gray-light: #F8F6FA;
    --gray-medium: #E8E0F0;
    --gray-dark: #6B6B7B;
    --text-dark: #1A1A2E;
    --text-light: #F0E8FF;
    --success: #22C55E;
    --danger: #EF4444;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   ANNOUNCEMENT BAR
   =================================== */
.announcement-bar {
    background: linear-gradient(90deg, var(--purple-dark), var(--purple-main), var(--purple-dark));
    color: var(--gold-light);
    padding: 10px 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.announcement-bar i {
    margin-right: 5px;
    color: var(--gold-main);
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(75, 26, 107, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-accent {
    color: var(--gold-main);
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--purple-glow);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: -2px;
}

.btn-nav {
    background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
    color: var(--black);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--purple-dark) 40%, var(--purple-main) 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 50%, rgba(107, 47, 160, 0.3) 0%, transparent 60%),
                radial-gradient(ellipse at 30% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--white);
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-main);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 700;
}

.highlight {
    color: var(--gold-main);
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.feature-item i {
    color: var(--gold-main);
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
    color: var(--black);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.cta-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.cta-note i {
    color: var(--gold-main);
    margin-right: 5px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
}

.floating-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--purple-light), var(--purple-dark));
    color: var(--white);
    padding: 12px 16px;
    border-radius: 15px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 5px 20px rgba(75, 26, 107, 0.5);
    border: 2px solid var(--gold-main);
}

.floating-badge .discount {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-light);
}

.floating-badge .text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ===================================
   TRUST SECTION
   =================================== */
.trust-section {
    padding: 40px 0;
    background: var(--white);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--purple-main);
}

.trust-item i {
    font-size: 1.3rem;
    color: var(--gold-main);
}

/* ===================================
   PROBLEM SECTION
   =================================== */
.problem-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(45, 10, 62, 0.15);
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(74, 26, 107, 0.1), rgba(212, 175, 55, 0.1));
    color: var(--purple-main);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(74, 26, 107, 0.2);
}

.problem-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.problem-text p {
    font-size: 1.05rem;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.problem-list li i {
    color: var(--danger);
    font-size: 1.1rem;
}

/* ===================================
   SOLUTION / BENEFITS SECTION
   =================================== */
.solution-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.solution-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-dark);
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-medium);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(45, 10, 62, 0.12);
    border-color: var(--purple-light);
}

.benefit-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 20px;
    overflow: hidden;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--purple-main);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* ===================================
   INGREDIENTS SECTION
   =================================== */
.ingredients-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--black) 100%);
    color: var(--white);
    text-align: center;
}

.ingredients-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: var(--white);
}

.ingredients-section .section-tag {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-main);
    border-color: rgba(212, 175, 55, 0.3);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ingredient-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.ingredient-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-main);
    transform: translateY(-5px);
}

.ingredient-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--purple-light), var(--gold-main));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--white);
}

.ingredient-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--gold-main);
}

.ingredient-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ===================================
   COUNTDOWN SECTION
   =================================== */
.countdown-section {
    padding: 40px 0;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-main), var(--gold-dark));
}

.countdown-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.countdown-text h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 5px;
}

.countdown-text p {
    color: var(--purple-dark);
    font-size: 0.95rem;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-block {
    background: var(--purple-dark);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 12px;
    text-align: center;
    min-width: 70px;
}

.time-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-light);
}

.time-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.time-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple-dark);
}

/* ===================================
   OFFERS SECTION
   =================================== */
.offers-section {
    padding: 80px 0;
    background: var(--gray-light);
    text-align: center;
}

.offers-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.offer-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--gray-medium);
    position: relative;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(45, 10, 62, 0.15);
}

.offer-card.popular {
    border-color: var(--gold-main);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.offer-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.offer-card.best-value {
    border-color: var(--purple-light);
}

.popular-badge, .value-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

.popular-badge {
    background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
    color: var(--black);
}

.value-badge {
    background: linear-gradient(135deg, var(--purple-light), var(--purple-dark));
    color: var(--white);
}

.offer-header {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple-main));
    padding: 25px 20px 20px;
    color: var(--white);
}

.offer-card.popular .offer-header {
    padding-top: 40px;
}

.offer-card.best-value .offer-header {
    padding-top: 40px;
}

.offer-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.offer-header p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.offer-body {
    padding: 25px;
}

.offer-image {
    position: relative;
    margin-bottom: 20px;
}

.offer-image img {
    width: 180px;
    height: 140px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.quantity-badge {
    position: absolute;
    top: 5px;
    right: 20%;
    background: var(--gold-main);
    color: var(--black);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.offer-price {
    margin-bottom: 20px;
}

.price-original {
    display: block;
    font-size: 1rem;
    color: var(--gray-dark);
    text-decoration: line-through;
}

.price-current {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--purple-main);
    line-height: 1.2;
}

.price-savings {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
}

.offer-features {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.offer-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-features li i {
    color: var(--gold-main);
    font-size: 0.85rem;
}

.offer-features li i.fa-gift {
    color: var(--purple-light);
}

.offer-features li i.fa-headset {
    color: var(--purple-light);
}

.btn-offer {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--purple-main), var(--purple-dark));
    color: var(--white);
}

.btn-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 26, 107, 0.3);
}

.btn-popular {
    background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
    color: var(--black);
}

.btn-popular:hover {
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-best {
    background: linear-gradient(135deg, var(--purple-light), var(--purple-main));
}

.btn-best:hover {
    box-shadow: 0 5px 15px rgba(107, 47, 160, 0.4);
}

/* ===================================
   HOW TO USE SECTION
   =================================== */
.howto-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.howto-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.howto-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.step-item {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 30px;
    flex: 1;
    max-width: 250px;
    border: 1px solid var(--gray-medium);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--purple-main), var(--gold-main));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-content h4 {
    font-size: 1.1rem;
    color: var(--purple-main);
    margin-bottom: 5px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.step-arrow {
    color: var(--gold-main);
    font-size: 1.5rem;
}

.howto-tip {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(135deg, rgba(74, 26, 107, 0.05), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(74, 26, 107, 0.15);
    border-radius: 15px;
    padding: 20px 30px;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.howto-tip i {
    color: var(--gold-main);
    font-size: 1.3rem;
    margin-top: 3px;
}

.howto-tip p {
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: 80px 0;
    background: var(--gray-light);
    text-align: center;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-medium);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--purple-light);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--purple-main);
}

.faq-question i {
    color: var(--gold-main);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 18px;
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--black) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.2rem;
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.guarantee-item i {
    color: var(--gold-main);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--black);
    padding: 50px 0 30px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo .logo-text {
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: block;
}

.footer-logo p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--gold-main);
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-links a, .footer-contact a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 5px 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--gold-main);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.disclaimer {
    margin-top: 10px;
    font-size: 0.75rem !important;
    font-style: italic;
}

/* ===================================
   CHECKOUT MODAL
   =================================== */
.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.checkout-modal.active {
    display: flex;
}

.checkout-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.checkout-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--gray-dark);
    cursor: pointer;
    z-index: 2;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkout-close:hover {
    background: var(--gray-light);
    color: var(--danger);
}

.checkout-header {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple-main));
    padding: 25px;
    color: var(--white);
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.checkout-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.checkout-header p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.checkout-body {
    padding: 25px;
}

.checkout-summary {
    background: var(--gray-light);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.checkout-summary h3 {
    font-size: 1rem;
    color: var(--purple-main);
    margin-bottom: 12px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.95rem;
}

.summary-label {
    color: var(--gray-dark);
}

.summary-value {
    font-weight: 600;
    color: var(--text-dark);
}

.summary-price {
    font-size: 1.2rem;
    color: var(--purple-main) !important;
    font-weight: 700 !important;
}

.summary-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-medium);
    font-size: 0.85rem;
    color: var(--success);
}

.checkout-form .form-group {
    margin-bottom: 15px;
}

.checkout-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.checkout-form label i {
    color: var(--purple-light);
    margin-right: 5px;
}

.checkout-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-medium);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.checkout-form input:focus {
    outline: none;
    border-color: var(--purple-light);
    box-shadow: 0 0 0 3px rgba(107, 47, 160, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-checkout-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

.btn-checkout-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-checkout-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.checkout-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-dark);
    margin-top: 12px;
}

/* ===================================
   SUCCESS MODAL
   =================================== */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.success-modal.active {
    display: flex;
}

.success-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 450px;
    width: 100%;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.success-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--gray-dark);
    cursor: pointer;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple-light), var(--gold-main));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
}

.success-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.success-message {
    font-size: 0.95rem;
    color: var(--gray-dark);
    margin-bottom: 25px;
    line-height: 1.6;
}

.success-details {
    text-align: left;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.detail-item i {
    color: var(--gold-main);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.btn-success-close {
    background: linear-gradient(135deg, var(--purple-main), var(--purple-dark));
    color: var(--white);
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-success-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 26, 107, 0.3);
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */
section {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* Animate-in class adds a subtle entrance */
section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .problem-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .problem-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .problem-list {
        display: inline-block;
        text-align: left;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }
    
    .offer-card.popular {
        transform: none;
    }
    
    .offer-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .countdown-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .howto-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .step-item {
        max-width: 100%;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
    
    .problem-text h2, .solution-section h2, .ingredients-section h2,
    .howto-section h2, .faq-section h2, .offers-section h2, .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-guarantees {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-large {
        padding: 16px 36px;
        font-size: 1.05rem;
    }
    
    .announcement-bar {
        font-size: 0.75rem;
    }
    
    .btn-nav {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .badge-premium {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .floating-badge {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
    }
    
    .floating-badge .discount {
        font-size: 1.1rem;
    }
    
    .time-block {
        padding: 8px 12px;
        min-width: 55px;
    }
    
    .time-number {
        font-size: 1.4rem;
    }
    
    .countdown-text h3 {
        font-size: 1.1rem;
    }
    
    .price-current {
        font-size: 2rem;
    }
    
    .checkout-content {
        border-radius: 15px;
    }
    
    .checkout-header {
        border-radius: 15px 15px 0 0;
    }
}
