:root {
    --primary: #FFCB05;
    /* Warmer, friendlier yellow */
    --primary-dark: #E6B200;
    --secondary: #FF6B6B;
    --text-dark: #4A2B1F;
    --text-muted: #8E6B5E;
    --bg-cream: #F8F5E8;
    --bg-white: #FFFFFF;
    --bg-dark: #2D1A12;
    --font-heading: 'Baloo 2', cursive;
    --font-body: 'Space Grotesk', sans-serif;
    --shadow-soft: 0 10px 30px rgba(74, 43, 31, 0.05);
    --shadow-hover: 0 20px 40px rgba(74, 43, 31, 0.1);
    --radius-large: 24px;
    --radius-pill: 50px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

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

.mt-2 {
    margin-top: 2.5rem;
}

.mt-4 {
    margin-top: 4rem;
}

/* Typography & Utilities */
.section-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.highlight {
    color: var(--secondary);
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: var(--primary);
    color: var(--bg-dark);
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 187, 0, 0.4);
    font-size: 1.1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 187, 0, 0.5);
    background: var(--primary-dark);
}

.btn-large {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(255, 203, 5, 0.4);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(255, 203, 5, 0.4);
    }

    to {
        box-shadow: 0 0 25px rgba(255, 203, 5, 0.8);
    }
}

.offer-alert {
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
    padding: 10px 20px;
    color: #FF6B6B;
    font-weight: 700;
    margin: 20px 0 30px;
    display: inline-block;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- HERO SECTION --- */
.hero {
    padding: 60px 0 80px;
    background: var(--bg-cream);
    /* Removed gradient to match flat cream background */
}

.hero-container-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content-centered {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content-centered h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    /* Slightly smaller than before to fit nicely */
    margin-bottom: 20px;
    color: #4A2B1F;
    /* Specific Brown */
    line-height: 1.1;
    font-weight: 800;
}

.hero-content-centered p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.6;
}

.highlight-text {
    color: #4A2B1F;
}

.badge-container {
    margin-bottom: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #FFC107;
    /* Mustard/Yellow */
    color: #4A2B1F;
    /* Brown Text */
    font-size: 0.85rem;
    padding: 8px 18px;
    letter-spacing: 0.5px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    white-space: nowrap;
}


/* VSL Cinematic Updates within Hero */
.vsl-container-cinematic {
    width: 100%;
    max-width: 800px;
    margin: 20px auto 50px;
}

.vsl-cinema-frame {
    background: #000;
    border-radius: 20px;
    /* Rounded corners */
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: none;
}

.sound-toggle-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(2px);
}

.sound-toggle-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.sound-icon-box {
    width: 90px;
    height: 90px;
    background: #FFC107;
    /* Yellow Play Button */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.6);
    animation: pulse 2s infinite;
}

.sound-icon-box i {
    margin-left: 8px;
    /* Optical center for play icon */
}

.sound-text {
    position: absolute;
    bottom: 20px;
    /* Position at bottom */
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-container {
    margin-top: 40px;
}

/* --- BENEFITS SECTION --- */
.benefits {
    background: #FFFFFF;
    /* Pure white background as seen in image */
    padding-top: 60px;
    padding-bottom: 80px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    /* Increased gap for cleaner look */
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: transparent;
    /* No background */
    padding: 20px;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
    /* No shadow */
    border: none;
    /* No border */
}

/* Hover effect only on the icon/text slightly, or remove hover card effect entirely to match static clean design? 
   I'll keep a subtle transform for interactivity but remove the shadow/bg change to stick to the 'clean' look. */
.benefit-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 90px;
    height: 90px;
    background: #F4EBD9;
    /* Light beige/cream circle background from image matches */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: #4A2B1F;
    /* Specific dark brown for icon */
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4A2B1F;
    /* Dark brown */
    font-weight: 800;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #5D4037;
    /* Slightly lighter brown for text */
    max-width: 300px;
    margin: 0 auto;
}

/* --- BONUS SECTION --- */
.bonus-section {
    background: var(--bg-cream);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-large);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.bonus-card img {
    border-radius: 16px;
    margin-bottom: 20px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bonus-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary);
    color: #fff;
    padding: 5px 15px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bonus-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.bonus-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- OFFER SECTION --- */
.offer {
    background: var(--bg-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.offer::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.1;
}

.offer-box {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    background: #4A2B1E;
    /* Dark brown from image */
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.offer .badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.offer .highlight {
    color: var(--primary);
}

.offer-features-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    margin: 30px auto;
    max-width: 600px;
}

.feature-item {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

.feature-sub-items {
    margin-top: 15px;
}

.bonus-preview-mini {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.bonus-mini-card {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.bonus-mini-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-box-premium {
    margin: 30px 0;
}

.savings-badge {
    color: #4ade80;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 10px;
}

.guarantee img {
    width: 20px;
    margin-right: 5px;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 10px;
}

.new-price {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: block;
}

/* Timer Styles */
.timer-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.timer-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 10px;
    min-width: 70px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timer-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.timer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Sale Notification - Smaller & Minimalist */
.sale-notification {
    position: fixed;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    z-index: 2000;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(4px);
}

.sale-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.sale-text {
    font-size: 0.75rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.sale-text b {
    display: block;
    color: var(--primary-dark);
    font-weight: 700;
}

.guarantee {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 30px;
}

.guarantee p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guarantee i {
    color: var(--primary);
}

/* --- RECIPES SECTION --- */
.recipes {
    background: var(--bg-cream);
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.recipe-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    /* Very subtle shadow */
    transition: var(--transition);
    border: none;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.card-image {
    height: 220px;
    /* Slightly shorter for compact look */
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFFAF0;
    color: #5BA85B;
    /* Greenish text for calories */
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #4A2B1F;
    /* Chocolate text */
}

.card-content .meta {
    font-size: 0.85rem;
    color: #8C7B75;
    display: flex;
    align-items: center;
    gap: 6px;
}



/* --- AUTHOR SECTION --- */
.author-container {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 40px;
    box-shadow: var(--shadow-soft);
}

.author-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 8px solid var(--bg-cream);
    object-fit: cover;
}

.author-content h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.author-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* --- TESTIMONIALS --- */
.testimonials {
    background: var(--bg-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.whatsapp-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.whatsapp-header {
    background: #075E54;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-pic img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.header-info span {
    display: block;
    line-height: 1.2;
}

.contact-name {
    font-weight: 700;
    font-size: 1rem;
}

.status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.whatsapp-body {
    padding: 20px;
    background-color: #E5DDD5;
    background-image: linear-gradient(rgba(229, 221, 213, 0.9), rgba(229, 221, 213, 0.9)),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgb3BhY2l0eT0iMC4xIj48cGF0aCBkPSJNMTAgMTBoMjB2MjBIMTB6Ii8+PC9zdmc+');
    /* Simulated doodle pattern */
    min-height: 180px;
}

.message-bubble {
    background: #fff;
    padding: 12px 16px;
    border-radius: 0 12px 12px 12px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
}

.message-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 0;
    border-color: transparent #fff transparent transparent;
}

.msg-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #888;
    margin-top: 5px;
}

.read-check {
    color: #53bdeb;
}

/* --- FAQ --- */
.faq {
    background: var(--bg-cream);
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #4A2B1F;
    /* Chocolate brown */
    padding: 0;
}

.faq-toggle {
    background: var(--bg-cream);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background-color 0.3s;
}

.faq-toggle img {
    width: 14px;
    height: auto;
    mix-blend-mode: multiply;
    /* Ensures the white background of the jpg/png disappears */
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background: #FFCB05;
    /* Highlight color when active */
}

.faq-answer {
    color: #6D544C;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    border-top: 1px solid transparent;
    margin-top: 0;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- FOOTER --- */
footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .author-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-content-centered h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .new-price {
        font-size: 3.5rem;
    }

    .guarantee {
        flex-direction: column;
        gap: 10px;
    }
}

/* Guarantee Section Styling */
.guarantee-section {
    background: #FDFBF7;
    padding: 80px 0;
}

.guarantee-card {
    background-color: #4A2B1E;
    color: white;
    padding: 50px 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(74, 43, 31, 0.1);
}

.guarantee-badge-large {
    flex-shrink: 0;
    background: #FFCB05;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-content h2 {
    color: #FFCB05;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.guarantee-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}