:root {
    /* Mom Friendly Palette - Clean, Airy, Warm */
    --primary: #4A90E2;
    /* Soft Calming Blue */
    --primary-light: #E3F2FD;
    --secondary: #FF6D00;
    /* Vibrant Orange for buttons */
    --secondary-hover: #E65100;

    --accent-green: #66BB6A;
    /* Soft Green for success checks */
    --text-main: #37474F;
    /* Dark Blue-Grey for text */
    --text-light: #F5F7FA;
    --text-muted: #78909C;

    --bg-body: #FFFFFF;
    --bg-light: #F5F7FA;
    /* Very light grey for alternate sections */
    --bg-dark: #37474F;
    /* Footer only */

    --shadow-soft: 0 10px 30px rgba(74, 144, 226, 0.1);
    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.08);

    --radius-l: 24px;
    --radius-m: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Notification Bar */
/* Notification Bar */
.notification-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #D50000 0%, #E65100 100%);
    /* Red to Orange Gradient */
    color: white;
    padding: 0.8rem 5%;
    font-weight: 800;
    z-index: 99999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    /* Ensure minimum height for mobile */
    min-height: 40px;

    /* Simplified Centering and Layout */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.notification-bar span {
    display: inline-block;
    padding: 0 5px;
    width: 100%;
    /* Full width for proper wrapping */
}

/* Blinking Animation Class */
.blink-text {
    animation: blink-animation 1.5s infinite ease-in-out;
}

@keyframes blink-animation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 40px;
    /* Space for the fixed bar */
}

h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    /* Changed to dark for light bg */
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    padding: 1rem;
    background: transparent;
}

/* Hero Section - Shifted to Light */
.hero {
    display: block;
    padding: 2rem 5% 6rem;
    background: linear-gradient(180deg, #F5F7FA 0%, #FFFFFF 100%);
    color: var(--text-main);
    text-align: center;
}

.hero-content.centered {
    max-width: 900px;
    margin: 0 auto;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-image-centered {
    margin: 2rem auto 3rem;
    max-width: 800px;
}

.hero-image-centered img {
    width: 100%;
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-soft);
    border: 8px solid white;
}

/* Buttons */
.btn-main {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    font-weight: 800;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    box-shadow: 0 10px 20px rgba(255, 109, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 109, 0, 0.5);
    background-color: var(--secondary-hover);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 109, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 109, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 109, 0, 0);
    }
}

/* Features Intro with Image Grid */
.features {
    padding: 6rem 5%;
    background: white;
}

.section-intro {
    display: flex;
    flex-direction: row;
    /* Force row direction */
    align-items: center;
    /* Vertical center alignment */
    justify-content: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: left;
}

.main-photo {
    width: 50%;
    /* Adjusted width for better balance */
    max-width: 500px;
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-soft);
}

.intro-text {
    flex: 1;
    /* Ensure text takes remaining space */
}

.intro-text .lead-text {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    /* Remove default margin */
}

/* Mini Photo Grid for flatlays */
.photo-grid-mini {
    max-width: 800px;
    margin: 0 auto 5rem;
    /* Increased spacing */
    display: flex;
    justify-content: center;
}

.photo-grid-mini img {
    max-height: 350px;
    /* Slightly larger */
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-card);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius-l);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: white;
    box-shadow: var(--shadow-card);
    transform: translateY(-5px);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    background: white;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* How It Works - With Side Image */
.how-it-works {
    padding: 6rem 5%;
    background: var(--primary-light);
    color: var(--text-main);
}

.how-it-works h2 {
    color: var(--primary);
}

.how-it-works-content {
    display: flex;
    flex-direction: row;
    /* Force row layout */
    align-items: center;
    /* Crucial vertical centering */
    justify-content: center;
    gap: 5rem;
    max-width: 1100px;
    margin: 4rem auto 0;
}

.how-img {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Center image within its flex item */
}

.how-img img {
    width: 100%;
    max-width: 450px;
    /* Prevent over-enlargement */
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-soft);
    border: 6px solid white;
}

.steps {
    flex: 1.2;
    /* Give slightly more space to steps text */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-m);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.step p {
    color: var(--text-main);
    margin-bottom: 0;
    font-weight: 600;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-arrow {
    display: none;
    /* Hidden in vertical layout */
}

/* Bonus Box */
/* Bonus Box */
.bonus-box {
    background: #FFF3E0;
    /* Soft Orange tint */
    border: 2px dashed var(--secondary);
    padding: 4rem 2rem 3rem;
    /* Increased top padding to clear badge */
    border-radius: var(--radius-l);
    text-align: center;
    position: relative;
    max-width: 800px;
    margin: 2rem auto 0;
}

.bonus-badge {
    position: absolute;
    top: -20px;
    /* Moves badge slightly higher */
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 0.8rem 2rem;
    /* slightly larger badge */
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(255, 138, 101, 0.4);
}

/* Testimonials */
.testimonials {
    padding: 6rem 5%;
    background: white;
}

.testimonials-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.illustration-mom {
    display: none;
    /* Removing illustration to focus on clean design or replace with photo if needed */
}

.testimonials-intro {
    display: none;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-l);
    position: relative;
}

.quote-icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #FBC02D;
    margin-top: 1rem;
}

/* Pricing */
.pricing {
    padding: 6rem 5%;
    text-align: center;
    background: linear-gradient(180deg, #FFFFFF 0%, #E3F2FD 100%);
}

.pricing-card {
    background: white;
    border: 3px solid var(--primary);
    color: var(--text-main);
    max-width: 500px;
    margin: 0 auto;
    padding: 4rem 2rem;
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-card);
    position: relative;
}

.pricing-card h3 {
    color: var(--primary);
}

.pricing-card p {
    color: var(--text-muted);
}

.ribbon {
    background: var(--secondary);
    color: white;
}

.price {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin: 2rem 0;
}

.currency {
    font-size: 2rem;
    vertical-align: super;
    color: var(--text-muted);
}

.guarantee {
    background: var(--bg-light);
    color: var(--text-main);
    padding: 1.5rem;
    border-radius: var(--radius-m);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: left;
    max-width: 500px;
    /* Match card width */
    margin: 2rem auto 0;
}

.guarantee i {
    color: var(--secondary);
    font-size: 2rem;
}

.guarantee div {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.guarantee strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 2px;
}

/* Large Button for consistency */
.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.5rem;
    width: 100%;
    max-width: 500px;
    margin-top: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: white;
    color: var(--text-muted);
    padding: 2rem 5%;
    text-align: center;
    border-top: 1px solid #eee;
}

/* Responsive */
/* Responsive */
@media (max-width: 900px) {

    .section-intro,
    .how-it-works-content,
    .testimonials-layout {
        flex-direction: column;
        text-align: center;
    }

    .how-img {
        order: -1;
        /* Image first on mobile */
        margin-bottom: 2rem;
    }

    .main-photo {
        width: 100%;
    }

    .hero-image-centered {
        margin: 1.5rem 0 2rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    /* Mobile Fix for Notification Bar */
    .notification-bar {
        position: fixed;
        /* Force fixed */
        font-size: 0.7rem;
        /* Smaller text */
        padding: 0.75rem 0.5rem;
        /* Better padding for multi-line text */
        min-height: 50px;
        /* Ensure enough height for wrapped text */
        line-height: 1.4;
        /* Better readability */
    }

    body {
        padding-top: 80px;
        /* More space for multi-line bar */
    }

    /* Increasing text size for checklists in mobile */
    .offer-feature-item {
        font-size: 1.2rem;
        gap: 1rem;
    }

    .offer-feature-item i {
        font-size: 1.5rem;
    }
}

/* Hero Offer Price */
/* Hero Offer Price Updated */
.hero-offer {
    margin: 3rem auto 2rem;
    padding: 2.5rem 1.5rem 1.5rem;
    background: white;
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-card);
    max-width: 400px;
    border: 2px solid #FF6D00;
    /* Orange Border */
    position: relative;
    text-align: center;
}

.best-seller-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6D00;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(255, 109, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.best-seller-badge .stars {
    color: #FFD700;
    font-size: 0.8rem;
    margin-bottom: 2px;
    margin-top: 0;
}

.hero-offer h3 {
    color: #000;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-offer .old-price {
    display: block;
    color: #78909C;
    font-size: 1.2rem;
    text-decoration: line-through;
    margin-bottom: -5px;
}

.hero-offer .new-price {
    display: block;
    color: #FF6D00;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 0.5rem 0;
}

.payment-text {
    display: block;
    color: #78909C;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.savings-pill {
    background-color: #E0F2F1;
    /* Soft Green */
    color: #00695C;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 5%;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-main);
    /* Deep Blue/Dark Color */
}

.faq-item {
    background: var(--bg-light);
    /* Light blue/gray background */
    margin-bottom: 1rem;
    border-radius: var(--radius-m);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-item.active {
    background: #E3F2FD;
    /* Slightly darker blue when active */
    border-color: var(--primary-light);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 300px;
    /* Arbitrary large height */
}

/* Offer Feature List */
.offer-features {
    margin-top: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.offer-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1.15rem;
    color: var(--text-main);
    line-height: 1.3;
}

.offer-feature-item i {
    color: #00C853;
    /* Bright Green */
    font-size: 1.35rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Final Guarantee Section */
.guarantee-final-section {
    padding: 2rem 5% 6rem;
    background: white;
}

.guarantee-card-large {
    background: #FFFCFB;
    /* Very subtle warm white */
    border: 1px solid #FFCCBC;
    /* Light orange border */
    border-radius: 30px;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 138, 101, 0.1);
}

.shield-icon-large {
    width: 80px;
    height: 80px;
    background: #FFF3E0;
    color: #FF6D00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.guarantee-card-large h2 {
    font-size: 2.2rem;
    color: #000;
    /* Changed to Black */
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.guarantee-card-large p {
    color: #546E7A;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.guarantee-card-large strong {
    color: #000;
    font-weight: 800;
}

.btn-warning {
    background-color: #FF6D00;
    /* Strong Orange */
    color: white;
    box-shadow: 0 5px 15px rgba(255, 109, 0, 0.3);
}

.btn-warning:hover {
    background-color: #E65100;
    transform: translateY(-3px);
}

/* Purchase Notification Popup */
.purchase-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #FF8A65 0%, #FF7043 100%);
    /* Orange gradient */
    color: #000;
    /* Black text */
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(255, 138, 101, 0.4);
    z-index: 9999;
    opacity: 0;
    transform: translateX(-400px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 280px;
    max-width: 320px;
}

.purchase-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.purchase-notification.hide {
    opacity: 0;
    transform: translateX(-400px);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.notification-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    line-height: 1.3;
}

.notification-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
}

.notification-text span {
    font-size: 0.85rem;
    color: #1a1a1a;
    font-weight: 500;
}

/* Mobile adjustments for notification */
@media (max-width: 768px) {
    .purchase-notification {
        left: 15px;
        bottom: 15px;
        min-width: 260px;
        max-width: calc(100% - 30px);
        padding: 0.9rem 1.2rem;
    }

    .notification-text strong {
        font-size: 0.95rem;
    }

    .notification-text span {
        font-size: 0.8rem;
    }

    .notification-icon {
        font-size: 1.8rem;
    }
}

/* Countdown Timer */
.countdown-timer {
    background: linear-gradient(135deg, #D32F2F 0%, #FF6D00 100%);
    /* Red to Orange gradient */
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
    text-align: center;
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.countdown-header i {
    font-size: 1.3rem;
    animation: bell-ring 2s infinite;
}

@keyframes bell-ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-15deg);
    }

    20%,
    40% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

.countdown-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.time-unit {
    background: rgba(255, 255, 255, 0.25);
    /* Semi-transparent white */
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.time-value {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.time-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    margin-top: 0.3rem;
    letter-spacing: 1px;
}

.time-separator {
    font-size: 2.5rem;
    color: white;
    font-weight: 800;
    margin: 0 0.2rem;
}

/* Mobile adjustments for countdown */
@media (max-width: 768px) {
    .countdown-timer {
        padding: 1.2rem 1rem;
        margin: 1.5rem auto;
        border-radius: 16px;
    }

    .countdown-header {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .countdown-header i {
        font-size: 1.1rem;
    }

    .countdown-display {
        gap: 0.5rem;
    }

    .time-unit {
        padding: 0.8rem 1rem;
        min-width: 70px;
        border-radius: 10px;
    }

    .time-value {
        font-size: 2.2rem;
    }

    .time-label {
        font-size: 0.65rem;
    }

    .time-separator {
        font-size: 1.8rem;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .time-unit {
        padding: 0.6rem 0.7rem;
        min-width: 60px;
    }

    .time-value {
        font-size: 1.8rem;
    }

    .time-label {
        font-size: 0.6rem;
    }

    .time-separator {
        font-size: 1.5rem;
    }
}