        ::-webkit-scrollbar {
            display: none;
        }

        * {
            scrollbar-width: none;
        }
        :root {
            --red: #e63329;
            --green: #4a7c3f;
            --light-green: #6aab5e;
            --orange: #f5873a;
            --dark: #1e1e1e;
            --gray-bg: #f7f5f0;
            --coral: #FF9393;
            --brown: #570907;
            /* Choose Plan Variables */
            --primary-green: #006838;
            --plan-light-green: #e6f3ed;
            --border-color: #e0e0e0;
            --text-muted: #6c757d;
            --red-light: #fbe9e8;
            --red-dark: #b71c1c;
        }


/* Plan Options */
.plan-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 24px;
}

.plan-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.plan-card.popular {
    border-color: var(--red-dark);
    border-width: 2px;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--red-dark);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.plan-info h4 {
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.plan-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.btn-choose-plan {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--red-dark);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-choose-plan:hover {
    background-color: var(--red-dark);
}



        /* Person Options */
        .person-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .person-card {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            text-decoration: none;
            color: var(--dark);
            transition: all 0.3s ease;
        }

        .person-card:hover,
        .person-card.selected {
            border-color: var(--red);
            background-color: var(--red-light);
        }

        .person-card.selected {
            background-color: var(--red-dark);
            color: #fff;
        }

        .person-icon-wrapper {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--red-light);
            flex-shrink: 0;
        }

        .person-icon-wrapper i {
            font-size: 24px;
            color: var(--red-dark);
        }

        .person-card.selected .person-icon-wrapper {
            background-color: #fff;
        }

        .person-card.selected .person-icon-wrapper i {
            color: var(--red-dark);
        }

        .person-info h4 {
            font-family: var(--font-body, 'Instrument Sans', sans-serif);
            font-weight: 600;
            font-size: 1rem;
            margin: 0;
        }

        .person-card.selected .person-info h4 {
            color: #fff;
        }



        /* Meal Options */
        .meal-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .meal-card {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 20px;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            text-decoration: none;
            color: var(--dark);
            transition: all 0.3s ease;
        }

        .meal-card:hover,
        .meal-card.selected {
            border-color: var(--red);
            background-color: var(--red-light);
        }

        .meal-card.selected {
            background-color: var(--red-dark);
            color: #fff;
        }

        .meal-icons-group {
            display: flex;
            gap: 5px;
            flex-shrink: 0;
        }

        .meal-icon-wrapper {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--red-light);
            flex-shrink: 0;
        }

        .meal-icon-wrapper i {
            font-size: 24px;
            color: var(--red-dark);
        }

        .meal-card.selected .meal-icon-wrapper {
            background-color: #fff;
        }

        .meal-card.selected .meal-icon-wrapper i {
            color: var(--red-dark);
        }

        .meal-info h4 {
            font-family: var(--font-body, 'Instrument Sans', sans-serif);
            font-weight: 600;
            font-size: 1rem;
            margin: 0;
            padding-left: 8px;
        }

        .meal-card.selected .meal-info h4 {
            color: #fff;
        }
        /* Figma - rounded dish images */
        .meal-image-wrapper {
            border-radius: 12px 12px 0 0;
            overflow: hidden;
        }



        * {
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body, 'Instrument Sans', sans-serif);
            color: var(--dark);
            background: #fff;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        .brand-font {
            font-family: var(--font-heading, 'Sailor', sans-serif);
        }

        /* ── NAVBAR ── */
        .navbar-top {
            background: #FEF0E5;
            border-bottom: none;
            padding: 8px 0;
            min-height: 64px;
        }

        .navbar-top .nav-link {
            font-family: var(--font-body, 'Instrument Sans', sans-serif);
            color: #1F2937 !important;
            font-size: 20px;
            font-weight: 400;
            padding: 8px 16px;
            line-height: 24px;
        }

        .navbar-top .nav-link:hover {
            color: #FB6E36 !important;
        }
        .navbar-top .btn-signin {
            font-family: var(--font-body, 'Instrument Sans', sans-serif);
            font-size: 14px;
            font-weight: 400;
            color: #FB6E36;
            background: transparent;
            border: 1px solid #FB6E36;
            border-radius: 12px;
            padding: 8px 20px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 40px;
            white-space: nowrap;
        }

        .navbar-top .btn-order {
            font-family: var(--font-body, 'Instrument Sans', sans-serif);
            font-size: 14px;
            font-weight: 400;
            color: #FEF0E5;
            background: #FB6E36;
            border: none;
            border-radius: 12px;
            padding: 8px 20px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 40px;
            cursor: pointer;
            white-space: nowrap;
        }

        .navbar-top .btn-order:hover {
            background: #e85e28;
            color: #FEF0E5;
        }

        .navbar-top .btn-signin:hover {
            background: #FB6E36;
            color: #FEF0E5;
        }

        .navbar-logo {
            width: 56px;
            height: auto;
            display: block;
        }

        /* Cart icon */
        .navbar-top .cart-icon-wrapper {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #1F2937;
            text-decoration: none;
            width: 36px;
            height: 36px;
        }

        .navbar-top .cart-icon-wrapper:hover {
            color: #FB6E36;
        }

        /* Responsive adjustments for navbar */
        @media (max-width: 991px) {
            .navbar-top .navbar-collapse {
                background: #FEF0E5;
                padding: 15px 0;
                border-top: 1px solid rgba(0,0,0,0.05);
                margin-top: 10px;
            }
            .navbar-top .navbar-right {
                margin-top: 15px;
                justify-content: flex-start !important;
            }
            .navbar-top .nav-link {
                padding-left: 0;
            }
        }
        /* ── HERO ── */
        .hero-section {
            position: relative;
            height: 520px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        /* Red curve background image */
        .hero-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            object-fit: cover;
            z-index: 1;
        }

        /* Content */
        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: #fff;
        }

        .hero-content h1 {
            font-size: 30px;
            font-weight: 600;
        }

        .hero-content .btn {
            background: #2e7d32;
            border: none;
            padding: 10px 22px;
            border-radius: 30px;
            margin-top: 15px;
        }

        /* Food images */
        .hero-img {
            position: absolute;
            width: 350px;
            z-index: 2;
        }

        .hero-left {
            left: 0;
            top: 40px;
        }

        .hero-right {
            right: 0;
            bottom: 30px;
        }

        /* Responsive */
        @media(max-width:768px) {
            .hero-section {
                height: 300px;
            }

            .hero-img {
                width: 120px;
            }

            .hero-content h1 {
                font-size: 20px;
            }
        }

        /* ── ABOUT ── */
        /* About */
        .about-img {
            border-radius: 20px;
        }

        /* Subscribe */
        .subscribe-box {
            background: #1f5e3b;
            padding: 30px;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .subscribe-form input {
            border-radius: 30px;
            padding: 10px 20px;
        }

        .subscribe-form button {
            border-radius: 30px;
            background: #f37021;
            border: none;
        }

        /* Bowl image */
        .subscribe-img {
            position: absolute;
            right: -30px;
            bottom: -40px;
            width: 220px;
        }

        /* Responsive */
        @media(max-width:768px) {
            .subscribe-img {
                position: relative;
                right: 0;
                bottom: 0;
                margin-top: 20px;
                width: 150px;
            }

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

            .subscribe-form {
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }
        }

        /* ── NEWSLETTER ── */
        .newsletter-section {
            background-color: #2f6f4f;
            border-radius: 12px;
            padding: 40px;
            position: relative;

        }

        .newsletter-title {
            font-weight: 700;
            font-size: 28px;
            color: #ffffff;
        }

        .newsletter-text {
            color: #d8f3dc;
            margin-bottom: 20px;
        }

        .newsletter-input {
            border-radius: 6px 0 0 6px;
            border: none;
            padding: 12px;
            width: 380px;
        }

        .newsletter-btn {
            background-color: #f97316;
            border: none;
            color: #fff;
            padding: 12px 20px;
            border-radius: 0 6px 6px 0;
            font-weight: 500;
        }

        .newsletter-btn:hover {
            background-color: #ea580c;
        }

        .newsletter-image {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 300px;
            border-radius: 50%;
        }

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

            .newsletter-section .col-md-8 {
                width: 100%;
                max-width: 100%;
                flex: 0 0 100%;
            }

            .newsletter-form.d-flex {
                flex-direction: column;
                width: 100%;
                gap: 15px;
            }

            .newsletter-input {
                width: 100%;
                border-radius: 6px;
                margin-bottom: 0;
            }

            .newsletter-btn {
                width: 100%;
                border-radius: 6px;
            }

            .newsletter-image {
                position: static;
                transform: none;
                display: block;
                margin: 30px auto 0;
                width: 220px;
            }
        }

     /* ===============================
   HOW IT WORKS
=================================*/
.how-it-works {
    padding: 60px 0;
    background: #ffffff;
}

.hiw-title {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    font-size: 36px;
    font-weight: 400;
    color: #1F2937;
    margin-bottom: 32px;
}

.how-it-works-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hiw-text-row {
    display: flex;
    justify-content: space-around;
    max-width: 900px;
    margin: 24px auto 0;
}

.hiw-text-item {
    width: 30%;
    text-align: center;
}

.hiw-step-title {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    font-size: 20px;
    font-weight: 400;
    color: #1F2937;
    margin-bottom: 8px;
}

.hiw-step-text {
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-size: 15px;
    color: #4B5563;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .hiw-text-row {
        flex-direction: column;
        gap: 24px;
    }

    .hiw-text-item {
        width: 100%;
    }
}


        /* ===============================
   WEEKLY MENU
=================================*/

        .weekly-menu {

            padding: 80px 0;
        }

        .menu-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
        }

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

        .menu-card:hover {
            transform: translateY(-5px);
        }

        /* MOBILE */
        @media(max-width:768px) {
            .step {
                position: static;
                margin-bottom: 40px;
            }
        }

        /* ── CONTACT ── */
.contact-section {
    background: #ffffff;
    padding: 70px 0;
}

.contact-title {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    font-size: 48px;
    font-weight: 400;
    color: #1F2937;
    text-align: center;
    margin-bottom: 12px;
}

.contact-subtitle {
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-size: 20px;
    color: #1F2937;
    text-align: center;
    margin-bottom: 40px;
}

.contact-label {
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-size: 18px;
    color: #4B5563;
    display: block;
    margin-bottom: 8px;
}

.contact-input {
    width: 100%;
    height: 65px;
    background: #FFFFFF;
    border: 1px solid #9CA3AF;
    border-radius: 16px;
    padding: 0 16px;
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-size: 16px;
    color: #1F2937;
    outline: none;
}

.contact-input:focus {
    border-color: #FB6E36;
    box-shadow: 0 0 0 3px rgba(251, 110, 54, 0.12);
}

.contact-textarea {
    height: 200px;
    padding: 16px;
    resize: none;
}

.contact-submit-btn {
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
    font-size: 16px;
    font-weight: 500;
    background: #FB6E36;
    color: #FEF0E5;
    border: none;
    border-radius: 12px;
    padding: 12px 48px;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-submit-btn:hover {
    background: #e85e28;
}

        /* ── FOOTER ── */
        .site-footer {
            background: var(--coral);
            color: var(--brown);
            padding: 50px 0 20px;
        }

        .site-footer h5 {
            color: var(--brown);
            font-size: 1rem;
            margin-bottom: 16px;
        }

        .site-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer ul li {
            margin-bottom: 8px;
        }

        .site-footer ul li a {
            color: var(--brown);
            text-decoration: none;
            font-size: .87rem;
            transition: color .2s;
        }

        .site-footer ul li a:hover {
            color: var(--orange);
        }

        .site-footer .footer-brand {
            font-family: var(--font-heading, 'Sailor', sans-serif);
            font-size: 1.5rem;
            color: var(--red);
        }

        .site-footer .footer-bottom {
            border-top: 1px solid var(--brown);
            margin-top: 36px;
            padding-top: 18px;
            font-size: .8rem;
            color: var(--brown);
            text-align: center;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: var(--brown);
            border-radius: 8px; /* changed from 50% */
            color: var(--gray-bg);
            font-size: 1.6rem;
            margin-right: 8px;
            text-decoration: none;
            transition: background .2s, color .2s;
        }

        .social-icon:hover {
            background: var(--red);
            color: #fff;
        }


        /* ── UTILITIES ── */
        .section-tag {
            display: inline-block;
            background: var(--orange);
            color: var(--brown);
            font-family: var(--font-heading, 'Sailor', sans-serif);
            font-size: .78rem;
            letter-spacing: .05em;
            padding: 4px 14px;
            border-radius: 30px;
            margin-bottom: 12px;
        }

        /* ── CHOOSE PLAN ── */
        .choose-plan-section {
            padding: 60px 0;
            background-color: #fff;
        }

        .choose-plan-section .container {
            max-width: 1320px;
        }

        .image-sidebar {
            width: 100%;
            display: flex;
            position: sticky;
            top: 40px;
            /* Align with the top padding of the form content */
            align-items: flex-start;
            /* Align to the top of its sticky container */
            justify-content: center;
            z-index: 10;
        }

        .sidebar-img {
            width: 100%;
            height: auto;
            max-height: 650px;
            object-fit: cover;
            border-radius: 24px;
        }

        .form-content {
            padding: 20px 40px;
            display: flex;
            flex-direction: column;
            align-items: stretch;
        }

        .stepper-container {
            width: 100%;
            max-width: 1100px;
            margin-bottom: 50px;
        }

        .stepper {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            width: 100%;
            position: relative;
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 1;
            flex: 1;
            cursor: pointer;
        }

        .step-icon-circle {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            color: #ced4da;
            font-size: 1.5rem;
            transition: all 0.3s;
            z-index: 2;
            /* Increased z-index */
            position: relative;
            border: 1px solid #eee;
        }

        .step.active .step-icon-circle {
            background-color: var(--red);
            border-color: var(--red);
            color: #fff;
        }

        .step.completed .step-icon-circle {
            background-color: var(--red-light);
            border-color: var(--red-light);
            color: var(--red-dark);
        }

        .step-label {
            font-size: 0.8rem;
            color: #adb5bd;
            font-weight: 500;
        }

        .step.active .step-label {
            color: #343a40;
            font-weight: 600;
        }


        .header-section {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 40px;
            width: 100%;
            max-width: 1100px;
        }

        .title-group h1 {
            font-family: var(--font-heading, 'Sailor', sans-serif);
            font-size: 3.2rem;
            margin-bottom: 5px;
            color: #1a1a1a;
            letter-spacing: -1px;
        }

        .title-group p {
            color: #868e96;
            font-size: 1rem;
            margin-bottom: 0;
        }

        .skip-btn,
        .back-btn {
            border: 1.5px solid var(--red);
            color: var(--red);
            border-radius: 50px;
            padding: 6px 28px;
            font-size: 0.9rem;
            background: transparent;
            font-weight: 700;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-block;
        }

        .skip-btn:hover,
        .back-btn:hover {
            background: var(--red);
            color: #fff;
        }

        .back-btn {
            background: var(--red);
            color: #fff;
            border-color: var(--red);
            margin-right: 10px;
        }


        .btn-group-nav {
            display: flex;
            align-items: center;
        }

        .goal-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            width: 100%;
            max-width: 850px;
        }

        .goal-card {
            border: 1.5px solid #eee;
            border-radius: 20px;
            padding: 24px;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            color: inherit;
            background: #fff;
            position: relative;
            overflow: hidden;
            min-height: 110px;
        }

        .goal-card:hover {
            border-color: #ddd;
            transform: translateY(-2px);
        }

        .goal-card.selected {
            background-color: var(--red-dark);
            /* Darker red from image */
            border-color: var(--red-dark);
            color: #fff;
        }

        .goal-icon-wrapper {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--red);
            font-size: 1.4rem;
            border: 1px solid #eee;
            flex-shrink: 0;
            z-index: 2;
        }

        .goal-card.selected .goal-icon-wrapper {
            background: #fff;
            color: var(--red-dark);
            border-color: #fff;
        }

        .goal-info {
            z-index: 2;
            flex: 1;
            padding-right: 10px;
        }

        .goal-info h4 {
            font-size: 1.2rem;
            margin-bottom: 2px;
            color: #1a1a1a;
        }

        .goal-info p {
            margin-bottom: 0;
            font-size: 0.85rem;
            color: #868e96;
        }

        .goal-card.selected .goal-info h4,
        .goal-card.selected .goal-info p {
            color: #fff;
        }

        /* Food image in selected card */
        .card-food-img {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 40%;
            object-fit: cover;
            display: none;
            z-index: 1;
        }

        .goal-card.selected .card-food-img {
            display: block;
        }

        /* Overlay for image in selected card to fade text better */
        .goal-card.selected::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, var(--red-dark) 60%, transparent);
            z-index: 1;
            display: none;
        }

        .goal-card.selected::after {
            display: block;
        }

        @media (max-width: 1200px) {
            .image-sidebar {
                width: 32%;
                padding: 20px;
            }

            .form-content {
                padding: 40px;
            }
        }

        @media (max-width: 992px) {
            .image-sidebar {
                display: none;
            }

            .form-content {
                padding: 40px 20px;
            }
        }

        @media (max-width: 768px) {
            .goal-options, 
            .person-options, 
            .meal-options, 
            .plan-options {
                grid-template-columns: 1fr !important;
                gap: 12px;
            }

            .header-section {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                margin-bottom: 25px;
            }

            .btn-group-nav {
                width: 100%;
                justify-content: flex-start;
                gap: 10px;
            }

            .skip-btn, .back-btn {
                flex: 0 1 auto;
                padding: 6px 20px;
                text-align: center;
                font-size: 0.85rem;
            }

            .title-group h1 {
                font-size: 2rem;
                line-height: 1.2;
                margin-bottom: 8px;
            }

            .title-group p {
                font-size: 0.9rem;
            }

            .stepper-container {
                margin-bottom: 25px;
            }

            .step-icon-circle {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
                margin-bottom: 5px;
            }

            .step-label {
                font-size: 0.65rem;
            }

            .form-content {
                padding: 15px 10px;
            }

            .goal-card, .person-card, .meal-card {
                padding: 15px;
                min-height: auto;
            }

            .goal-info h4, .person-info h4, .meal-info h4 {
                font-size: 1rem;
            }

            .goal-info p {
                font-size: 0.8rem;
            }

            .goal-icon-wrapper, .person-icon-wrapper, .meal-icon-wrapper {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
                margin-right: 12px;
            }

            .meal-icons-group {
                gap: 4px;
            }
        }
        @media (max-width: 576px) {
            .title-group h1 {
                font-size: 1.74rem;
            }

            .step-label {
                display: none;
            }

            .stepper::after {
                top: 20px;
            }
            
            .plan-card {
                padding: 20px 15px;
            }

            .goal-options, .person-options, .meal-options, .plan-options {
                gap: 10px;
            }
        }
