:root {
    /* Color Palette */
    --bg-green: #eef2e6; /* Soft pastel green / cream background */
    --bg-cream: #FDF9F1; /* Soft cream */
    --primary: #516927; /* Rich olive green for buttons */
    --primary-hover: #3d511b;
    --text-color: #3C342B; /* Deep brown/grey for text */
    --heading-color: #2c251e;
    --highlight: #739537; /* Lighter green for highlights */
    --discount-red: #cf2e2e;
    --white: #ffffff;
    
    /* Spacing & Layout */
    --container-max-width: 1000px;
    --container-sm-width: 800px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* Layout Utilities */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}
.container-sm {
    max-width: var(--container-sm-width);
}

.section { padding: 40px 0; }
@media(min-width: 768px) { .section { padding: 60px 0; } }

.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.pb-l { padding-bottom: 60px; }

.bg-green { background-color: var(--bg-green); }
.bg-cream { background-color: var(--bg-cream); }
.bg-white { background-color: var(--white); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.mx-auto { margin-left: auto; margin-right: auto; }
.block { display: block; }
.d-inline-flex { display: inline-flex; }
.w-full { width: 100%; }

/* Image Utilities */
.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.max-w-xs { max-width: 250px; width: 100%; }
.max-w-sm { max-width: 320px; width: 100%; }
.max-w-md { max-width: 450px; width: 100%; }
.max-w-lg { max-width: 600px; width: 100%; }
.max-w-xl { max-width: 800px; width: 100%; }
.rounded-xl { border-radius: 20px; }
.rounded-lg { border-radius: 12px; }
.shadow-lg { box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.shadow-xl { box-shadow: 0 20px 40px rgba(0,0,0,0.12); border: 2px solid white; }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0,0,0,0.15); }

/* Margins */
.mb-s { margin-bottom: 20px; }
.mb-m { margin-bottom: 40px; }
.mb-l { margin-bottom: 60px; }
.mt-s { margin-top: 20px; }
.mt-m { margin-top: 40px; }
.mt-l { margin-top: 60px; }

/* Custom Typography */
.title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--heading-color);
}
.title .highlight-text {
    font-weight: 900;
    color: var(--primary);
    display: block;
}
.headline-left { text-align: left; }
.subtitle-text { font-size: 22px; font-weight: 600; color: var(--text-color); }

@media(min-width: 768px) {
    .title { font-size: 38px; }
    .title .highlight-text { font-size: 44px; }
    .subtitle-text { font-size: 28px; }
}

/* Button & Animations */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 22px;
    padding: 22px 30px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    letter-spacing: 0.5px;
}
@media(min-width: 768px) {
    .btn { font-size: 26px; }
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary-hover);
    box-shadow: 0 8px 20px rgba(81, 105, 39, 0.35);
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(81, 105, 39, 0.45);
}
.pulse-btn {
    animation: heartbeat 1.5s ease-in-out infinite;
}
@keyframes heartbeat {
    0% { transform: scale(1); }
    10% { transform: scale(1.04); }
    20% { transform: scale(1); }
    30% { transform: scale(1.04); }
    60% { transform: scale(1); }
    100% { transform: scale(1); }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Icon Lists */
.icon-list {
    list-style: none;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}
.check-list li, .x-list li {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}
.check-list i, .x-list i {
    color: var(--primary);
    font-size: 26px;
    margin-right: 18px;
    margin-top: 2px;
}
@media(min-width: 768px) {
    .check-list li, .x-list li { font-size: 20px; align-items: center; }
    .check-list i, .x-list i { font-size: 30px; margin-top: 0; }
}

.x-list i {
    color: var(--discount-red);
}

.plus-list {
    display: inline-block;
    text-align: left;
}
.plus-list li {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.plus-list span {
    color: var(--primary);
    font-size: 26px;
    font-weight: 900;
    margin-right: 15px;
}
@media(min-width: 768px) {
    .plus-list li { font-size: 20px; }
}

/* Grid systems */
.recipe-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media(min-width: 600px) {
    .recipe-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(min-width: 900px) {
    .recipe-grid { grid-template-columns: repeat(3, 1fr); }
}

.recipe-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.recipe-card:hover { transform: translateY(-5px); }
.recipe-card img {
    border-bottom: 5px solid var(--primary);
}
.recipe-info {
    padding: 25px 20px;
    text-align: center;
}
.recipe-info h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    min-height: 50px;
}
.recipe-sub { color: var(--primary); font-size: 16px; font-weight: 700;}
.recipe-meta p {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 5px;
}
.recipe-meta i { width: 20px; color: var(--highlight); }

/* Special Stack layout */
.image-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.image-stack img {
    max-width: 85%;
    margin-bottom: -15%;
    position: relative;
    border: 4px solid white;
}
.image-stack img:last-child { margin-bottom: 40px; }

/* Bonus Layout */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.bonus-card {
    display: flex;
    flex-direction: column;
    text-align: center;
}
@media(min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }
}
.bonus-img { margin-bottom: 20px; }
.bonus-info { text-align: center; }

/* Video */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
@media(max-width: 768px) {
    .video-wrapper {
        padding-bottom: 150%; /* Shorts ratio for mobile */
        max-width: 380px;
        margin: 0 auto;
    }
}
.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* Bonus styling */
.bonus-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
}
.badge { color: var(--primary); font-size: 28px; }
.small-text { font-size: 18px; font-weight: 600; color: #555; }
.free-text { color: var(--primary); font-weight: 900; font-size: 26px; }

/* Pricing Card */
.pricing-card {
    padding: 40px 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid var(--primary);
}
.old-price {
    font-size: 20px;
    font-weight: 700;
    color: #666;
    margin-bottom: 10px;
}
.old-price del { color: var(--discount-red); font-size: 24px; font-weight: 800; }
.installments { font-size: 26px; font-weight: 800; }
.big-price { font-size: 58px; color: var(--primary); display: block; line-height: 1; margin: 10px 0;}
.cash-price { font-size: 18px; font-weight: 600; color: #444; }
.urgency-text { color: var(--discount-red); font-weight: 800; font-size: 16px; margin-top: 15px;}
.guarantee-seal { font-weight: 700; color: #444; font-size: 14px; display: inline-flex; align-items: center; gap: 8px;}
.guarantee-seal i { color: #f39c12; font-size: 20px; }

/* Author */
.lead-text {
    font-size: 18px;
    font-weight: 500;
    text-align: justify;
}
@media(min-width: 768px) {
    .lead-text { font-size: 22px; }
}

/* Testimonials */
.testimonials-swiper {
    padding-bottom: 40px;
}

/* Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: all 0.2s;
}
@media(min-width: 768px) { .accordion-header { font-size: 20px; } }

.accordion-header:hover { color: var(--primary); }
.accordion-header i { transition: transform 0.3s; color: var(--primary); font-size: 20px;}
.accordion-header.active i { transform: rotate(180deg); }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 10px;
}
.accordion-content p {
    padding-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
    color: #444;
}
