:root {
    --caramel: #C97D3A;
    --cream: #FFF8F0;
    --gold: #E8B86D;
    --brown: #3D1A00;
    --blush: #FAE8D5;
    
    --bg-color: var(--cream);
    --text-color: var(--brown);
    
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --border-radius: 12px;
    --shadow: 0 8px 24px rgba(61, 26, 0, 0.08);
}

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

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--brown);
    line-height: 1.3;
}

/* Container */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

/* Typography & Utilities */
.highlight {
    color: var(--gold);
    font-weight: 700;
}

.center {
    text-align: center;
}

/* Buttons */
.cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--caramel));
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(201, 125, 58, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 20px;
}

.cta-button:active {
    transform: scale(0.98);
}

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

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(201, 125, 58, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(201, 125, 58, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 125, 58, 0); }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- General Carousel Styles --- */
.hero-carousel, .testimonial-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.hero-carousel .carousel-slide {
    width: 100%;
    border-radius: var(--border-radius);
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dots .dot.active {
    background: var(--gold);
}

.testimonial-slider {
    background: #fff;
    padding-bottom: 40px; /* Space for dots */
}

.testimonial-slider .carousel-dots {
    bottom: 15px;
}

.testimonial-slider .carousel-dots .dot {
    background: #ccc;
}

.testimonial-slider .carousel-dots .dot.active {
    background: var(--caramel);
}

/* --- Section 1: Hero --- */
.hero {
    text-align: center;
    padding-top: 40px;
    background: linear-gradient(to bottom, #ffffff, var(--blush));
}

.hero .headline {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.hero .subheadline {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.hero .sub-copy {
    font-style: italic;
    color: var(--caramel);
    margin-bottom: 20px;
}

.price-block {
    margin: 20px 0;
}

.strikethrough {
    text-decoration: line-through;
    color: #888;
    font-size: 0.9rem;
    display: block;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--caramel);
}

.price-block.large .current-price {
    font-size: 2.5rem;
}

.sub-cta {
    font-size: 0.85rem;
    color: var(--caramel);
    margin-top: 10px;
    margin-bottom: 30px;
}

.hero-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.social-proof-bar {
    font-size: 0.85rem;
    color: var(--caramel);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.6);
    padding: 10px;
    border-radius: 20px;
    display: inline-block;
}

/* --- Section 2: Method Overview --- */
.method-overview {
    text-align: center;
    background-color: #fff;
}

.method-overview h2 {
    margin-bottom: 15px;
}

.mockup-image {
    width: 80%;
    max-width: 300px;
    margin: 30px auto;
    display: block;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.platforms {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

/* --- Section 3: 5-Step Method --- */
.five-steps {
    background-color: var(--blush);
}

.five-steps .subtitle {
    margin-bottom: 30px;
}

.step-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-cards .card {
    background: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    border-left: 4px solid var(--caramel);
}

.step-cards .number {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.step-cards h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* --- Section 4: Recipe List --- */
.recipes {
    background-color: #fff;
}

.recipes .subtitle {
    margin-bottom: 30px;
}

.recipe-blocks {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recipe-block {
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.recipe-header {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
}

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

.recipe-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* --- Section 5: Feature Bullets --- */
.features {
    background-color: var(--cream);
}

.checklist {
    list-style: none;
    margin-bottom: 30px;
}

.checklist li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.checklist .icon {
    margin-right: 10px;
}

.callout-box {
    background: linear-gradient(135deg, var(--gold), var(--caramel));
    color: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-align: center;
    box-shadow: var(--shadow);
}

/* --- Section 6: Bonuses --- */
.bonuses {
    background-color: #fff;
    text-align: center;
}

.bonuses h2 {
    margin-bottom: 10px;
}

.bonuses .subtitle {
    margin-bottom: 30px;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bonus-badge {
    background: var(--blush);
    padding: 15px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: left;
    border: 1px solid rgba(201, 125, 58, 0.2);
}

.bonus-badge.special {
    background: var(--brown);
    color: var(--gold);
    text-align: center;
    font-size: 1.1rem;
}

/* --- Section 7: Testimonials --- */
.testimonials {
    background-color: var(--blush);
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 30px;
}

.testimonial-card {
    padding: 20px;
    text-align: left;
    display: flex;
    align-items: center;
}

.testimonial-card .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--gold);
}

.testimonial-card .stars {
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.testimonial-card h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    font-family: var(--font-body);
}

.testimonial-card .handle {
    font-size: 0.8rem;
    color: #666;
    display: block;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 0.95rem;
    font-style: italic;
}

/* --- Section 8: Pricing --- */
.pricing {
    background-color: #fff;
}

.pricing-card {
    background: var(--cream);
    border: 2px solid var(--gold);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.pricing-card .label {
    background: var(--caramel);
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-card h2 {
    margin-bottom: 15px;
}

.sub-copy.special {
    color: var(--brown);
    font-weight: 700;
    margin-bottom: 20px;
}

.includes-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.includes-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.guarantee {
    font-size: 0.8rem;
    color: #666;
    margin-top: 15px;
}

/* --- Section 9: FAQ --- */
.faq {
    background-color: var(--blush);
}

.faq h2 {
    text-align: center;
    margin-bottom: 30px;
}

.accordion-item {
    background: #fff;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(61, 26, 0, 0.05);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background: none;
    border: none;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--brown);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--caramel);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    content: '−';
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    background-color: #fff;
}

.accordion-item.active .accordion-content {
    padding-bottom: 15px;
}

/* --- Section 10: Footer --- */
.footer {
    background-color: var(--brown);
    color: var(--cream);
    text-align: center;
    padding: 40px 20px;
}

.footer p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    margin-bottom: 15px;
    font-size: 0.8rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-small-text {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
    opacity: 0.6 !important;
    margin-bottom: 10px !important;
}

/* --- Sticky CTA --- */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(100%);
    opacity: 0;
}

.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-cta .cta-button {
    margin-top: 0;
}

/* Desktop Fixes (Although mobile first) */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
    .hero .headline {
        font-size: 3rem;
    }
    .hero .subheadline {
        font-size: 1.3rem;
    }
    .recipe-tabs-container {
        justify-content: center;
    }
    .testimonial-carousel {
        justify-content: center;
    }
}
