/* Global Styles */
:root {
    --primary-color: #05c46b;
    /* Vibrant Green */
    --primary-dark: #03a056;
    --accent-color: #ff9f43;
    /* Vibrant Orange for CTA */
    --text-color: #2d3436;
    --bg-light: #f7f9fa;
    --bg-white: #ffffff;
    --dark-section: #1e272e;
    --text-light: #ecf0f1;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e3f9e5 0%, #ffffff 100%);
    padding: 80px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.badge {
    background-color: rgba(5, 196, 107, 0.1);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: var(--primary-color);
}

.hero .subtitle {
    font-size: 1.25rem;
    color: #636e72;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-image-placeholder {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.hero-image-placeholder img {
    margin: 0 auto;
    max-width: 400px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.hero-image-placeholder img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Custom Shape Divider */
.custom-shape-divider-bottom-1678123456 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom-1678123456 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.custom-shape-divider-bottom-1678123456 .shape-fill {
    fill: var(--bg-white);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-color), #ff6b6b);
    color: white;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(255, 159, 67, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 159, 67, 0.5);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 67, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 159, 67, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 67, 0);
    }
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--text-color);
}

.underline {
    width: 80px;
    height: 4px;
    background-color: #ff6b6b;
    /* Red warning colour */
    margin: 10px auto 0;
    border-radius: 2px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.problem-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid #f1f2f6;
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b6b;
}

.problem-card i {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.problem-summary {
    text-align: center;
    font-size: 1.3rem;
    background-color: #ffeaa7;
    padding: 20px;
    border-radius: var(--radius);
    color: #d35400;
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background-color: #f1f8e9;
    /* Very light green */
    position: relative;
}

.row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.col-text {
    flex: 1;
}

.col-img {
    flex: 1;
    text-align: center;
}

.col-text h2 {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.col-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    margin: 20px 0;
}

.benefits-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.benefits-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.3rem;
}

.image-box {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: inline-block;
    position: relative;
}

.image-box i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.image-box span {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-color);
}

.solution-img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.solution-img:hover {
    transform: scale(1.02);
}

.highlight-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-top: 20px;
}

/* Method Section */
.method {
    padding: 80px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.method h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.step-card {
    position: relative;
    padding: 40px 20px;
    background: #fafafa;
    border-radius: var(--radius);
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Content Preview (Categories) */
.content-preview {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f1f2f6 100%);
    text-align: center;
}

.section-desc {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 50px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.category-card {
    background: white;
    padding: 30px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(5, 196, 107, 0.1);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.sweet-highlight {
    background: #fff0f6;
    /* Light pink */
    padding: 40px;
    border-radius: 20px;
    border: 2px dashed #ffc0cb;
    margin-top: 40px;
}

.sweet-highlight h3 {
    color: #e84393;
    font-size: 1.8rem;
}

/* Bonuses */
.bonuses {
    padding: 80px 0;
    background-color: var(--primary-dark);
    color: white;
    text-align: center;
}

.bonuses h2 {
    color: #ffd700;
    /* Gold */
    margin-bottom: 50px;
}

.bonus-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus-item h4 {
    color: #ffd700;
    margin-bottom: 10px;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    text-align: center;
    background-color: var(--bg-white);
}

.pricing-card {
    background: white;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    border: 3px solid var(--primary-color);
}

.pricing-header {
    background-color: var(--primary-color);
    color: white;
    padding: 30px;
}

.pricing-header p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.price-box {
    padding: 40px 0 20px;
    color: var(--text-color);
}

.price-box .currency {
    font-size: 2rem;
    vertical-align: top;
    font-weight: 600;
}

.price-box .amount {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.price-box .payment-type {
    display: block;
    color: #636e72;
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    padding: 0 40px 40px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f2f6;
    color: var(--text-color);
}

.pricing-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.primary-btn {
    width: 80%;
    margin-bottom: 20px;
}

.secure-msg {
    font-size: 0.9rem;
    color: #636e72;
    margin-bottom: 30px;
}

/* Guarantee */
.guarantee {
    background-color: #f1f8e9;
    padding: 60px 0;
}

.guarantee-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-box i {
    font-size: 4rem;
    color: var(--primary-dark);
}

/* FAQ */
.faq {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #fafafa;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
    color: #636e72;
}

.faq-answer p {
    padding: 20px;
    padding-top: 0;
    border-top: 1px solid transparent;
}

.faq-question.active i {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background-color: #2d3436;
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

footer p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

footer .copyright {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .row {
        flex-direction: column;
        text-align: center;
    }

    .pricing-card {
        margin: 0 20px;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}

/* Recipe Carousel */
.recipe-carousel-container {
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
    padding: 20px 0;
    position: relative;
}

.recipe-carousel-container::before,
.recipe-carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.recipe-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), transparent);
}

.recipe-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.8), transparent);
}

.recipe-carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.recipe-carousel-track:hover {
    animation-play-state: paused;
}

.recipe-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    width: 200px;
    transition: transform 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-5px);
}

.recipe-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.recipe-info {
    padding: 10px;
    text-align: left;
}

.recipe-info h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 700;
}

.recipe-info span {
    font-size: 0.8rem;
    color: #636e72;
    background-color: #f1f2f6;
    padding: 3px 8px;
    border-radius: 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 6 - 20px * 6));
    }
}

/* Top Banner */
.top-banner {
    background-color: #d63031;
    /* Strong Red for urgency */
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 100;
}

.top-banner p {
    margin: 0;
    animation: flash 3s infinite;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Social Proof Notification */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 5px solid var(--primary-color);
    max-width: 320px;
}

.notification-container.show {
    transform: translateY(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding-right: 20px;
}

.notification-content img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.notification-text p {
    margin: 0;
    line-height: 1.3;
    font-size: 0.9rem;
}

.notification-name {
    font-weight: 700;
    color: var(--text-color);
}

.notification-product {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.85rem !important;
}

.notification-time {
    font-size: 0.75rem !important;
    color: #95a5a6;
}

.close-notification {
    position: absolute;
    top: -10px;
    right: -10px;
    background: transparent;
    border: none;
    color: #bdc3c7;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
}

.close-notification:hover {
    color: var(--text-color);
}

/* Image Side-by-Side Row */
.hero-image-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.hero-img-wrapper {
    flex: 0 1 400px;
}

.hero-img-main {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.hero-img-secondary {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
    border: 5px solid white;
}

.hero-img-main:hover,
.hero-img-secondary:hover {
    transform: rotate(0) scale(1.02);
    z-index: 10;
}

@media (max-width: 768px) {
    .hero-image-row {
        gap: 15px;
    }

    .hero-img-main,
    .hero-img-secondary {
        transform: none;
    }
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 50px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fafafa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Recipe Showcase Section */
.recipe-showcase {
    padding: 80px 0;
    background-color: #f8fff9;
    /* Light mint background */
}

.recipe-showcase h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    text-align: center;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.showcase-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.showcase-img {
    height: 200px;
    overflow: hidden;
}

.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-img img {
    transform: scale(1.1);
}

.showcase-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.showcase-content h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.ingredients-list {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-grow: 1;
    /* Pushes content down */
}

.ingredients-list span {
    background-color: #f1f8e9;
    color: #2d3436;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #c8e6c9;
}

.user-note {
    background-color: #fff9c4;
    /* Pale yellow */
    padding: 15px;
    border-radius: 10px;
    position: relative;
    margin-top: auto;
}

/* Little triangle for speech bubble effect if desired, mostly just a box here */
.user-note p {
    font-style: italic;
    font-size: 0.95rem;
    color: #d35400;
    margin: 0;
}

.note-stars {
    color: #f1c40f;
    font-size: 1rem;
    margin-bottom: 5px;
}