/* Plan cards: layout lives in critical-css-meal-plans (inline) to avoid CLS when this file loads async */

body.bg .meal-plan-card .discount {
    background: #e50914;
    color: white;
    float: right;
    font-weight: 700;
    padding: 4px 10px;
    font-size: 13px;
    border-radius: 6px;
    display: inline-block;
    margin-left: 10px;
}

body.bg .meal-plan-card .macros {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

body.bg .macro-box {
    background: #f0f0f0;
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

body.bg .meal-plan-card .price {
    font-weight: 700;
    font-size: 18px;
    color: #1e5234;
    margin-top: 12px;
}

body.bg .meal-plan-card .old-price {
    text-decoration: line-through;
    font-size: 13px;
    color: #000000;
    font-weight: 600;
    margin-top: 10px;
}

body.bg .meal-plan-card .start-label {
    font-size: 0.85rem;
    color: #000000;
    font-weight: 500;
    margin-top: 5px;
}

body.bg .meal-plan-card .explore-btn {
    background: #1e5234;
    color: white;
    font-weight: bold;
    border: none;
    padding: 6px 15px;
    border-radius: 4px;
    margin-top: 15px;
}

body.bg .meal-plan-card .content h3 {
    font-size: 17px;
    font-weight: bold;
    text-align: left;
}

body.bg .meal-plan-card .content p {
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    margin-top: 10px;
    line-height: 20px;
}

body.bg .meal-plan-padding {
    padding: 0 30px;
}

body.bg .meal-plan-padding-2 {
    padding: 0 35px;
}

@media (max-width: 768px) {
    body.bg .meal-plan-padding {
        padding: 0;
    }

    body.bg .meal-plan-padding-2 {
        padding: 0;
    }

    body.bg .meals-count {
        display: none !important;
    }

    body.bg .meal-plan-card .content h3 {
        font-size: 1rem;
    }

    body.bg .meal-plan-card .content p,
    body.bg .meal-plan-card .start-label,
    body.bg .meal-plan-card .old-price,
    body.bg .meal-plan-card .price {
        font-size: 0.85rem;
    }

    body.bg .meal-plan-card .discount,
    body.bg .macro-box {
        font-size: 0.75rem;
    }

    body.bg .px-3,
    body.bg .px-4 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.custom-meal-plan-section h3{
    font-size: 30px;
    line-height: 42px;
    font-weight: 900;
    color: #6abd62;
    padding-bottom: 14px;
}

@media (max-width: 768px) {
    .custom-meal-plan-section h3{
        font-size: 30px;
        line-height: 30px;
        font-weight: 900;
        color: #6abd62;
        padding-bottom: 5px;
    }
}



.steps-section .container h2 {
    font-size: 30px;
    font-weight: 700;
}
.steps-nav-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.steps-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 720px;
}
.step-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    background: #eef8ed;
    border: 1px solid #d0e5d4;
    transition: 0.3s;
    padding: 16px 8px;
}

.step-tab.active {
    background: #a5d4a3;
}

.step-tab.active .circle {
    background: #2b3b2d;
}

.step-tab .circle {
    background: #a5d4a3;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.step-tab .label {
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
}
.step-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.step-panel {
    display: none;
}
.step-panel:not(.d-none) {
    display: block;
}

.steps-section .step-panel-row {
    flex-wrap: nowrap;
    align-items: center;
}

.step-panel .step-panel-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.step-panel .step-panel-illustration-wrap {
    flex: 0 0 auto;
}

.steps-section .step-panel-illustration {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
}

.scheduling-illustration {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .steps-section .container h2 {
        font-size: 22px;
        text-align: center;
    }

    .steps-nav-wrapper {
        margin: 0 auto 16px;
        max-width: 100%;
    }

    .steps-nav {
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
        width: 100%;
    }

    .step-tab {
        flex: 1 1 33.33%;
        padding: 10px 4px;
        font-size: 13px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100px;
        box-sizing: border-box;
    }

    .step-tab .circle {
        width: 30px;
        height: 30px;
        font-size: 13px;
        margin-bottom: 6px;
    }

    .step-tab .label {
        font-size: 12px;
        margin-top: 4px;
        padding: 0 4px;
    }

    .step-content {
        padding: 16px;
    }

    .step-panel .step-panel-row {
        flex-direction: column !important;
        flex-wrap: wrap;
        gap: 12px;
    }

    .step-panel img {
        display: none;
    }

    .step-panel h5 {
        font-size: 16px;
    }

    .step-panel p {
        font-size: 14px;
    }

    .title-text{
        font-size: 25px !important;
        font-weight: 700;
    }
}

.title-text{
    font-size: 30px;
    font-weight: 700;
}

/* Reviews: horizontal strip (legacy layout, no Owl — scroll-snap + flex) */
body.bg .custom-reviews {
    display: block;
    background: #f1f5ef;
    padding: 50px 0;
}

body.bg .custom-reviews .google {
    display: inline-block;
    margin: 20px auto 0;
}

body.bg .custom-reviews .google img {
    display: inline-block;
    max-width: 200px;
    width: auto;
    height: auto;
    margin: 0;
}

body.bg .reviews-grid.reviews-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 15px 20px;
    scrollbar-width: none;
    text-align: center;
}

body.bg .reviews-grid.reviews-slider::-webkit-scrollbar {
    display: none;
}

body.bg .reviews-grid .review-block {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 280px;
    max-width: 360px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    background: #f7f7f7;
    text-align: center;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    margin: 0;
    padding: 25px 30px;
    box-shadow: 3px 5px 6px #ccc;
    border-radius: 5px;
    min-height: 360px;
}

body.bg .reviews-grid .review-block strong {
    font-weight: 500;
    color: #6abd62;
    display: block;
    padding-bottom: 10px;
    text-transform: capitalize;
}

body.bg .reviews-grid .review-block > div:last-child {
    margin-top: auto;
    padding-top: 20px;
}

body.bg .reviews-grid .review-block .review-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

body.bg .reviews-grid .review-block .review-star {
    color: #ffb400;
    font-size: 28px;
    line-height: 1;
}

body.bg .reviews-grid .review-block .review-star--muted {
    color: #d0d0d0;
}

@media (max-width: 767px) {
    body.bg .reviews-grid .review-block {
        flex: 0 0 85vw;
        min-width: 85vw;
        max-width: 85vw;
    }
}
