/* ============================================
PREP SUCCESS MEALS - Base Styles
============================================ */

:root {
    /* ── Colors ── */
    --color-green-dark:     #2D5A27;
    --color-green-mid:      #3D6B35;
    --color-green-olive:    #4A7C3F;
    --color-green-accent:   #4CAF50;
    --color-cream:          #FAF6EE;
    --color-cream-dark:     #F5F0E8;
    --color-white:          #FFFFFF;
    --color-black:          #1A1A1A;
    --color-gray-dark:      #555555;
    --color-gray-mid:       #666666;
    --color-gray-light:     #999999;
    --color-gold:           #E8A020;
    --color-red:            #C0392B;
    --color-brown:          #8B7355;
    /*--color-green-n:        #4a7d06;*/
    --color-green-n:        #66850e;
    

    /* ── Fonts ── */
    --font-primary:         'Poppins', sans-serif;
    --font-script:          'Caveat', cursive;

    /* ── Font Sizes ── */
    --text-h1:              78px;
    --text-h2:              36px;
    --text-h3:              24px;
    --text-h4:              18px;
    --text-h5:              16px;
    --text-h6:              14px;
    --text-body:            16px;
    --text-body-sm:         14px;
    --text-meta:            12px;
    --text-price:           20px;
    --text-btn:             14px;
    --text-btn-cart:        13px;
    --text-topbar:          12px;
    --text-nav:             14px;
    --text-stat-number:     18px;
    --text-stat-label:      11px;
    --text-badge:           11px;
    --text-script:          36px;
    --text-rating:          14px;
    --text-section-label:   13px;

    /* ── Font Weights ── */
    --weight-light:         300;
    --weight-regular:       400;
    --weight-medium:        500;
    --weight-semibold:      600;
    --weight-bold:          700;
    --weight-extrabold:     800;
    --weight-black:         900;

    /* ── Layout ── */
    --container-width:      1340px;
    --container-padding:    20px;

    /* ── Border Radius ── */
    --radius-sm:            6px;
    --radius-md:            10px;
    --radius-lg:            16px;
    --radius-xl:            20px;
    --radius-full:          50%;

    /* ── Shadows ── */
    --shadow-card:          0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover:         0 4px 20px rgba(0, 0, 0, 0.12);

    /* ── Transitions ── */
    --transition-fast:      0.2s ease;
    --transition-base:      0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-body);
    font-weight: var(--weight-regular);
    color: var(--color-black);
    background-color: var(--color-cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    font-family: var(--font-primary);
    cursor: pointer;
    border: none;
    outline: none;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1 {
    font-size: var(--text-h1);
    font-weight: var(--weight-black);
    line-height: 1.1;
    letter-spacing: -0.5px;
    font-family: var(--font-primary);
}

h2 {
    font-size: var(--text-h2);
    font-weight: var(--weight-bold);
    line-height: 1.2;
    font-family: var(--font-primary);
}

h3 {
    font-size: var(--text-h3);
    font-weight: var(--weight-bold);
    line-height: 1.3;
    font-family: var(--font-primary);
}

h4 {
    font-size: var(--text-h4);
    font-weight: var(--weight-semibold);
    line-height: 1.4;
    font-family: var(--font-primary);
}

h5 {
    font-size: var(--text-h5);
    font-weight: var(--weight-semibold);
    line-height: 1.4;
    font-family: var(--font-primary);
}

h6 {
    font-size: var(--text-h6);
    font-weight: var(--weight-medium);
    line-height: 1.5;
    font-family: var(--font-primary);
}

p {
    font-size: var(--text-body);
    line-height: 1.6;
    color: var(--color-gray-dark);
    font-family: var(--font-primary);
}

/* ============================================
   REUSABLE COMPONENTS
   ============================================ */

/* Section Label - uppercase small text above headings */
.section-label {
    font-size: var(--text-section-label);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-green-olive);
}

/* Script accent text */
.script-accent {
    font-family: var(--font-script);
    font-size: var(--text-script);
}

/* Meta text - calories, protein info */
.meta-text {
    font-size: var(--text-meta);
    text-transform: uppercase;
    color: var(--color-gray-mid);
    letter-spacing: 0.5px;
}

/* Price */
.price {
    font-size: var(--text-price);
    font-weight: var(--weight-bold);
    color: var(--color-black);
}

/* Stat number */
.stat-number {
    font-size: var(--text-stat-number);
    font-weight: var(--weight-bold);
}

/* Stat label */
.stat-label {
    font-size: var(--text-stat-label);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-gray-mid);
}

/* Badges */
.badge {
    font-size: var(--text-badge);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.badge--bestseller {
    background-color: var(--color-red);
    color: var(--color-white);
}

.badge--highprotein {
    background-color: var(--color-green-accent);
    color: var(--color-white);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: var(--text-btn);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    cursor: pointer;
}

.btn--primary {
    background-color: var(--color-green-dark);
    color: var(--color-white);
    padding: 14px 32px;
}

.btn--primary:hover {
    background-color: var(--color-green-mid);
}

.btn--cart {
    background-color: var(--color-green-dark);
    color: var(--color-white);
    font-size: var(--text-btn-cart);
    padding: 10px 20px;
    width: 100%;
}

.btn--cart:hover {
    background-color: var(--color-green-mid);
}

/* Stars */
.stars {
    color: var(--color-gold);
    font-size: 18px;
    letter-spacing: 2px;
}

/* Rating text */
.rating-text {
    font-size: var(--text-rating);
    color: var(--color-gray-dark);
}

/* ============================================
   TOP BAR
   ============================================ */

.topbar {
    background-color: var(--color-green-dark);
    padding: 10px 0;
}

.topbar__text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: var(--text-topbar);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white);
    text-align: center;
}

.topbar__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.topbar__divider {
    opacity: 0.5;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
    background-color: var(--color-white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.header__logo {
    flex-shrink: 0;
    margin-right: 10px;
    position: relative;
    z-index: 2;
}

.header__logo img {
    width: 110px;
    height: 110px;
    border-radius: var(--radius-full);
    object-fit: contain;
}

/* Menu */
.header__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__menu-item a {
    font-size: var(--text-nav);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-black);
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-fast);
}

.header__menu-item a:hover {
    color: var(--color-green-dark);
}

.header__menu-item--dropdown a svg {
    transition: var(--transition-fast);
}

.header__menu-item--dropdown:hover a svg {
    transform: rotate(180deg);
}

/* Actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header__action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-nav);
    font-weight: var(--weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-black);
    padding: 10px 14px;
    transition: var(--transition-fast);
}

.header__action:hover {
    color: var(--color-green-dark);
}

.header__action--cart {
    border: 1.5px solid var(--color-black);
    border-radius: var(--radius-md);
    padding: 8px 18px;
    font-weight: var(--weight-semibold);
}

.header__action--cart:hover {
    border-color: var(--color-green-dark);
    color: var(--color-green-dark);
}

/* Hamburger (hidden on desktop) */
.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
}

.header__hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--color-black);
    border-radius: 2px;
    transition: var(--transition-base);
}



/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background-color: var(--color-cream);
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 60px 0 40px;
}

/* Content */
.hero__content {
    padding: 20px 0;
}

.hero__title {
    font-size: var(--text-h1);
    font-weight: var(--weight-black);
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 20px;
}

.hero__title--green {
    color: var(--color-green-dark);
}

.hero__subtitle {
    font-size: var(--text-h4);
    font-weight: var(--weight-regular);
    color: var(--color-gray-dark);
    line-height: 1.6;
    margin-bottom: 28px;
}

.hero__cta {
    margin-bottom: 24px;
}

.hero__rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__rating .stars {
    font-size: 22px;
}

.hero__rating .rating-text strong {
    color: var(--color-black);
}

/* Image */
.hero__image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero__image img {
    width: 100%;
    max-width: 680px;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Trust Bar - full width */
.hero__trust-bar {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background-color: var(--color-cream);
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 36px 0;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero__trust-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-green-dark);
}

.hero__trust-text {
    display: flex;
    flex-direction: column;
}

.hero__trust-text strong {
    font-size: var(--text-body);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    color: var(--color-black);
    letter-spacing: 0.5px;
}

.hero__trust-text span {
    font-size: var(--text-stat-label);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-gray-mid);
}

.container.main-wrapper.custom-meal-product {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

/* ============================================
   TOP SELLERS SECTION
   ============================================ */

.top-sellers {
    padding: 60px 0;
    background-color: var(--color-white);
}

/* Header */
.top-sellers__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.top-sellers__heading .section-label {
    display: block;
    margin-bottom: 6px;
}

.top-sellers__heading h2 {
    color: var(--color-black);
}

.top-sellers__nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-sellers__view-all {
    font-size: var(--text-body-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-green-dark);
    letter-spacing: 0.3px;
}

.top-sellers__view-all:hover {
    color: var(--color-green-mid);
}

.top-sellers__arrow {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-gray-light);
    background: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    transition: var(--transition-fast);
}

.top-sellers__arrow:hover {
    border-color: var(--color-green-dark);
    color: var(--color-green-dark);
}

/* Products Grid */
.top-sellers__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

/* Meal Card */
.meal-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
}

.meal-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.meal-card__image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.meal-card__image img {
    width: 100%;
    aspect-ratio: 1 / 0.9;
    object-fit: cover;
    display: block;
    transition: var(--transition-base);
}

.meal-card:hover .meal-card__image img {
    transform: scale(1.04);
}

.meal-card__image .badge {
    position: absolute;
    top: 12px;
    z-index: 1;
}

.meal-card__image .badge--bestseller {
    left: 12px;
}

.meal-card__image .badge--highprotein {
    right: 12px;
}

.meal-card__body {
    padding: 16px 18px 20px;
}

.meal-card__name {
    font-size: var(--text-h5);
    font-weight: var(--weight-semibold);
    color: var(--color-black);
    margin-bottom: 4px;
}

.meal-card__body .meta-text {
    margin-bottom: 8px;
}

.meal-card__body .price {
    margin-bottom: 14px;
}

.meal-card__body .btn--cart {
    border-radius: var(--radius-md);
}

.top-sellers__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.top-sellers__track::-webkit-scrollbar {
    display: none;
}

.top-sellers__track .meal-card {
    flex: 0 0 calc((100% - 96px) / 5);
    scroll-snap-align: start;
    min-width: 220px;
}

/* ============================================
HOW IT WORKS SECTION
============================================ */

.how-it-works {
    background-color: var(--color-cream);
}

.how-it-works__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

/* Left Content */
.how-it-works__content {
    background-color: var(--color-green-dark);
    color: var(--color-white);
    padding: 56px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label--light {
    color: rgba(255, 255, 255, 0.7);
}

.how-it-works__title {
    color: var(--color-white);
    margin-bottom: 12px;
}

.how-it-works__subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-body);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 420px;
}

/* Steps */
.how-it-works__steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 36px;
}

.how-it-works__step {
    text-align: center;
    flex: 0 0 auto;
}

.how-it-works__step-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 14px;
}

.how-it-works__step-number {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 26px;
    height: 26px;
    border-radius: var(--radius-full);
    background-color: var(--color-green-accent);
    color: var(--color-white);
    font-size: 13px;
    font-weight: var(--weight-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.how-it-works__step-circle {
    width: 76px;
    height: 76px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.how-it-works__step-title {
    font-size: 15px;
    font-weight: var(--weight-bold);
    color: var(--color-white);
    margin-bottom: 6px;
}

.how-it-works__step-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    max-width: 140px;
    margin: 0 auto;
}

/* Connector */
.how-it-works__connector {
    display: flex;
    align-items: center;
    padding-top: 30px;
    margin: 0 6px;
}

/* Perks */
.how-it-works__perks {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.how-it-works__perk {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
}

.how-it-works__perk svg {
    color: var(--color-green-accent);
    flex-shrink: 0;
}

.how-it-works__perk span {
    font-size: var(--text-meta);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right Image */
.how-it-works__image {
    overflow: hidden;
}

.how-it-works__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.hero {
    background-image: url(https://prepsuccessmeals.com/wp-content/uploads/2019/06/PSM_Header_Extended_Light_v6.png);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

.hero__trust-bar {
    background: transparent;
}

.hero__trust {
    padding-bottom: 0;
    gap: 40px;
}

.hero__trust-bar .container {
    padding: 0;
}

.hero__grid {
    padding-bottom: 0;
}

.top-sellers__heading h2 {
    margin-top: 0;
}   

.section-label {
    letter-spacing: 0;
}

.top-sellers__header {
    margin-bottom: 25px;
}

.meal-card__name {
    margin-top: 0;
}

.hero__title--green {
    color: transparent;
    background: 
        linear-gradient(
            165deg,
            var(--color-green-dark) 0%,
            #3a7030 20%,
            #4a8a3f 30%,
            #3a7030 40%,
            var(--color-green-dark) 50%,
            #3a7030 60%,
            #4a8a3f 70%,
            #3a7030 80%,
            var(--color-green-dark) 100%
        );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn--primary {
    background: linear-gradient(
        180deg,
        #3d7533 0%,
        var(--color-green-dark) 40%,
        var(--color-green-dark) 60%,
        #3d7533 100%
    );
    color: var(--color-white);
    padding: 14px 32px;
}

.btn--primary:hover {
    background: linear-gradient(
        180deg,
        #4a8a3f 0%,
        var(--color-green-mid) 40%,
        var(--color-green-mid) 60%,
        #4a8a3f 100%
    );
}

.btn--cart {
    background: linear-gradient(
        180deg,
        #3d7533 0%,
        var(--color-green-dark) 40%,
        var(--color-green-dark) 60%,
        #3d7533 100%
    );
    color: var(--color-white);
    font-size: var(--text-btn-cart);
    padding: 10px 20px;
    width: 100%;
}

.btn--cart:hover {
    background: linear-gradient(
        180deg,
        #4a8a3f 0%,
        var(--color-green-mid) 40%,
        var(--color-green-mid) 60%,
        #4a8a3f 100%
    );
}

.hero__rating .stars {
    font-size: 27px;
    color: var(--color-green-dark);
    top: -2px;
    position: relative;
}

.hero__subtitle {
    color: #000;
}

.hero__subtitle {
    color: #000;
    font-size: var(--text-h3);
}

.hero__title {
    margin-bottom: 5px;
}   


section.hero {
    background-position: 76% 50%;
}

.hero__cta span {
    display: inline-block !important;
    position: relative !important;
    left: 0;
    top: 0 !important;
    bottom: 0 !important;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
     transform: translate(0); 
    height: auto;
}

.btn--primary svg {
    flex-shrink: 0;
}

.hero__trust-text {
    line-height: 19px;
}


.rating-text {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.hero__trust-bar {
    border: 0;
}   

.hero__trust-icon svg {
    stroke: #000;
}

.hero__trust-text span {
    font-weight: 500;
    letter-spacing: 0;
    color: #000;
}

.hero__subtitle {
    font-weight: 600;
}

.hero__subtitle {
    margin-bottom: 20px;
}

.hero__title {
    font-weight: 700;
}

.top-sellers__heading .section-label {
    margin-bottom: 0;
}
.top-sellers__heading .section-label {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
}

.badge--bestseller {
    width: 70px;
    display: block;
    min-width: 50px;
    white-space: normal;
    text-align: center;
    padding-top: 7px;
    padding-bottom: 7px;
    left: 0 !important;
}

.badge {
    width: 70px;
    display: block;
    min-width: 50px;
    white-space: normal;
    text-align: center;
    padding-top: 7px;
    padding-bottom: 7px;
    left: 0 !important;
}

span.badge.badge--highprotein {
    right: 0 !important;
    left: auto !important;
}

.badge {
    top: 0 !important;
}

.meal-card__body {
    padding-top: 0;
}

.meal-card__name {
    font-weight: 700;
}

.meal-card__body .meta-text {
    margin-bottom: 8px;
    color: #638f0d;
    font-size: 13px;
    letter-spacing: 0;
    font-weight: 600;
    margin-top: 9px;
}

span.badge.badge--highprotein {
    background: linear-gradient(180deg, #4c973e 0%, var(--color-green-dark) 40%, var(--color-green-dark) 60%, #438537 100%);
}

.top-sellers {
    padding-bottom: 20px;
}

.btn--primary{
    font-family: var(--font-primary);
}

.section-label {
    color: #66850e;
}

a.top-sellers__view-all {
    color: var(--color-green-n);
    letter-spacing: 0;
}

.meal-card__body .price {
    font-size: 16px;
}

button.top-sellers__arrow.top-sellers__arrow--prev svg {
    transform: rotate(180deg);
}

button.top-sellers__arrow svg {
    stroke: var(--color-green-n);
}

button.btn.btn--cart svg {
    fill: #fff;
}

.meal-card__body .btn--cart {
    font-weight: 500;
    font-family: var(--font-primary);
    letter-spacing: 0;
}

h2.how-it-works__title {
    margin-top: 0;
}

.how-it-works__image {
    background: #2d5a27;
}

section.how-it-works {
    background-image: url(https://prepsuccessmeals.com/wp-content/uploads/2019/06/meal-prep-transparent-v2.png);
    background-position: right;
    background-repeat: no-repeat;
    background-color: #2d5a27;
}

.how-it-works__inner {
    max-width: 1340px;
    margin: 0 auto;
}

section.how-it-works {
    background-position: 204% 50%;
}

.how-it-works__inner {
    grid-template-columns: 1fr 500px;
}

section.how-it-works {
    padding-bottom: 75px;
} 


.how-it-works__step-circle {
    width: 125px;
    height: 125px;
    border-radius: var(--radius-full);
    background-color: #ffffffde;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.how-it-works__step-circle svg {
    stroke: #000;
}

.how-it-works__step-title {
    margin-top: 5px;
    font-size: 17px;
    font-weight: 600;
}

.how-it-works__content {
    padding-left: 20px;
    padding-right: 0;
}

.how-it-works__step-desc {
    max-width: 100%;
}

.how-it-works__step {
    width: 180px;
}

.how-it-works__step-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 21px;
}

.how-it-works__connector {
    padding-top: 50px;
}

.how-it-works__connector svg {
    stroke: rgba(255, 255, 255, 0.8);
}

.how-it-works__connector svg line {
    stroke: rgba(255, 255, 255, 0.8) !important;
}

.how-it-works__text {
    padding-left: 120px;
}

.how-it-works__step-number {
    position: absolute;
    top: -4px;
    left: -15px;
    width: 40px;
    height: 40px;
}

span.how-it-works__step-number {
    background: #5b871d;
}

.how-it-works__content {
    background-color: #30411b;
}

section.how-it-works {
    background-color: #30411b;
}

.how-it-works__text .section-label {
    color: #638f0d;
    font-size: 16px;
}

.how-it-works__perk span {
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 500;
}

.how-it-works__perks {
    background: #2a3b1354;
    border: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    justify-content: center;
    max-width: 750px;
}

.how-it-works__perk::after {
    content: '';
    right: -8px;
    position: relative;
    opacity: 0.1;
    height: 26px;
    width: 1px;
    background: white;
}

.how-it-works__perk span {
    font-size: 14px;
}

.how-it-works__perk {
    gap: 18px;
}

.how-it-works__perk:last-child::after {
    background: transparent;
}

.how-it-works__content {
    padding-top: 30px;
}

/* ============================================
   WHY PEOPLE CHOOSE SECTION
   ============================================ */

.why-choose {
    padding: 70px 0 0;
    background-color: var(--color-cream);
}

/* Header */
.why-choose__header {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose__header .section-label {
    display: block;
    margin-bottom: 8px;
}

.why-choose__header h2 {
    color: var(--color-black);
    margin-bottom: 12px;
}

.why-choose__header p {
    font-size: var(--text-body);
    color: var(--color-gray-dark);
    max-width: 520px;
    margin: 0 auto;
}

/* Features Grid */
.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.why-choose__feature {
    text-align: center;
}

.why-choose__icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    background-color: var(--color-cream-dark);
    border: 1.5px solid rgba(45, 90, 39, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-green-dark);
}

.why-choose__title {
    font-size: 15px;
    font-weight: var(--weight-bold);
    color: var(--color-black);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 14px;
}

.why-choose__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--color-green-dark);
}

.why-choose__desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-gray-mid);
}

/* Stats Bar */
.why-choose__stats-bar {
    background-color: var(--color-cream-dark);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 28px 0;
}

.why-choose__stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.why-choose__stat {
    display: flex;
    align-items: center;
    gap: 14px;
}

.why-choose__stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--color-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.why-choose__stat-text {
    display: flex;
    flex-direction: column;
}

.why-choose__stat-text strong {
    font-size: var(--text-body-sm);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    color: var(--color-black);
    letter-spacing: 0.5px;
}

.why-choose__stat-text span {
    font-size: var(--text-stat-label);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-gray-mid);
}


.why-choose__header h2 {
    margin-top: 0;
}

.why-choose {
    padding-top: 20px;
}

span.section-label {
    margin-bottom: 0 !important;
}

.why-choose__header p {
    max-width: 600px;
    color: #000;
}

section.how-it-works {
    padding-bottom: 0;
}

.why-choose__icon {
    width: 100px;
    height: 100px;
    background: #f3eee3;
    border: 0;
    margin-bottom: 15px;
}

.why-choose__icon svg {
    width: 60px;
    height: 60px;
}

.why-choose__header {
    margin-bottom: 20px;
}

.why-choose__title {
    margin-top: 0;
}

.why-choose__title {
    padding-left: 25px;
    padding-right: 25px;
}

.why-choose__desc {
    font-size: 15px;
    color: #000;
    padding-left: 10px;
    padding-right: 10px;
}

.why-choose__title {
    line-height: 24px;
}

.why-choose__feature {
    position: relative;
}

.why-choose__feature::after {
    content: '';
    width: 1px;
    height: 100%;
    background: #e7e7e5;
    display: block;
    position: absolute;
    top: 0;
    left: -17px;
    right: auto;
}

.why-choose__stats-bar {
    background: #fbfbfb;
    border: 0;
    border-radius: 10px;
}

section.why-choose {
    padding-bottom: 35px;
}

.why-choose__stat-icon {
    background: #faf6ee;
}

.why-choose__stat-icon svg {
    stroke: #2D5A27;
    width: 40px;
    height: 40px;
    stroke-width: 1.5px;
}


.why-choose__stat-icon {
    width: 60px;
    height: 60px;
}

.why-choose__grid {
    margin-bottom: 30px;
}

.why-choose__stat-text strong {
    font-family: var(--font-primary);
    font-size: 17px;
    line-height: 18px;
    letter-spacing: 0;
}

.why-choose__stat-text span {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-primary);
    letter-spacing: 0;
}

.why-choose__stats-bar {
    padding: 24px 0;
}

.section-label {
    font-family: var(--font-primary);
}

.why-choose__header .section-label {
    font-size: 18px;
}

.why-choose__feature:first-child::after {
    content: none;
}

.why-choose__stat {
    position: relative;
}

.why-choose__stat::after {
    content: '';
    width: 1px;
    height: 100%;
    background: #e7e7e5;
    display: block;
    position: absolute;
    top: 0;
    left: -46px;
    right: auto;
}

.why-choose__stat:first-child::after {
    content: none;
}


/* ============================================
   OUR LOCAL STORY SECTION
   ============================================ */

.local-story {
    background-color: var(--color-cream);
}

.local-story__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
}

/* Left Content */
.local-story__content {
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.local-story__text {
    max-width: 520px;
    padding-right: 40px;
}

.local-story__text .section-label {
    display: block;
    margin-bottom: 10px;
}

.local-story__title {
    color: var(--color-black);
    line-height: 1.2;
    margin-bottom: 0;
}

.local-story__title .script-accent {
    color: var(--color-green-dark);
    font-size: 40px;
    display: block;
    margin-top: 4px;
}

.local-story__line {
    width: 50px;
    height: 3px;
    background-color: var(--color-green-dark);
    margin: 20px 0 24px;
}

.local-story__text p {
    font-size: var(--text-body-sm);
    line-height: 1.7;
    color: var(--color-gray-dark);
    margin-bottom: 16px;
}

.local-story__text p strong {
    color: var(--color-black);
    font-weight: var(--weight-semibold);
}

/* Small Icons Row */
.local-story__icons {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.local-story__icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.local-story__icon-circle {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green-dark);
}

.local-story__icon-item span {
    font-size: 10px;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-black);
    line-height: 1.4;
}

/* Right Image */
.local-story__image {
    position: relative;
    overflow: hidden;
}

.local-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Overlay */
.local-story__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(8px);
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.local-story__stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.local-story__stat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-green-olive);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green-olive);
    flex-shrink: 0;
}

.local-story__stat-text {
    display: flex;
    flex-direction: column;
}

.local-story__stat-text strong {
    font-size: 13px;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    color: var(--color-white);
    letter-spacing: 0.5px;
}

.local-story__stat-text span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
}

.local-story {
    background-color: var(--color-cream);
}

.local-story__inner {
    display: flex;
}

.local-story__content {
    flex: 1 0 42%;
}

.local-story__content .container {
    padding-left: 150px;
}
    
.local-story__title {
    margin-top: 0;
}

.local-story {
    background: #fbfbfb;
}

span.section-label {
    font-size: 17px;
}

.local-story__overlay {
    bottom: 50px;
    width: 88%;
    margin: 0 auto;
    border-radius: 20px;
    opacity: 1;
    background: #000000e0;
}

.local-story__inner {
    padding-bottom: 20px;
}

.local-story__text p {
    color: #000;
}

.local-story__stat-icon {
    border: 0;
}

.local-story__content {
    padding-bottom: 0;
    padding-top: 20px;
}

.local-story__icon-item {
    flex: 1;
}

.local-story__icons {
    margin-top: 0;
    border: 0;
    padding-top: 5px;
}

.local-story__icon-circle svg {
    stroke-width: 2px;
}

.local-story__icon-item span {
    letter-spacing: 0;
    font-family: var(--font-primary);
}

.local-story__icon-circle {
    border: 1.5px solid #66850e;
    color: #66850e;
}

.local-story__icon-item span {
    font-size: 11px;
}

.local-story__overlay * {
    font-family: var(--font-primary);
}

.local-story__stat-icon svg {
    width: 60px;
    height: 60px;
}

.local-story__stat-text span {
    line-height: 20px;
    font-size: 13px;
    color: #ffffffc7;
}

.local-story__stat-text strong {
    font-size: 15px;
    font-weight: 600;
}

.local-story__content {
    padding-top: 12px;
}

.local-story__inner {
    height: 525px;
}

.local-story__image img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.local-story__title .script-accent {
    color: #66850e;
    font-size: 47px;
    font-family: 'Yellowtail', cursive;
    font-weight: 300;
}

.why-choose__stat-icon svg {
    stroke: #66850e;
}

.why-choose__icon.choose__icon_green * {
    fill: #66850e;
}

.why-choose__icon.choose__icon_green_2 * {
    stroke: #66850e;
}

.why-choose__icon.choose__icon_green_3 * {
    stroke: #66850e;
}

/* ============================================
CUSTOMER REVIEWS SECTION
============================================ */

.reviews {
	background-color: var(--color-green-dark);
	padding: 60px 0 40px;
}

/* Header */
.reviews__header {
	text-align: center;
	margin-bottom: 40px;
}

.reviews__header .section-label--light {
	display: block;
	margin-bottom: 8px;
	color: var(--color-green-accent);
}

.reviews__title {
	color: var(--color-white);
	margin-bottom: 12px;
}

.reviews__rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.reviews__rating .stars {
	color: var(--color-gold);
	font-size: 18px;
}

.reviews__rating-text {
	font-size: var(--text-rating);
	color: rgba(255, 255, 255, 0.7);
}

/* Carousel */
.reviews__carousel {
	position: relative;
}

.reviews__track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 4px;
}

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

/* Review Card */
.review-card {
	flex: 0 0 calc((100% - 72px) / 4);
	min-width: 260px;
	scroll-snap-align: start;
	background-color: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: var(--transition-base);
}

.review-card:hover {
	background-color: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.2);
}

.review-card__image {
	overflow: hidden;
}

.review-card__image img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	display: block;
}

.review-card__body {
	padding: 18px 20px 20px;
}

.review-card__stars {
	color: var(--color-gold);
	font-size: 16px;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.review-card__text {
	font-size: 13px;
	font-style: italic;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 18px;
}

/* Author */
.review-card__author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.review-card__avatar {
	width: 36px;
	height: 36px;
	border-radius: var(--radius-full);
	overflow: hidden;
	flex-shrink: 0;
}

.review-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.review-card__info {
	display: flex;
	flex-direction: column;
}

.review-card__info strong {
	font-size: 13px;
	font-weight: var(--weight-semibold);
	color: var(--color-white);
}

.review-card__info span {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.5);
	display: flex;
	align-items: center;
	gap: 4px;
}

/* Trust Footer */
.reviews__footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 36px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
}

.reviews__footer span {
	font-size: var(--text-body-sm);
}

.reviews {
	background: #32431b;
}

.reviews__title {
	margin-top: 0;
}

span.section-label.section-label--light {
	color: #638f0d;
	font-size: 16px;
}

.reviews__rating .stars {
	color: #72a629;
	font-size: 26px;
}

.reviews__rating-text {
	color: #fff;
	font-size: 16px;
	top: 2px;
	position: relative;
}

.review-card__body {
	position: relative;
}
.review-card__body .review-card__image {
	position: absolute;
	right: -50px;
	top: 0;
	width: 69%;
}

.review-card__text {
	padding-right: 75px;
}

.review-card__image img {
	aspect-ratio: 1;
	object-fit: contain;
}

.review-card__text {
    margin-bottom: 5px;
}

.review-card__info {
    line-height: 19px;
}

.review-card>div {
    height: 235px;
}

.review-card__author {
    position: absolute;
    bottom: 22px;
    top: auto;
}

.review-card__stars {
    color: #72a629;
    font-size: 19px;
}

section.reviews {
    padding-top: 15px;
    padding-bottom: 20px;
}

.reviews__header {
    margin-bottom: 15px;
}

.review-card {
    background-color: rgba(255, 255, 255, 0.02);
}


.reviews__footer {
    border: 0;
    margin-top: 0;
    padding-top: 15px;
}

.review-card__text {
    padding-right: 103px;
}

.review-card>div {
    height: 260px;
}

.review-card__avatar {
    width: 43px;
    height: 43px;
}

.review-card__info span {
    color: rgba(255, 255, 255, 0.8);
}

.review-card__info span svg {
    fill: #72a629;
    width: 18px;
    height: 18px;
}

.reviews__footer svg {
    stroke: #72a629;
}

.reviews__footer span {
    font-size: var(--text-body-sm);
    font-family: var(--font-primary);
    font-weight: 400 !important;
    font-size: 16px;
    color: #fff !important;
}

section.reviews {
    padding-bottom: 100px;
}

.topbar {
    background: #406f38;
}

.header__menu {
    padding-left: 225px;
    margin-bottom: 0;
}

a.header__logo {
    position: absolute;
}

.header__logo img {
    width: 190px;
    height: 190px;
}

.header {
    padding-top: 30px;
    padding-bottom: 30px;
}


.header__action {
    font-family: var(--font-primary);
    letter-spacing: 0;
    font-weight: 700;
}

.header__menu-item a {
    letter-spacing: 0;
    font-weight: 700;
    font-family: var(--font-primary);
}

.page-template-new-homepage .header-wrapper.header-h1 {
    display: none;
}

.hero__trust-text {
    font-family: var(--font-primary);
}

p.topbar__text {
    margin-top: 8px;
    margin-bottom: 8px;
}

.header__menu-item--dropdown a svg {
    color: #406f38;
    font-weight: 700;
    font-size: 20px;
    height: 15px;
    width: 15px;
}

.local-story__line {
    width: 85px;
    height: 1px;
    background-color: #66850e;
    margin: 20px 0 24px;
    margin-top: 4px;
    margin-left: 20px;
}

section.how-it-works {
    background-position: 124% 50%;
}

.reviews__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.header__hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   MEAL CARD - CART & QUANTITY SELECTOR
   ============================================ */

.meal-card__cart-wrap {
    position: relative;
    width: 100%;
}

/* Add to Cart button hidden state */
.meal-card__add-btn.is-hidden {
    display: none;
}

/* Quantity Selector */
.meal-card__qty-selector {
    display: none;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    border-radius: 50px;
    padding: 4px;
    width: 100%;
    height: 42px;
}

.meal-card__qty-selector.is-visible {
    display: flex;
}

.meal-card__qty-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
    padding: 0;
}

.meal-card__qty-minus {
    background-color: #555;
    color: var(--color-white);
}

.meal-card__qty-minus:hover {
    background-color: #666;
}

.meal-card__qty-plus {
    background-color: #a3d534;
    color: #333;
}

.meal-card__qty-plus:hover {
    background-color: #b5e34a;
}

.meal-card__qty-value {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: var(--weight-bold);
    color: #a3d534;
    user-select: none;
    min-width: 30px;
    text-align: center;
}

/* Loading state */
.meal-card__cart-wrap.is-loading {
    pointer-events: none;
    opacity: 0.6;
}

.meal-card__cart-wrap.is-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============================================
   RESPONSIVE - QUANTITY SELECTOR
   ============================================ */

@media (max-width: 480px) {
    .meal-card__qty-selector {
        height: 38px;
    }

    .meal-card__qty-btn {
        width: 30px;
        height: 30px;
    }

    .meal-card__qty-value {
        font-size: 14px;
    }
}

.btn--cart {
    padding: 12px 20px;
}

section.how-it-works {
    background-size: contain;
}

a.btn.btn--primary.hero__cta:hover {
    background: white;
}


.header__logo img {
    width: 120px;
    height: 120px;
}

.hero__rating {
    display: none;
}


.hero__trust-bar {
    display: none;
}

.hero__grid {
    padding-bottom: 60px;
}   

span.badge.badge--bestseller {
    display: none;
}

section.how-it-works {
    background-image: none;
}

.how-it-works__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.how-it-works__content {
    flex: 1 0 100%;
    width: 100%;
    text-align: center;
}

.how-it-works__text {
    padding-left: 0;
    text-align: center;
}

.how-it-works__subtitle {
    max-width: 100%;
}

.how-it-works__steps {
    flex-wrap: wrap;
    width: 100%;
    flex: 1 0 100%;
    text-align: center;
    justify-content: center;
}

.how-it-works__perks {
    flex-wrap: wrap;
    width: 100%;
    flex: 1 0 100%;
    text-align: center;
    justify-content: center;
    max-width: 100%;
}

.local-story__overlay {
    display: none;
}

.why-choose__arrows {
    display: none;
}

.g-review {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: none !important;
}

.g-review * {
    color: #fff !important;
}

.g-review span.time {
    color: rgba(255, 255, 255, 0.8) !important;
}

body #g-review.layout_style-1 .g-review .gr-inner-body {
    max-height: 118px;
}

.g-review {
    padding-bottom: 0 !important;
}

body #g-review:not(.badge) .g-review .gr-inner-header p a {
    font-size: 13px;
}

#g-review:not(.badge) .g-review .gr-inner-body p {
    font-size: 13px;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: var(--font-primary);
}

.grwp_header-inner * {
    color: white !important;
    font-family: var(--font-primary);
}

.grwp_header-inner {
    padding-bottom: 0 !important;
}

#g-review:not(.badge)[class^=layout_style-] .grwp_header .grwp_header-inner .grwp_overall {
    font-size: 16px;
}

h3.grwp_business-title {
    display: none;
}

.g-review::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 0;
    width: 69%;
    background-image: url(https://prepsuccessmeals.com/wp-content/uploads/2019/06/output-assetsV2_RpT3PiOnecY2xkA3cQ0M_asset-removebg-preview.png);
    height: 200px;
    background-size: contain;
}

.g-review {
    position: relative;
}

.g-review {
    padding-right: 130px !important;
    padding-left: 15px !important;
}

body #g-review.layout_style-1 .g-review .gr-inner-header img.gr-profile {
    margin: 0 7px 10px 0;
    width: 40px;
    height: 40px;
}

body #g-review.layout_style-1 .g-review .gr-inner-header .gr-stars .stars-wrapper img {
    margin-right: 3px !important;
}

body #g-review:not(.badge) .g-review .gr-stars img {
    width: 14px !important;
    height: 14px !important;
    margin: 0 5px 0 0 !important;
}

body #g-review:not(.badge) .g-review .gr-inner-header p {
    line-height: 0;
}

.g-review {
    display: flex;
    flex-wrap: wrap;
}
    
.gr-inner-header {
    order: 2;
}

body #g-review:not(.badge) .g-review .gr-inner-header {
    position: initial;
}

span.stars-wrapper {
    position: absolute;
    top: 28px;
    left: 19px;
}

body #g-review.layout_style-1 .g-review .gr-inner-header p {
    position: inherit;
}

body #g-review .swiper .swiper-wrapper .swiper-slide .g-review {
    gap: 0 !important;
    margin: 0 !important;
}

body .gr-inner-body {
    margin-bottom: 35px;
}

#g-review:not(.badge) .g-review .gr-inner-header .gr-google {
    right: 120px;
}

#g-review span.time {
    font-size: 11px !important;
}

body #g-review:not(.badge) .g-review .gr-inner-header p a {
    font-size: 12px;
    padding-right: 0 !important;
}

body #g-review:not(.badge) .g-review .gr-inner-header {
    flex: 1 0 100%;
}

.g-review {
    padding-bottom: 15px !important;
}

#g-review:not(.badge) .g-review .gr-inner-header .gr-google {
    right: 150px;
    bottom: 30px;
}

.slider-prev-next-wrapper {
    display: none;
}

body #g-review:not(.badge)[class^=layout_style-] .grwp_header .grwp_header-inner {
    padding-top: 0;
}

body #g-review:not(.badge)[class^=layout_style-] .grwp_header .grwp_header-inner .grwp_stars-wrapper img {
    max-width: clamp(22px, 5vw, 25px);
}

#g-review .swiper {
    padding-bottom: 0;
}


/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-page {
    background-color: var(--color-cream);
}

/* Contact Info Cards */
.contact-info-section {
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contact-info__card {
    text-align: center;
    padding: 40px 20px;
}

.contact-info__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--color-green-dark);
}

.contact-info__icon svg {
    width: 100%;
    height: 100%;
}

.contact-info__label {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: var(--weight-bold);
    color: var(--color-black);
    margin-bottom: 8px;
}

.contact-info__value {
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--color-gray-dark);
    line-height: 1.6;
}

.contact-info__value a {
    color: var(--color-gray-dark);
    transition: var(--transition-fast);
}

.contact-info__value a:hover {
    color: var(--color-green-dark);
}

/* Form Section */
.contact-form-section {
    padding: 60px 0 80px;
}

.contact-form__wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-form__subtitle {
    font-family: 'Yellowtail', cursive;
    font-size: 28px;
    font-weight: 400;
    color: var(--color-green-dark);
    margin-bottom: 4px;
}

.contact-form__title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: var(--weight-bold);
    color: var(--color-black);
    margin-bottom: 36px;
}

/* CF7 Form Overrides */
.contact-form__wrapper .wpcf7-form {
    text-align: left;
}

.contact-form__wrapper .wpcf7-form p {
    margin-bottom: 20px;
}

.contact-form__wrapper .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance) {
    width: 100%;
    padding: 16px 24px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--color-black);
    background-color: var(--color-white);
    border: 1.5px solid #ddd;
    border-radius: 50px;
    outline: none;
    transition: var(--transition-fast);
}

.contact-form__wrapper .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance):focus {
    border-color: var(--color-green-dark);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.contact-form__wrapper textarea.wpcf7-form-control {
    border-radius: 20px;
    min-height: 160px;
    resize: vertical;
}

.contact-form__wrapper .wpcf7-form-control::placeholder {
    color: var(--color-gray-light);
    font-weight: var(--weight-regular);
}

/* Checkbox / Acceptance */
.contact-form__wrapper .wpcf7-acceptance {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--color-gray-mid);
    margin-bottom: 24px;
}

.contact-form__wrapper .wpcf7-acceptance input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--color-green-dark);
}

/* Submit Button */
.contact-form__wrapper .wpcf7-submit {
    width: 100%;
    padding: 18px 32px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
    background: linear-gradient(
        180deg,
        #3d7533 0%,
        var(--color-green-dark) 40%,
        var(--color-green-dark) 60%,
        #3d7533 100%
    );
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-base);
}

.contact-form__wrapper .wpcf7-submit:hover {
    background: linear-gradient(
        180deg,
        #4a8a3f 0%,
        var(--color-green-mid) 40%,
        var(--color-green-mid) 60%,
        #4a8a3f 100%
    );
}

/* Validation */
.contact-form__wrapper .wpcf7-not-valid {
    border-color: var(--color-red) !important;
}

.contact-form__wrapper .wpcf7-not-valid-tip {
    font-size: 12px;
    color: var(--color-red);
    margin-top: 6px;
    padding-left: 24px;
}

.contact-form__wrapper .wpcf7-response-output {
    border-radius: var(--radius-md);
    padding: 14px 20px;
    font-size: 14px;
    margin-top: 20px;
    text-align: center;
}

header#site-header {
    display: none;
}


/* ============================================
   FAQ PAGE
   ============================================ */

.faq-page {
    background-color: var(--color-cream);
    padding: 70px 0 80px;
}

.faq__grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Left Sidebar */
.faq__sidebar {
    position: sticky;
    top: 120px;
}

.faq__sidebar-title {
    font-family: var(--font-primary);
    font-size: 38px;
    font-weight: var(--weight-bold);
    color: var(--color-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.faq__sidebar-text {
    font-family: var(--font-primary);
    font-size: 14px;
    font-style: italic;
    color: var(--color-gray-dark);
    line-height: 1.7;
    margin-bottom: 28px;
}

.faq__sidebar-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.faq__sidebar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: var(--weight-bold);
    color: var(--color-white);
    background: linear-gradient(
        180deg,
        #3d7533 0%,
        var(--color-green-dark) 40%,
        var(--color-green-dark) 60%,
        #3d7533 100%
    );
    border-radius: 50px;
    transition: var(--transition-base);
}

.faq__sidebar-btn:hover {
    background: linear-gradient(
        180deg,
        #4a8a3f 0%,
        var(--color-green-mid) 40%,
        var(--color-green-mid) 60%,
        #4a8a3f 100%
    );
}

.faq__social-title {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: var(--weight-bold);
    color: var(--color-black);
    margin-bottom: 16px;
}

.faq__social-icons {
    display: flex;
    gap: 16px;
}

.faq__social-icons a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green-dark);
    border: 2px solid var(--color-green-dark);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.faq__social-icons a:hover {
    background-color: var(--color-green-dark);
    color: var(--color-white);
}

.faq__social-icons svg {
    width: 22px;
    height: 22px;
}

/* Accordion */
.faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background-color: #f0ede5;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: var(--weight-bold);
    color: var(--color-black);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: var(--transition-fast);
}

.faq__question:hover {
    color: var(--color-green-dark);
}

.faq__question-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-gray-mid);
}

.faq__item.is-open .faq__question-icon {
    transform: rotate(90deg);
    color: var(--color-green-dark);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq__answer-inner {
    padding: 0 24px 24px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-gray-dark);
    line-height: 1.8;
}

.faq__item.is-open .faq__answer {
    max-height: 500px;
}

.faq__item.is-open {
    background-color: #eae7df;
}

/* ============================================
   WOOCOMMERCE CART PAGE
   ============================================ */

/* Page Title */
.woocommerce-cart .entry-title,
.woocommerce-cart h1.page-title {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: var(--weight-bold);
    color: var(--color-black);
    margin-bottom: 24px;
}

/* Cart Table */
.woocommerce table.shop_table {
    border: none;
    border-collapse: collapse;
    font-family: var(--font-primary);
    border-radius: 0;
}

/* Table Header */
.woocommerce table.shop_table thead {
    background-color: #1a2e1a;
}

.woocommerce table.shop_table thead th {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    color: var(--color-white);
    padding: 14px 16px;
    border: none;
    letter-spacing: 0.5px;
}

/* Table Body */
.woocommerce table.shop_table td {
    font-family: var(--font-primary);
    padding: 20px 16px;
    border-bottom: 1px solid #e8e5dd;
    border-top: none;
    border-left: none;
    border-right: none;
    vertical-align: middle;
    color: var(--color-black);
}

.woocommerce table.shop_table tbody tr {
    background-color: var(--color-white);
}

/* Remove Button */
.woocommerce a.remove {
    color: #c0392b !important;
    font-size: 20px;
    font-weight: var(--weight-bold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: none !important;
    border-radius: 0;
}

.woocommerce a.remove:hover {
    color: #e74c3c !important;
    background: none !important;
}

/* Product Image */
.woocommerce table.shop_table td.product-thumbnail img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

/* Product Name */
.woocommerce table.shop_table td.product-name a {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: var(--weight-semibold);
    color: var(--color-black);
    text-decoration: none;
}

.woocommerce table.shop_table td.product-name a:hover {
    color: var(--color-green-dark);
}

/* Price */
.woocommerce table.shop_table td.product-price {
    font-family: var(--font-primary);
    font-size: 14px;
}

/* Subtotal */
.woocommerce table.shop_table td.product-subtotal {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: var(--weight-bold);
    color: var(--color-black);
}

/* Quantity Buttons */
.woocommerce .quantity {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--color-green-dark);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.woocommerce .quantity .qty {
    width: 40px;
    height: 36px;
    text-align: center;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: var(--weight-bold);
    color: var(--color-black);
    border: none;
    background: var(--color-white);
    -moz-appearance: textfield;
    padding: 0;
    margin: 0;
}

.woocommerce .quantity .qty::-webkit-inner-spin-button,
.woocommerce .quantity .qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Custom +/- buttons for quantity */
.woocommerce .quantity .minus,
.woocommerce .quantity .plus {
    width: 32px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: var(--weight-bold);
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
    padding: 0;
    font-family: var(--font-primary);
}

.woocommerce .quantity .minus {
    background-color: var(--color-green-dark);
    color: var(--color-white);
}

.woocommerce .quantity .plus {
    background-color: var(--color-green-dark);
    color: var(--color-white);
}

.woocommerce .quantity .minus:hover,
.woocommerce .quantity .plus:hover {
    background-color: var(--color-green-mid);
}

/* Coupon Section */
.woocommerce .cart .coupon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.woocommerce .cart .coupon label {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: var(--weight-semibold);
    color: var(--color-black);
}

.woocommerce .cart .coupon .input-text {
    font-family: var(--font-primary);
    font-size: 13px;
    padding: 10px 16px;
    border: 1.5px solid #ddd;
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition-fast);
}

.woocommerce .cart .coupon .input-text:focus {
    border-color: var(--color-green-dark);
}

.woocommerce .cart .coupon .button {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    color: var(--color-white);
    background-color: #c0392b;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    cursor: pointer;
    transition: var(--transition-base);
}

.woocommerce .cart .coupon .button:hover {
    background-color: #e74c3c;
}

/* Update Cart Button */
.woocommerce button[name="update_cart"] {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-black);
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 0;
    transition: var(--transition-fast);
}

.woocommerce button[name="update_cart"]:hover {
    color: var(--color-green-dark);
}

.woocommerce button[name="update_cart"]:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Actions Row */
.woocommerce td.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px !important;
    border-bottom: none !important;
}

/* ============================================
   CART TOTALS
   ============================================ */

.woocommerce .cart_totals {
    float: none;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
}

.woocommerce .cart_totals h2 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: var(--weight-bold);
    color: var(--color-black);
    margin-bottom: 16px;
}

.woocommerce .cart_totals table {
    border: 1px solid #e8e5dd;
    font-family: var(--font-primary);
    border-collapse: collapse;
}

.woocommerce .cart_totals table th {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: var(--weight-bold);
    color: var(--color-black);
    padding: 14px 16px;
    border-bottom: 1px solid #e8e5dd;
    background: var(--color-white);
    text-align: left;
}

.woocommerce .cart_totals table td {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-black);
    padding: 14px 16px;
    border-bottom: 1px solid #e8e5dd;
    background: var(--color-white);
}

.woocommerce .cart_totals table td .amount {
    font-weight: var(--weight-bold);
}

/* Shipping Options */
.woocommerce .cart_totals .woocommerce-shipping-methods {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce .cart_totals .woocommerce-shipping-methods li {
    font-family: var(--font-primary);
    font-size: 13px;
    padding: 4px 0;
}

.woocommerce .cart_totals .woocommerce-shipping-methods label {
    font-family: var(--font-primary);
    cursor: pointer;
}

.woocommerce .cart_totals .woocommerce-shipping-methods input[type="radio"] {
    accent-color: var(--color-green-dark);
    margin-right: 6px;
}

.woocommerce .cart_totals .shipping-destination {
    font-size: 12px;
    color: var(--color-green-dark);
    margin-top: 8px;
}

.woocommerce .cart_totals .shipping-destination a {
    color: var(--color-green-dark);
    text-decoration: underline;
}

/* Recurring Totals */
.woocommerce .cart_totals .recurring-totals th,
.woocommerce .cart_totals .recurring-totals td {
    font-size: 13px;
}

/* Proceed to Checkout Button */
.woocommerce .wc-proceed-to-checkout a.checkout-button {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
    background-color: #c0392b;
    border: none;
    border-radius: 50px;
    padding: 18px 32px;
    text-align: center;
    display: block;
    width: 100%;
    transition: var(--transition-base);
}

.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
    background-color: #e74c3c;
}

.page-header {
    display: none;
}

.container.main-wrapper.custom-meal-product .page-content {
    padding-top: 100px;
}

.woocommerce-cart .woocommerce {
    max-width: 1180px;
    margin: 0 auto;
}

.woocommerce table.shop_table .product-remove {
    width: 30px;
    min-width: 30px;
    max-width: 30px;
    padding: 20px 8px !important;
}

.woocommerce table.shop_table .product-thumbnail {
    width: 80px;
    min-width: 80px;
    padding-left: 0 !important;
}

.woocommerce table.shop_table {
    table-layout: fixed !important;
    width: 100%;
}

.woocommerce table.shop_table .product-remove {
    width: 40px;
}

.woocommerce table.shop_table .product-thumbnail {
    width: 80px;
}

.woocommerce table.shop_table .product-name {
    width: auto;
}

.woocommerce table.shop_table .product-price {
    width: 250px;
}

.woocommerce table.shop_table .product-quantity {
    width: 130px;
}

.woocommerce table.shop_table .product-subtotal {
    width: 120px;
}

.woocommerce table.shop_table .product-remove {
    width: 140px !important;
    min-width: 140px !important;
    max-width: 140px !important;
    border-block-start: 0px solid hsla(0, 0%, 50%, .502);
}

.woocommerce table.shop_table .product-subtotal {
    border-block-start: 0px solid hsla(0, 0%, 50%, .502);
}


.woocommerce table.shop_table thead th {
    background: #292D35;
}


th.product-remove {
    border-top-left-radius: 24px !important;
    -webkit-background-clip: padding-box !important;
    -webkit-border-top-left-radius: 24px !important;
    -webkit-background-clip: padding-box !important;
    -moz-border-radius-topleft: 24px;
    -moz-background-clip: padding;
}

th.product-subtotal {
    border-top-right-radius: 24px !important;
    -webkit-background-clip: padding-box !important;
    -webkit-border-top-right-radius: 24px !important;
    -webkit-background-clip: padding-box !important;
    -moz-border-radius-topright: 24px;
    -moz-background-clip: padding;
}

table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th {
    background-color: transparent;
}

.woocommerce table.shop_table td {
    padding: 29px 16px;
}


span.subscription-option-details * {
    color: #557420;
    font-weight: 600;
    line-height: 21px;
}

li.one-time-option * {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px;
}

.woocommerce-cart  button.plus.qib-button {
    background-color: #557420 !important;
    border-top-right-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
    color: white !important;
}

.woocommerce-cart  button.minus.qib-button{
    background-color: #557420 !important;
    border-top-left-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
    color: white !important;
}

.woocommerce table.shop_table td {
    border-left: 1px solid #e8e5dd;
}

.woocommerce table.shop_table .product-remove {
    width: 60px !important;
    min-width: 60px !important;
    max-width: 60px !important;
    border-block-start: 0px solid hsla(0, 0%, 50%, .502);
    text-align: center;
}

.woocommerce table.shop_table .product-thumbnail {
    width: 120px;
    margin: 0 auto;
    text-align: center;
    padding-left: 16px !important;
}

.woocommerce table.shop_table .product-thumbnail * {
    text-align: center;
    margin: 0 auto;
}

.woocommerce-cart  .quantity .qty {
    font-weight: 500;
}

table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents th {
    font-size: 17px;
    text-transform: capitalize !important;
}

.woocommerce-cart .container.main-wrapper.custom-meal-product{
    background: white;
}

.woocommerce table.shop_table td.product-subtotal {
    border-right: 1px solid #e8e5dd;
}

.woocommerce .cart .coupon .button {
    background-color: #da2424 !important;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button {
    background-color: #da2424 !important;
}

.woocommerce td.actions {
    display: table-cell;
}

.woocommerce .cart .coupon {
    display: block;
}

.woocommerce-cart .coupon label {
    width: 100% ! IMPORTANT;
    display: block !important;
    text-align: left;
}

.woocommerce table.shop_table td.actions .coupon .input-text {
    padding: 10px 24px 9px;
    font-size: 12px;
    margin-right: 0;
    border: 0;
    width: 200px !important;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 0 none;
}

label[for="coupon_code"] {
    opacity: 0.75;
    margin-bottom: 10px;
}

.woocommerce .cart .coupon .button {
    height: 39px;
}

button.button[name="update_cart"] {
    font-size: 15px;
    letter-spacing: 0;
    padding: 10px 15px;
}

button.button[name="update_cart"]:hover {
    background: #557420;
    color: white;
}

.woocommerce table.shop_table td {
    border-left: 1px solid #e8e5dd !important;
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    width: 85%;
    max-width: 750px;
}


tr.cart-subtotal td {
    text-align: right !important;
}

.woocommerce .cart_totals table td {
    text-align: right;
}

.cart_totals th {
    text-align: right !important;
}

.woocommerce .cart_totals table tr.woocommerce-shipping-totals.shipping td {
    text-align: left;
}

.woocommerce .cart_totals table tr.woocommerce-shipping-totals.shipping td label {
    font-size: 16px;
    font-weight: 600;
}

.woocommerce .cart_totals table tr.woocommerce-shipping-totals.shipping p.woocommerce-shipping-destination {
    font-size: 14px;
    margin-top: 17px;
    font-weight: 400 !important;
    color: #292d35;
}

.woocommerce table.shop_table tr.order-total td {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 18px;
}

tr.recurring-totals * {
    font-size: 16px !important;
}

tr.woocommerce-shipping-totals.shipping th {
    vertical-align: middle !important;
    font-size: 16px;
}

.woocommerce-cart .cart-collaterals .cart_totals table th {
    width: 50% !important;
    vertical-align: middle;
    font-size: 16px;
}

.woocommerce table.shop_table td.actions {
    background: white !important;
    border: 0 !important;
}

.cart-collaterals .cart_totals tr td {
    font-size: 18px;
}

.woocommerce-cart a.checkout-button.button.alt.wc-forward {
    width: 278px;
    margin: 0 auto;
}

.cart-collaterals .cart_totals tr th, .cart-collaterals .cart_totals tr td {
    background-color: transparent !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.woocommerce-checkout .page-content {
    max-width: 1180px;
    margin: 0 auto;
}

.woocommerce-checkout .container.main-wrapper.custom-meal-product {
    background: white;
}

.woocommerce-info {
    border-top-color: #1e85be;
    border-top: 0 none;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    background-clip: border-box;
    padding: 1em 2em 1em 3.5em;
    margin: 0 0 2em;
    position: relative;
    background-color: #f6f5f8;
    color: #515151;
    /* border-top: 3px solid #720eec; */
    list-style: none outside;
    width: auto;
    word-wrap: break-word;
    font-size: 16px;
}

.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
    width: 100%;
    display: block;
    margin: 0 auto;
    color: rgba(0, 0, 0, 0.8);
    padding: 22px 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    border-radius: 36px;
    background-clip: border-box;
    font-family: 'Open Sans', sans-serif;
    font-family: var(--font-main), sans-serif;
    font-weight: 400;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.woocommerce-checkout form .form-row {
    margin-bottom: 20px;
}

.select2-container .select2-selection--single {
    text-align: left;
    padding: 14px 25px 12px;
    font-size: 14px;
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    border-radius: 36px;
    background-clip: border-box;
    font-family: 'Open Sans', sans-serif;
    font-family: var(--font-main), sans-serif;
    font-weight: 400;
}


h3#order_review_heading {
    margin-top: 40px;
}

table.shop_table.woocommerce-checkout-review-order-table th.product-name {
    border-top-left-radius: 24px !important;
    border: 0 !important;
    font-size: 16px;
}

table.shop_table.woocommerce-checkout-review-order-table th.product-total {
    border-top-right-radius: 24px !important;
    border: 0 !important;
    font-size: 16px;
}

table.shop_table.woocommerce-checkout-review-order-table thead {
    border-top-left-radius: 24px !important;
    border-top-right-radius: 24px !important;
}

table.shop_table.woocommerce-checkout-review-order-table tr.cart_item td {
    font-weight: 700;
    font-size: 16px;
    padding: 19px 16px;
}

table.shop_table.woocommerce-checkout-review-order-table tr.cart-subtotal th {
    text-align: right;
    border: 0;
    vertical-align: middle;
}

table.shop_table.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping th {
    text-align: right;
    border: 0;
    vertical-align: middle;
}

table.shop_table.woocommerce-checkout-review-order-table tr.order-total th {
    text-align: right;
    border: 0;
    vertical-align: middle;
}

table.shop_table.woocommerce-checkout-review-order-table tr.recurring-totals th {
    text-align: right;
    border: 0;
    vertical-align: middle;
}

table.shop_table.woocommerce-checkout-review-order-table tr.shipping th {
    text-align: right;
    border: 0;
    vertical-align: middle;
}

table.shop_table.woocommerce-checkout-review-order-table ul#shipping_method {
    opacity: 0.75;
}

table.shop_table.woocommerce-checkout-review-order-table ul#shipping_method li {
    margin-bottom: 20px !important;
}


table.shop_table.woocommerce-checkout-review-order-table ul#shipping_method li label {
    font-weight: 500;
    color: rgba(41, 45, 53, 1);
}

table.shop_table.woocommerce-checkout-review-order-table tr.cart-subtotal td {
    text-align: left !important;
}

table.shop_table.woocommerce-checkout-review-order-table span.woocommerce-Price-amount.amount bdi {
    font-weight: 600;
    font-size: 18px;
}

table.shop_table.woocommerce-checkout-review-order-table tr.cart-subtotal th {
    vertical-align: middle;
}

table.shop_table.woocommerce-checkout-review-order-table tr.recurring-totals th {
    padding: 16px 12px;
}

table.shop_table.woocommerce-checkout-review-order-table tr.shipping td {
    font-weight: 400 !important;
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot {
    border-top: 3px solid #000;
}

input#payment_method_cod {
    display: inline-block !important;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: white;
    border: 0;
}

ul.wc_payment_methods.payment_methods.methods {
    border-bottom: 0 !important;
}

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    padding: 12px 40px;
    float: left;
    background-color: #557420;
    padding-right: 36px;
    padding-left: 36px;
    border-radius: 36px;
}


.ltx-footer-wrapper {
    background-color: #171422;
    background-color: var(--black);
    background-position: center bottom;
    background-repeat: no-repeat;
    border-color: #D6111E;
    border-color: var(--main);
    margin-top: 0px;
}

.ltx-footer-wrapper {
    background-image: url(https://prepsuccessmeals.com/wp-content/uploads/2020/05/PSM_Wallpaper.png) !important;
}

body.admin-bar .ltx-footer-wrapper {
    padding-bottom: 1px;
}

.ltx-overlay-gray-waves, .ltx-overlay-main-waves, .ltx-overlay-second-waves, .ltx-overlay-white-waves, .ltx-overlay-black-waves {
    display: block;
    height: 64px;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
    margin-top: -64px;
    background-color: #F4F2E9;
    background-color: var(--gray);
    mask-image: url(https://prepsuccessmeals.com/wp-content/themes/hello-elementor-2/assets/images/wave.svg);
    -webkit-mask-image: url(https://prepsuccessmeals.com/wp-content/themes/hello-elementor-2/assets/images/wave.svg);
    mask-size: 1940px;
    -webkit-mask-size: 1940px;
    position: absolute;
    left: -15px;
    right: 0;
}

.ltx-overlay-main-waves {
    background-color: #557420;
}

.ltx-footer-wrapper .ltx-overlay-main-waves {
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
}

.ltx-footer-wrapper .ltx-overlay-main-waves {
    margin-top: -72px;
}

.ltx-overlay-black-waves {
    background-color: #171422;
    background-color: #292D35;
}

#ltx-widgets-footer {
    color: #fff;
    padding: 0px 0 0px 0;
    position: relative;
}

#ltx-widgets-footer .row.row-center-x {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.footer-widget-area {
    padding-top: 60px;
}

.footer-widget-area:not(.ltx-fw) {
    padding-bottom: 60px;
}

.footer-widget-area .widget {
    background-color: transparent;
}

.footer-widget-area .widget_text {
    text-align: left;
}

.footer-widget-area .widget:last-child {
    margin-bottom: 0;
}

div#custom_html-4 {
    display: none;
}

.widget_text .textwidget {
    padding: 0px 0px 0px;
    margin: -10px 0 0;
}

.footer-widget-area .textwidget.custom-html-widget {
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
}

.footer-widget-area .widget_text .textwidget {
    padding-bottom: 0;
}

.footer-widget-area a:not(.btn) {
    color: #fff;
}

.footer-widget-area .header-widget {
    padding: 0px 0px 0;
    margin: 0px 0 40px 0;
    font-size: 30px;
    line-height: 1.2em;
    text-align: left;
    font-weight: 700;
    display: block;
    color: #D6111E;
    color: var(--main);
    border-bottom: 0 none;
    position: relative;
    text-transform: none;
    color: #fff;
}

.footer-widget-area .textwidget.custom-html-widget {
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
}

.footer-widget-area .widget_text .textwidget {
    padding-bottom: 0;
}

.footer-widget-area .social-icons-list {
    margin-top: -24px;
    margin-left: 0px;
}

.social-icons-list li {
    margin: 26px 0 0px 0 !important;
}

.footer-widget-area .social-icons-list li {
    text-transform: none;
    margin: 24px 0 0 0px;
    padding: 0px 0 0px 40px;
    position: relative;
}

.footer-widget-area a:not(.btn) {
    color: #fff;
}

.footer-widget-area .social-icons-list span.ltx-ic {
    font-size: 22px;
    position: absolute;
    left: 0px;
    top: 5px;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #D6111E;
    color: #557420;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-clip: border-box;
    width: 24px;
    height: 24px;
    line-height: 24px;
    margin-right: 0px;
}

span.ltx-ic.icon.icon-location:before {
    background: url(https://prepsuccessmeals.com/wp-content/uploads/2026/07/locationicon.webp);
    content: "";
    height: 26px;
    width: 26px;
}

section#ltx-widgets-footer .col-lg-4.col-md-6.col-sm-12.col-ms-12.clearfix:last-child {
    display: none;
}

.ltx-footer-wrapper {
    background-color: #171422;
    background-color: #292D35;
    background-position: center bottom;
    background-repeat: no-repeat;
    border-color: #D6111E;
    border-color: var(--main);
    margin-top: 0px;
}

.copyright-block {
    position: relative;
    color: #fff;
    color: var(--white);
    text-align: left;
    padding: 20px 0 20px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.25);
}

.copyright-block .container {
    position: relative;
}

.copyright-block p {
    margin-bottom: 0;
}

div.ltx-footer-wrapper > footer > div > p:nth-child(1) > a{
    color: #fff;
}

.copyright-block * {
    color: white;
}

section.reviews {
    padding-bottom: 200px;
}

span.ltx-ic.icon.icon-phone-call:before {
    content: "";
    background: url(https://prepsuccessmeals.com/wp-content/uploads/2026/07/phoneicon.webp);
    width: 30px;
    height: 30px;
}


@font-face {
  font-family: 'ltx-font';
  src: url('../fonts/ltx-font.eot?67100412');
  src: url('../assets/fonts/ltx-font.eot?67100412#iefix') format('embedded-opentype'), url('../fonts/ltx-font.woff2?67100412') format('woff2'), url('../fonts/ltx-font.woff?67100412') format('woff'), url('../fonts/ltx-font.ttf?67100412') format('truetype'), url('../fonts/ltx-font.svg?67100412#ltx-font') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "fitmeal-fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ltx-go-top {
    z-index: 10;
    zoom: 1;
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    text-align: center;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-clip: border-box;
    padding-top: 12px;
    font-size: 12px;
    font-weight: bold;
    display: block;
    color: #171422;
    color: var(--black);
    background-color: #fff;
    background-color: var(--white);
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.show {
    display: block !important;
}

.ltx-go-top.floating.scroll-bottom {
    bottom: 8px;
}

.ltx-go-top.show {
    zoom: 1;
    filter: alpha(opacity=100);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}

.ltx-go-top.floating {
    position: fixed;
    right: 20px;
}

.ltx-go-top .go-top-icon-v2 {
    display: block;
    color: #D6111E;
    color: var(--main);
    font-size: 18px;
    margin: 0 0 0px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.ltx-go-top .txt {
    font-family: 'Fira Sans', serif;
    font-family: var(--font-headers), serif;
    font-weight: 700;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    color: #171422;
    color: var(--black);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.ltx-go-top.ltx-go-top-icon .txt {
    display: none;
}

span.go-top-icon-v2.icon.icon-right-arrow:before {
    content: "\f176";
    font-family: fontawesome;
    transform: rotate(90deg);
    left: 0px;
    position: relative;
    top: 1px;
}

.ltx-go-top.floating.scroll-bottom {
    background: white;
    resize: block;
}

.woocommerce-cart main#content {
    margin-bottom: 200px;
}

.contact-page {
    background-color: white;
}

.contact-info__icon {
    width: 36px;
    height: 36px;
}


.contact-info__label {
    font-size: 18px;
    margin-bottom: 17px;
}

.contact-info-section {
    border: 0;
}

.contact-form__subtitle {
    font-family: 'Yellowtail', cursive;
    color: #557420;
}

.row.contact-form .wpcf7-checkbox.wpcf7-form-control {
    border: 0 !important;
    margin-top: 5px !important;
    background: transparent !important;
    color: #F3F5ED !important;
    color: #888a8f !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 64px !important;
}

.faq__sidebar-title {
    font-size: 52px;
    line-height: 72px;
}

.faq__grid {
    grid-template-columns: 480px 1fr;
}

.faq-page {
    background: white;
    padding: 90px 0 280px;
}

.faq__sidebar-text {
    font-style: normal;
}

.faq__sidebar-buttons {
    justify-content: space-between;
}


.faq__sidebar-btn {
    background: #557420;
}


.faq__sidebar-btn:last-child {
    margin-right: 60px;
}

.faq__social-title {
    font-size: 30px;
}

.faq__social-icons a {
    border: 0;
    padding: 0;
    font-size: 54px;
    color: #557420;
    margin-left: 30px;
}

.faq__item {
    background-color: #F3F5ED !important;
    border-radius: 24px !important;
}

.faq__question:hover {
    background: #f3f5ed;
    color: var(--color-black);
}
.faq__question:focus {
    background: #f3f5ed;
    color: var(--color-black);
}
    

.faq__item.is-open .faq__answer {
    background: white;
}

.faq__answer-inner {
    padding: 24px 24px 14px;
    color: rgba(41, 45, 53, 1);
}

.faq__answer-inner p {
    color: rgba(41, 45, 53, 1);
    font-size: 14px;
    line-height: 31px;
}

.faqhow {
    margin-top: 100px;
}

.faqhow h2 {
    font-size: 42px;
}

.woocommerce-order-received main#content {
    padding-bottom: 200px;
}

.container.main-wrapper.custom-meal-product .page-content {
    padding-bottom: 200px;
}


.woocommerce_account_subscriptions {
    max-width: 1150px;
    margin: 0 auto;
}

.woocommerce_account_subscriptions table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0px;
}

.woocommerce_account_subscriptions table th {
    color: white !important;
    background-color: #292d35 !important;
    background-color: var(--black);
    color: #fff;
    color: var(--white);
    font-size: 18px;
    font-family: 'Fira Sans', serif;
    font-family: var(--font-headers), serif;
    font-weight: 700;
    text-transform: none;
}

.woocommerce_account_subscriptions table tr:first-child th:first-child {
    -webkit-border-top-left-radius: 24px;
    -webkit-background-clip: padding-box;
    -moz-border-radius-topleft: 24px;
    -moz-background-clip: padding;
    border-top-left-radius: 24px;
}

.woocommerce_account_subscriptions table tr:first-child th:last-child {
    -webkit-border-top-right-radius: 24px;
    -webkit-background-clip: padding-box;
    -moz-border-radius-topright: 24px;
    -moz-background-clip: padding;
    border-top-right-radius: 24px;
}


.woocommerce_account_subscriptions table th {
    line-height: 40px;
    margin: 0;
}

.woocommerce_account_subscriptions table tr:first-child th:last-child{
    height: 72px !important;
    border: 0;
}

.woocommerce_account_subscriptions td.subscription-actions.order-actions.woocommerce-orders-table__cell {
    margin: 0;
    display: block !important;
    text-align: center;
}

.woocommerce_account_subscriptions tr.order.woocommerce-orders-table__row>td {
    padding-bottom: 35px;
    padding-top: 35px;
}

.page-id-38422 {
    background: #f6f7f7;
}

.woocommerce_account_subscriptions td.subscription-actions.order-actions.woocommerce-orders-table__cell a.woocommerce-button.button.view {
    background: #557420;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 40px;
    color: white;
    text-decoration: none;
    border-radius: 36px;
    min-width: 145px;
    position: relative;
}



table.woocommerce-orders-table.woocommerce-MyAccount-orders a.woocommerce-button.button.view {
    background-color: #da2424;
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 40px;
    border-radius: 36px;
    display: block;
    margin-top: 7px;
}

table.woocommerce-orders-table.woocommerce-MyAccount-orders a.woocommerce-button.button.pay{
    background-color: #da2424;
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 40px;
    border-radius: 36px;
    display: block;
    margin-top: 7px;
    text-align: center;
}


.page-id-38456 {
    background: white;
}

.page-id-38456 .container.main-wrapper.custom-meal-product .page-content{
    max-width: 1080px;
    margin: 0 auto;
}

.page-id-38456 .container.main-wrapper.custom-meal-product .page-content h2 {
    padding-top: 30px;
    font-size: 46px;
    margin-bottom: 25px;
}

.page-id-38456 .container.main-wrapper.custom-meal-product hr {
    margin-top: 50px;
}

.page-id-38456 .container.main-wrapper.custom-meal-product  .page-content ul {
    list-style: disc;
    padding-left: 30px;
}

.page-id-38456 .container.main-wrapper.custom-meal-product  .page-content ul li {
    margin-bottom: 20px;
}

.page-id-38456 .container.main-wrapper.custom-meal-product .page-content>div {
    margin-bottom: 20px;
}

nav.woocommerce-MyAccount-navigation {
	visibility: hidden !important;
	display: none !important;
}
.woocommerce-account div#ltx-preloader, .page-edit-my-subscription div#ltx-preloader{
	display: none !important;
}
div#ltx-preloader{
	display: none !important;
}
.subscription-actions {
	display: flex !important;
	flex-wrap: wrap;
}
.subscription-actions>div {
	flex: 1 0 23%;
}
.page-id-40101 .container.main-wrapper.custom-meal-product .page-content {
    padding-top: 0;
}

.order-page-layout.orlane .product-card__badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.order-page-layout.orlane .badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1;
    white-space: nowrap;
    color: #fff;
}

.order-page-layout.orlane .badge-tag svg {
    flex-shrink: 0;
}

.order-page-layout.orlane .badge-tag--bestseller {
    background-color: var(--color-green-dark);
}

.order-page-layout.orlane .badge-tag--highprotein {
    background-color: #4a8a3f;
}

.order-page-layout.orlane .badge-tag--glutenfree {
    background-color: #5a8c1a;
}

.order-page-layout.orlane .badge-tag--grassfed {
    background-color: #4a7d06;
}

.order-page-layout.orlane .product-card__media {
    position: relative;
}

.order-page-layout.orlane .badge-tag {
    white-space: normal;
}

.order-page-layout.orlane .product-card__badges {
    width: 75px;
    border: 1px solid white;
    border-radius: 5px;
}

.order-page-layout.orlane .badge-tag {
    background: transparent;
    position: relative;
}

.order-page-layout.orlane .badge-tag::before {
    z-index: -1;
    content: '';
    background-color: var(--color-green-dark);
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 5px;
    left: 0;
    opacity: 0.8;
}

.order-page-layout.orlane .badge-tag {
    font-size: 8px;
}

.order-page-layout.orlane  .badge-tag svg {
    width: 16px;
    height: 16px;
}

.order-page-layout.orlane .badge-tag {
    gap: 0px;
}

.order-page-layout.orlane .badge-tag::before {
    border-radius: 13px;
}

.order-page-layout.orlane .product-card__badges {
    border-radius: 18px;
}

.order-page-layout.orlane .product-card__badges {
    top: 3px;
    left: 3px;
}


/**/
.new-main-container .products .products__grid .product-card {
    border-radius: 8px !important;
}
.new-main-container .products .products__grid .product-card__media {
    padding: 0 !important;
}
.new-main-container .products .products__grid {
    gap: 4px !important;
}
.page-id-40101 main#content {
    padding: 0;
}
.new-main-container .products .products__grid .product-card__image {
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.new-main-container .products .products__grid .product-card__media {
    height: 180px !important;
}
.new-main-container .products .products__grid .product-card__title {
    margin-top: 5px !important;
    margin-bottom: 9px !important;
    font-size: 15px !important;
    height: 30px;
}
.new-main-container .products .products__grid .product-card__meta li span:first-child {
    order: 1;
}
.new-main-container .products .products__grid .product-card__offers .offer.offer--subscription {
    border: 0 !important;
    padding: 0 !important;
}
.order-page-layout.orlane .product-card__offers button.offer.offer--subscription {
    font-size: 9px !important;
    color: #8fb746 !important;
    font-weight: 600 !important;
}
.new-main-container .products .products__grid .product-card__add {
    padding: 6px 10px !important;
    font-size: 10px !important;
    color: white !important;
    background: #65951b !important;
}
.new-main-container .products .products__grid .product-card__offers {
    gap: 0 !important; 
}
.new-main-container .products .products__grid .product-card__title {
    padding-left: 0 !important; 
}
.page-id-40101 .vc_column-inner {
    padding-left: 8px;
    padding-right: 8px;
}
.order-page-layout.orlane button.offer.offer--onetime {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #9b9b9d !important;
}
.order-page-layout.orlane .new-main-container .products .products__grid .product-card__content {
    padding-bottom: 24px;
}
.order-page-layout.orlane .new-main-container .products .products__grid .product-card__offers {
    margin-bottom: 5px;
}
.order-page-layout.orlane .new-main-container .products .products__grid .product-card__offers .offer.offer--subscription {
    line-height: 5px;
}
.order-page-layout.orlane button.offer.offer--onetime span.woocommerce-Price-amount.amount {
    color: #9b9b9d !important;
}
.order-page-layout.orlane button.offer.offer--onetime span.woocommerce-Price-amount.amount bdi {
    color: #9b9b9d !important;
}
.order-page-layout.orlane button.offer.offer--onetime span {
    color: #9b9b9d !important;
}
.order-page-layout.orlane .new-main-container .products .products__grid .product-card__offers .offer {
    font-size: 10px;
    padding-top: 0 !important;
    padding-bottom: 9px;
    font-weight: 700;
    letter-spacing: 0.2px !important;
}
.new-main-container .products .products__grid .product-card {
    border: 1px solid #e1e1e1;
}

.order-page-layout.orlane .product-card__qty-control .qty-btn {
    width: 20px !important;
    height: 20px !important;
    font-size: 20px;
    padding: 0 !important;
} 
.order-page-layout.orlane .product-card__qty-control .qty-label {
    padding: 0 !important;
}
.order-page-layout.orlane .product-card__qty-control.has-items {
    margin-top: 0px;
    padding: 1px 6px;
}
.order-page-layout.orlane button.product-card__add {
    position: relative;
}
.order-page-layout.orlane button.product-card__add::before {
    content: '';
    background-image: url(https://prepsuccessmeals.com/wp-content/themes/hello-elementor/assets/images/cart-iconw.svg);
    width: 25px;
    height: 25px;
    position: absolute;
    left: 38px;
    right: 0;
    background-repeat: no-repeat;
    background-size: 49%;
    filter: invert(1);
    top: 4px;
}
.new-main-container .products .products__grid .product-card__meta li span {
    line-height: 6px;
}
.badge-tag {
    font-size: 8px;
    padding: 4px 7px;
    gap: 3px;
}

.badge-tag svg {
    width: 10px;
    height: 10px;
}

.product-card__badges {
    top: 6px;
    left: 6px;
    gap: 4px;
}

.order-page-layout.orlane  .badge-tag svg {
    width: 16px;
    height: 16px;
}

.order-page-layout.orlane .new-main-container .products .products__grid .product-card__media {
    max-height: 225px;
    height: 225px !important;
}

.order-page-layout.orlane .new-main-container .products .products__grid {
    gap: 18px !important;
}

.order-page-layout.orlane .new-main-container .products .products__grid .product-card__title {
    font-size: 18px !important;
}

.order-page-layout.orlane .product-card__offers button.offer.offer--subscription {
    font-size: 13px !important;
}

.order-page-layout.orlane .new-main-container .products .products__grid .product-card__offers .offer.offer--subscription span.woocommerce-Price-amount.amount {
    margin-bottom: 13px !important;
}

.order-page-layout.orlane .product-card__actions {
    margin-top: 9px;
}

.order-page-layout.orlane .product-card__qty-control.has-items {
    margin-top: 0px;
    padding: 7px 6px;
}

.order-page-layout.orlane .product-card__qty-control .qty-btn {
    width: 23px !important;
    height: 23px !important;
}

.order-page-layout.orlane .new-main-container .products .products__grid .product-card__offers .offer {
    font-size: 11px;
    padding-top: 5px !important;
}

.order-page-layout.orlane .badge-tag {
    font-size: 10px;
}

.new-main-container .products .products__grid .product-card__add {
    padding: 12px 10px !important;
    font-size: 13px !important;
    color: white !important;
    background: #65951b !important;
}

.order-page-layout.orlane button.product-card__add::before {
    width: 45px;
    height: 45px;
    left: 65px;
    top: 9px;
}

.order-page-layout.orlane .product-card__badges {
    width: 90px;
}

.summary-item-remove {
    padding: 0;
}


/*****
**********
*******/

#productsGrid .product-card {
    border-radius: 8px !important;
}
#productsGrid .product-image {
    padding: 0 !important;
}
#productsGrid {
    gap: 4px !important;
}
.page-id-40101 main#content {
    padding: 0;
}
#productsGrid .product-image img {
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
#productsGrid .product-image {
    height: 180px !important;
}
#productsGrid .product-name{
    margin-top: 5px !important;
    margin-bottom: 9px !important;
    font-size: 15px !important;
    height: 30px;
}
#productsGrid .product-nutrition li span:first-child {
    order: 1;
}
#productsGrid .product-price .subscribe-price {
    border: 0 !important;
    padding: 0 !important;
}
#productsGrid .product-price .subscribe-price {
    font-size: 9px !important;
    color: #8fb746 !important;
    font-weight: 600 !important;
}
#productsGrid .product-qty-control {
    padding: 6px 10px !important;
    font-size: 10px !important;
    color: white !important;
    background: #65951b !important;
}
#productsGrid .product-price {
    gap: 0 !important; 
}
#productsGrid .product-name {
    padding-left: 0 !important; 
}
.page-id-40101 .vc_column-inner {
    padding-left: 8px;
    padding-right: 8px;
}
#productsGrid .onetime-price {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #9b9b9d !important;
}
#productsGrid .product-card__content {
    padding-bottom: 24px;
}
#productsGrid .product-price {
    margin-bottom: 5px;
}
#productsGrid .product-price .subscribe-price {
    line-height: 5px;
}
#productsGrid .onetime-price span.woocommerce-Price-amount.amount {
    color: #9b9b9d !important;
}
#productsGrid .onetime-price span.woocommerce-Price-amount.amount bdi {
    color: #9b9b9d !important;
}
#productsGrid .onetime-price span {
    color: #9b9b9d !important;
}
#productsGrid  .product-price .offer {
    font-size: 10px;
    padding-top: 0 !important;
    padding-bottom: 9px;
    font-weight: 700;
    letter-spacing: 0.2px !important;
}
#productsGrid .product-card {
    border: 1px solid #e1e1e1;
}

#productsGrid .cat-active-everything .product-actions .product-qty-control .qty-btn {
    width: 20px !important;
    height: 20px !important;
    font-size: 20px;
    padding: 0 !important;
} 
#productsGrid .cat-active-everything .product-actions .product-qty-control .qty-label {
    padding: 0 !important;
}
#productsGrid .cat-active-everything .product-actions .product-qty-control.has-items {
    margin-top: 0px;
    padding: 1px 6px;
}
#productsGrid .product-qty-control {
    position: relative;
}
#productsGrid .product-qty-control::before {
    content: '';
    background-image: url(https://prepsuccessmeals.com/wp-content/themes/hello-elementor/assets/images/cart-iconw.svg);
    width: 25px;
    height: 25px;
    position: absolute;
    left: 38px;
    right: 0;
    background-repeat: no-repeat;
    background-size: 49%;
    filter: invert(1);
    top: 4px;
}
#productsGrid .product-nutrition li span {
    line-height: 6px;
}
.badge-tag {
    font-size: 8px;
    padding: 4px 7px;
    gap: 3px;
}

.badge-tag svg {
    width: 10px;
    height: 10px;
}

.product-card__badges {
    top: 6px;
    left: 6px;
    gap: 4px;
}

#productsGrid  .badge-tag svg {
    width: 16px;
    height: 16px;
}

#productsGrid .product-image {
    max-height: 225px;
    height: 225px !important;
}

#productsGrid {
    gap: 18px !important;
}

#productsGrid .product-name {
    font-size: 18px !important;
}

#productsGrid .product-price .subscribe-price {
    font-size: 13px !important;
}

#productsGrid .product-price .subscribe-price span.woocommerce-Price-amount.amount {
    margin-bottom: 13px !important;
}

#productsGrid .product-actions {
    margin-top: 9px;
}

#productsGrid .cat-active-everything .product-actions .product-qty-control.has-items {
    margin-top: 0px;
    padding: 7px 6px;
}

#productsGrid .cat-active-everything .product-actions .product-qty-control .qty-btn {
    width: 23px !important;
    height: 23px !important;
}

#productsGrid .product-price .offer {
    font-size: 11px;
    padding-top: 5px !important;
}

#productsGrid .badge-tag {
    font-size: 10px;
}

#productsGrid .product-qty-control {
    padding: 12px 10px !important;
    font-size: 13px !important;
    color: white !important;
    background: #65951b !important;
}

#productsGrid .product-qty-control::before {
    width: 45px;
    height: 45px;
    left: 65px;
    top: 9px;
}

#productsGrid .product-card__badges {
    width: 90px;
}

.summary-item-remove {
    padding: 0;
}

#productsGrid {
    grid-template-columns: repeat(3, 1fr);
}

.page-id-38400 {
    background: #f6f7f7;
}

#productsGrid .product-price {
    margin-bottom: 7px;
    margin-top: 19px;
}

#productsGrid .onetime-price {
    z-index: 10;
}

#productsGrid  .product-details {
    position: initial;
}

#productsGrid .product-card {
    position: relative;
}

#productsGrid .cat-active-everything .product-actions .product-qty-control.has-items {
    align-items: center;
    justify-content: space-between;
    background: #292D35 !important;
    border-radius: 50px;
    margin-top: 0px;
    padding: 7px 6px !important;
}

#productsGrid  .product-card .product-qty-control {
    height: auto;
}

#productsGrid .cat-active-everything .product-actions .product-qty-control .qty-label {
    padding: 0 !important;
    line-height: 100%;
}

#productsGrid .product-actions {
    padding-bottom: 28px;
}

#productsGrid .product-name {
    height: 42px;
}

#productsGrid .cat-active-everything .product-actions .product-qty-control .qty-label {
    color: white;
}

#productsGrid .cat-active-everything .product-actions .product-qty-control.has-items::before {
    opacity: 0;
}


#productsGrid  .product-card .product-nutrition li strong {
    font-size: 16px;
    line-height: 20px;
}

.cart-sidebar__summary-row span#cart-sidebar-subtotal bdi span {
    color: #7F8186 !important;
}


ul.wc_payment_methods.payment_methods.methods li label {
    display: flex !important;
}

.order-page-layout.orlane .new-main-container .products .products__grid .product-card__media {
    max-height: 320px;
    height: 320px !important;
}


.modal-product-card__offers button#modal-price-onetime {
    position: relative;
}

#productsGrid .product-image {
    max-height: 300px;
    height: 300px !important;
}

.check_custom_notice {
    display: none !important;
}

section.hero {
    background-image: url(https://prepsuccessmeals.com/wp-content/uploads/2026/07/hero-desktop-1536x1024-1.png);
}

section.hero {
    position: relative;
}

section.hero::after {
    content: '';
    background: white;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0.1;
}

.hero__grid {
    z-index: 10;
    position: relative;
}


td.subscription-actions.order-actions.woocommerce-orders-table__cell.woocommerce-orders-table__cell-subscription-actions.woocommerce-orders-table__cell-order-actions {
    height: 116px !important;
}

.product-card__badges {
    display: none !important;
}

span.badge {
    display: none !important;
}





/* ============================================
   RESPONSIVE
   ============================================ */
   

   

   
@media (min-width: 1600px) {
   section.how-it-works {
        background-position: 100% 50%;
    }
}

@media (min-width: 1800px) {
   .local-story__content .container {
        padding-left: 250px;
    }
}

@media (min-width: 2000px) {
   .local-story__content .container {
        padding-left: 350px;
    }
}

@media (min-width: 2200px) {
   .local-story__content .container {
        padding-left: 450px;
    }
    .local-story__image {
        flex: 1 0 40%;
    }
}

   
@media (max-width: 1500px) {
   section.how-it-works {
        background-position: 140% 50%;
    }
    .local-story__content .container {
        padding-left: 50px;
    }
}

@media (max-width: 1300px) {
    section.how-it-works {
        background-position: 150% 50%;
    }
    .local-story__content .container {
        padding-left: 15px;
    }
    #productsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    .edit-subscription-layout .edit-subscription-main {
        flex: 1;
    }
    .edit-subscription-layout {
        flex-wrap: wrap;
        display: flex;
        gap: 30px;
        max-width: 1450px;
        margin: 0 auto;
        padding: 20px;
    }
    .edit-subscription-layout .edit-subscription-main {
        width: 44%;
    }
}
   
@media (max-width: 1200px) {
    .top-sellers__grid {
        grid-template-columns: repeat(4, 1fr);
    }
   
    .top-sellers__track .meal-card {
        flex: 0 0 calc((100% - 72px) / 4);
    }
    
    .local-story__overlay {
        padding: 20px 24px;
        gap: 16px;
    }

    .local-story__stat-text strong {
        font-size: 12px;
    }

    .local-story__stat-text span {
        font-size: 9px;
    }
   
   .review-card {
		flex: 0 0 calc((100% - 48px) / 3);
	}
	
	.local-story__inner {
        height: auto;
    }
    .local-story__overlay {
        flex-wrap: wrap;
    }
    .local-story__stat {
        flex: 1 0 48%;
    }
    .hero__grid {
        grid-template-columns: 2fr 1fr;
    }
    .why-choose__stat {
        flex: 1 0 48%;
    }
    .why-choose__stat {
        flex: 1 0 48%;
        justify-content: center;
    }
    .why-choose__stats {
        flex-wrap: wrap;
        gap: 21px;
        text-align: center;
    }
    .why-choose__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .woocommerce-cart main#content {
        max-width: 90% !important;
    }
    
    main.post-38400 {
        width: 100%;
        max-width: 100% !important;
    }
    
    .edit-subscription-main {
        padding-right: 0;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .header__menu-item a {
        padding: 10px 10px;
        font-size: 13px;
    }

    .header__action {
        padding: 10px 8px;
        font-size: 13px;
    }

    .header__action span {
        display: none;
    }

    .header__action--cart span {
        display: inline;
    }

    .header__logo img {
        width: 90px;
        height: 90px;
    }
    
    .hero__grid {
        padding: 40px 0 30px;
    }

    .hero__title {
        font-size: 42px;
    }

    .hero__trust {
        gap: 32px;
    }
    .top-sellers__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .top-sellers__track .meal-card {
        flex: 0 0 calc((100% - 40px) / 3);
    }
    .how-it-works__content {
        padding: 40px 36px;
    }

    .how-it-works__step-circle {
        width: 64px;
        height: 64px;
    }

    .how-it-works__step-circle svg {
        width: 28px;
        height: 28px;
    }

    .how-it-works__connector svg:first-child {
        width: 36px;
    }

    .how-it-works__perks {
        gap: 16px;
    }
    .why-choose__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 24px;
    }

    .why-choose__stats {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }
    
    .local-story__overlay {
        flex-wrap: wrap;
        justify-content: center;
    }

    .local-story__text {
        padding-right: 20px;
    }

    .local-story__icons {
        gap: 16px;
    }
    
	.review-card {
		flex: 0 0 calc((100% - 24px) / 2);
	}
	
	.how-it-works__step-circle {
        width: 125px;
        height: 125px;
    }
    
    .how-it-works__step-circle svg {
        width: 58px;
        height: 58px;
    }
    
    .how-it-works__text {
        padding-left: 0;
    }
    
    .how-it-works__perk {
        flex: 1 0 48%;
        justify-content: center;
    }
    
    .local-story__content {
        flex: 1 0 100%;
    }
    
    .local-story__inner {
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 30px;
    }
    
    .local-story__text {
        max-width: 100%;
    }
    
    .local-story__image {
        height: 365px;
        width: 100%;
    }
    
    .review-card__text {
        padding-right: 193px;
    }
    
    .faq__grid {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }

    .faq__sidebar-title {
        font-size: 30px;
    }
}

 @media (max-width: 900px) {
     .header__menu {
        padding-left: 150px;
    }
    .header__menu-item a {
        font-size: 11px;
    }
    .hero__grid {
        grid-template-columns: 5fr 1fr;
    }
    .header__actions {
        justify-content: right;
        display: flex;
        width: 100%;
    }
 }

/* Mobile */
@media (max-width: 768px) {
    .topbar__text {
        font-size: 10px;
        letter-spacing: 0.8px;
        flex-wrap: wrap;
        gap: 4px;
    }

    .topbar__icon {
        width: 16px;
        height: 16px;
    }

    .topbar__divider {
        display: none;
    }

    .header {
        padding: 10px 0;
    }

    .header__logo img {
        width: 75px;
        height: 75px;
    }

    .header__menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 1000;
    }

    .header__menu.is-open {
        display: flex;
    }

    .header__menu-item a {
        font-size: 18px;
        padding: 16px 20px;
    }

    .header__actions {
        gap: 2px;
    }

    .header__action {
        padding: 8px 6px;
    }

    .header__action span {
        display: none;
    }

    .header__action--cart {
        padding: 8px 12px;
    }

    .header__action--cart span {
        display: inline;
        font-size: 12px;
    }

    .header__hamburger {
        display: flex;
    }
    
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 0 24px;
        text-align: center;
    }

    .hero__content {
        order: 1;
        padding: 0;
    }

    .hero__image {
        order: 0;
        justify-content: center;
    }

    .hero__image img {
        max-width: 400px;
    }

    .hero__title {
        font-size: 38px;
    }

    .hero__subtitle br {
        display: none;
    }

    .hero__cta {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__rating {
        justify-content: center;
    }

    .hero__trust {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
        padding: 28px 0;
    }
    
    .top-sellers {
        padding: 40px 0;
    }

    .top-sellers__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .top-sellers__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .top-sellers__arrow {
        width: 38px;
        height: 38px;
    }
    .top-sellers {
        padding: 40px 0;
    }

    .top-sellers__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .top-sellers__track .meal-card {
        flex: 0 0 calc((100% - 16px) / 2);
    }

    .top-sellers__arrow {
        width: 38px;
        height: 38px;
    }
    
    .how-it-works__inner {
        grid-template-columns: 1fr;
    }

    .how-it-works__content {
        padding: 40px 28px;
        order: 1;
    }

    .how-it-works__image {
        order: 0;
        max-height: 300px;
    }

    .how-it-works__steps {
        justify-content: center;
    }

    .how-it-works__perks {
        justify-content: center;
    }
     .why-choose {
        padding: 50px 0 0;
    }

    .why-choose__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
    }

    .why-choose__stats {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .local-story__inner {
        grid-template-columns: 1fr;
    }

    .local-story__content {
        padding: 40px 0;
        order: 1;
    }

    .local-story__text {
        padding-right: 0;
        max-width: 100%;
    }

    .local-story__image {
        order: 0;
        min-height: 300px;
    }

    .local-story__overlay {
        position: relative;
        background-color: var(--color-black);
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 24px 20px;
    }

    .local-story__icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .local-story__title .script-accent {
        font-size: 32px;
    }
	
	.reviews {
		padding: 50px 0 32px;
	}

	.reviews__title {
		font-size: 28px;
	}

	.review-card {
		flex: 0 0 calc(100% - 40px);
		min-width: 240px;
	}

	.reviews__footer span {
		font-size: 12px;
	}
	
	.hero__grid {
        text-align: left;
    }
    
    .hero__rating {
        justify-content: left;
    }
    
    .hero__trust {
        justify-content: left;
    }
    
    section.hero {
        background-position: 69% 50%;
    }
    
    .hero__subtitle {
        padding-right: 150px;
    }
    
    .hero__subtitle {
        font-size: 20px;
    }
    
    .hero__title {
        font-size: 55px;
    }
    
    .why-choose__stat {
        flex: 1 0 47%;
        justify-content: center;
    }
    
    .why-choose__stats {
        flex-direction: row;
    }
    
    .why-choose__stat::after {
        left: -9px;
    }
    
    .why-choose__stat-text strong {
        font-size: 15px;
    }
    
    .why-choose__stat-text span {
        font-size: 11px;
    }
    
    .why-choose__stats-bar {
        margin-top: 70px;
    }
    
    .local-story__overlay {
        position: absolute;
        bottom: 0;
    }
    
    .header__menu {
        padding-left: 0;
    }
    .how-it-works__steps {
        flex-direction: column;
        align-items: center;
    }
    .why-choose__grid {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }

    .why-choose__grid::-webkit-scrollbar {
        display: none;
    }

    .why-choose__feature {
        flex: 0 0 70%;
        min-width: 351px;
        scroll-snap-align: center;
        background: var(--color-white);
        border-radius: var(--radius-lg);
        padding: 30px 20px;
        box-shadow: var(--shadow-card);
    }

    .why-choose__feature::after {
        content: none;
    }
    
    .why-choose__arrows {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 20px;
    }

    .why-choose__arrow {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1.5px solid var(--color-gray-light);
        background: var(--color-white);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-green-dark);
        cursor: pointer;
        transition: var(--transition-fast);
    }

    .why-choose__arrow:hover {
        border-color: var(--color-green-dark);
        background: var(--color-green-dark);
        color: var(--color-white);
    }
    
    .g-review::after {
        background-repeat: no-repeat;
        background-position: right;
    }
    
    .swiper.reviews_embedder_slider.swiper-initialized.swiper-horizontal {
        padding-bottom: 0 !important;
    }
    
     .contact-info__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-info__card {
        padding: 24px 20px;
    }

    .contact-info-section {
        padding: 40px 0 20px;
    }

    .contact-form-section {
        padding: 40px 0 60px;
    }

    .contact-form__subtitle {
        font-size: 22px;
    }

    .contact-form__title {
        font-size: 22px;
    }
    
    .faq-page {
        padding: 40px 0 60px;
    }

    .faq__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .faq__sidebar {
        position: static;
        text-align: center;
    }

    .faq__sidebar-buttons {
        justify-content: center;
    }

    .faq__social-icons {
        justify-content: center;
    }

    .faq__sidebar-title {
        font-size: 28px;
    }
    
    .woocommerce table.shop_table thead {
        display: table-header-group;
    }

    .woocommerce table.shop_table td {
        padding: 12px 10px;
        font-size: 13px;
    }

    .woocommerce table.shop_table td.product-thumbnail img {
        width: 55px;
        height: 55px;
    }

    .woocommerce table.shop_table td.product-name a {
        font-size: 13px;
    }

    .woocommerce .quantity .qty {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .woocommerce .quantity .minus,
    .woocommerce .quantity .plus {
        width: 28px;
        height: 32px;
        font-size: 16px;
    }

    .woocommerce .cart_totals {
        max-width: 100%;
    }

    .woocommerce td.actions {
        flex-direction: column;
        gap: 12px;
    }

    .woocommerce .cart .coupon {
        flex-wrap: wrap;
    }
    
    table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents thead {
        display: none;
    }
    
    .woocommerce table.shop_table .product-remove {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
    
    .woocommerce table.shop_table .product-price {
        width: 100%;
    }
    
    .woocommerce table.shop_table .product-quantity {
        width: 100%;
    }
    
    .woocommerce table.shop_table .product-subtotal {
        width: 100%;
    }
    
    .woocommerce table.shop_table tbody tr.woocommerce-cart-form__cart-item.cart_item {
        margin-bottom: 45px;
    }
    
    .woocommerce table.shop_table_responsive tbody tr:first-child td:first-child, .woocommerce-page table.shop_table_responsive tbody tr:first-child td:first-child {
        border-top: 1px solid #e8e5dd !important;
    }
    
    .woocommerce table.shop_table td {
        border-left: 1px solid #e8e5dd !important;
        border-right: 1px solid #e8e5dd !important;
    }
    
    .woocommerce table.shop_table td.actions .coupon .input-text {
        width: 100% !important;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        margin-bottom: 10px;
    }
    
    .woocommerce table.shop_table td.actions {
        padding: 0 !important;
    }
    
    .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
        width: 100%;
    }
    
    .woocommerce .cart_totals table tr.woocommerce-shipping-totals.shipping td::before {
        float: none;
        text-align: left ! IMPORTANT;
        margin-bottom: 5px !important;
        font-size: 18px;
    }
    
    .woocommerce .cart_totals table tr.woocommerce-shipping-totals.shipping td {
        text-align: left !important;
    }
    
    ul#shipping_method {
        margin-top: 15px !important;
    }
    .woocommerce-page table.shop_table_responsive tbody .recurring-totals th {
        display: block;
        width: 100% !important;
    }
    label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
        font-size: 16px;
    }
    table.shop_table.woocommerce-checkout-review-order-table tr.cart_item td {
        font-weight: 700;
        font-size: 14px;
        padding: 19px 16px;
    }
    .woocommerce_account_subscriptions tr.order.woocommerce-orders-table__row>td {
        padding-left: 12px;
        padding-bottom: 15px;
        padding-top: 15px;
        padding-right: 12px;
    }
    .woocommerce_account_subscriptions td.subscription-actions.order-actions.woocommerce-orders-table__cell {
        border-bottom: 1px solid #a9a9a9;
    }
    table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions::before{
        content:none;
    }
    table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table thead {
        display: none !important;
    }
    table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table tr.woocommerce-orders-table__row {
        margin-bottom: 40px;
    }
    /**/
    #productsGrid  .products-grid .product-card {
        border-radius: 8px !important;
    }
    #productsGrid  .products-grid .product-image {
        padding: 0 !important;
    }
    #productsGrid  .products-grid {
        gap: 4px !important;
    }
    .page-id-40101 main#content {
        padding: 0;
    }
    #productsGrid  .products-grid img {
        top: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    #productsGrid  .products-grid .product-image {
        height: 180px !important;
    }
    #productsGrid  .products-grid .product-name {
        margin-top: 5px !important;
        margin-bottom: 9px !important;
        font-size: 15px !important;
        height: 30px;
    }
    #productsGrid  .products-grid .product-nutrition li span:first-child {
        order: 1;
    }
    #productsGrid  .products-grid .product-price .subscribe-price {
        border: 0 !important;
        padding: 0 !important;
    }
    #productsGrid  .product-price .subscribe-price {
        font-size: 9px !important;
        color: #8fb746 !important;
        font-weight: 600 !important;
    }
    #productsGrid  .products-grid .product-qty-control {
        padding: 6px 10px !important;
        font-size: 10px !important;
        color: white !important;
        background: #65951b !important;
    }
    #productsGrid  .products-grid .product-price {
        gap: 0 !important; 
    }
    #productsGrid  .products-grid .product-name {
        padding-left: 0 !important; 
    }
    .page-id-40101 .vc_column-inner {
        padding-left: 8px;
        padding-right: 8px;
    }
    #productsGrid  .onetime-price {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        color: #9b9b9d !important;
    }
    #productsGrid  .products-grid .product-details {
        padding-bottom: 24px;
    }
    #productsGrid  .products-grid .product-price {
        margin-bottom: 5px;
    }
    #productsGrid  .products-grid .product-price .subscribe-price {
        line-height: 5px;
    }
    #productsGrid  .onetime-price span.woocommerce-Price-amount.amount {
        color: #9b9b9d !important;
    }
    #productsGrid  .onetime-price span.woocommerce-Price-amount.amount bdi {
        color: #9b9b9d !important;
    }
    #productsGrid  .onetime-price span {
        color: #9b9b9d !important;
    }
    #productsGrid  .products-grid .product-price span {
        font-size: 10px;
        padding-top: 0 !important;
        padding-bottom: 9px;
        font-weight: 700;
        letter-spacing: 0.2px !important;
    }
    #productsGrid  .products-grid .product-card {
        border: 1px solid #e1e1e1;
    }
    
    #productsGrid  .product-qty-control.has-items .qty-btn {
        width: 20px !important;
        height: 20px !important;
        font-size: 20px;
        padding: 0 !important;
    } 
    #productsGrid  .product-qty-control.has-items .qty-label {
        padding: 0 !important;
    }
    #productsGrid  .product-qty-control.has-items.has-items {
        margin-top: 0px;
        padding: 1px 6px;
    }
    #productsGrid  .product-qty-control {
        position: relative;
    }
    #productsGrid  .product-qty-control::before {
        content: '';
        background-image: url(https://prepsuccessmeals.com/wp-content/themes/hello-elementor/assets/images/cart-iconw.svg);
        width: 25px;
        height: 25px;
        position: absolute;
        left: 38px;
        right: 0;
        background-repeat: no-repeat;
        background-size: 49%;
        filter: invert(1);
        top: 4px;
    }
    #productsGrid  .products-grid .product-nutrition li span {
        line-height: 6px;
    }
    .badge-tag {
        font-size: 8px;
        padding: 4px 7px;
        gap: 3px;
    }
    
    .badge-tag svg {
        width: 10px;
        height: 10px;
    }
    
    .product-card__badges {
        top: 6px;
        left: 6px;
        gap: 4px;
    }
    
    #productsGrid   .badge-tag svg {
        width: 16px;
        height: 16px;
    }
    #productsGrid  .products-grid .product-image {
        height: 180px !important;
    }
    #productsGrid  .product-qty-control.has-items .qty-btn {
        width: 15px !important;
        height: 15px !important;
        font-size: 17px;
        padding: 0 !important;
    }
    #productsGrid  .product-card__badges {
        width: 82px;
    }
    .edit-subscription-layout {
        padding: 0;
    }
    .psm-edit-subscription-page {
        padding-left: 8px;
        padding-right: 8px;
    }
    #productsGrid .product-card .product-nutrition li strong {
        font-size: 12px;
        line-height: 20px;
    }
    #productsGrid .product-qty-control::before {
        left: 49px;
        background-size: 72%;
        top: 10px;
    }
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card__offers .offer.offer--subscription {
        line-height: 10px !important;
    }
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card__offers .offer.offer--subscription span.woocommerce-Price-amount.amount {
        margin-bottom: 0px !important;
        top: 5px;
        position: relative;
    }
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card__offers {
        margin-bottom: 5px;
        margin-top: 11px;
    }
    section.hero {
        background-position: 19% 21% !important;
        background-size: cover !important;
        background-image: url(https://prepsuccessmeals.com/wp-content/uploads/2026/07/hero-mobile-941x1672-1.png) !important;
    }
    .hero__grid {
        padding-top: 40px !important;
        padding-bottom: 210px !important;
    }
    p.hero__subtitle {
        padding-right: 0 !important;
    }
}




/* Small mobile */
@media (max-width: 480px) {
    .topbar {
        padding: 8px 0;
    }

    .topbar__text {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .header__logo img {
        width: 65px;
        height: 65px;
    }

    .header__action--cart span {
        font-size: 11px;
    }
    
    .hero__title {
        font-size: 32px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero__image img {
        max-width: 300px;
    }

    .hero__trust {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .top-sellers__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .meal-card__body {
        padding: 12px 14px 16px;
    }

    .meal-card__name {
        font-size: 14px;
    }

    .meal-card__body .meta-text {
        font-size: 10px;
    }

    .meal-card__body .price {
        font-size: 17px;
    }

    .meal-card__body .btn--cart {
        font-size: 11px;
        padding: 8px 12px;
    }
    .top-sellers__track {
        gap: 12px;
    }

    .top-sellers__track .meal-card {
        flex: 0 0 calc(100% - 60px);
        min-width: 200px;
    }

    .meal-card__body {
        padding: 12px 14px 16px;
    }

    .meal-card__name {
        font-size: 14px;
    }

    .meal-card__body .meta-text {
        font-size: 10px;
    }

    .meal-card__body .price {
        font-size: 17px;
    }

    .meal-card__body .btn--cart {
        font-size: 11px;
        padding: 8px 12px;
    }
    .how-it-works__content {
        padding: 32px 20px;
    }

    .how-it-works__title {
        font-size: 28px;
    }

    .how-it-works__steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .how-it-works__connector {
        transform: rotate(90deg);
        padding-top: 0;
        margin: 0;
    }

    .how-it-works__perks {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    
    .why-choose__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-choose__header h2 {
        font-size: 28px;
    }
    
    .local-story__title {
        font-size: 28px;
    }

    .local-story__title .script-accent {
        font-size: 26px;
    }

    .local-story__overlay {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .local-story__icons {
        gap: 12px;
    }

    .local-story__icon-circle {
        width: 38px;
        height: 38px;
    }
	
	.reviews {
		padding: 40px 0 28px;
	}

	.reviews__title {
		font-size: 24px;
	}

	.review-card {
		flex: 0 0 calc(100% - 20px);
	}
	.how-it-works__perks {
        flex-direction: row;
        align-items: center;
        gap: 14px;
    }
    
    .why-choose__feature::after{
        content: none;
    }
    
    .why-choose__stat {
        flex-direction: column;
    }
    
    .local-story__overlay {
        bottom: 29px;
    }
    
    .hero__trust {
        align-items: baseline;
    }
    
    .meal-card__body .btn--cart {
        padding: 11px 12px;
    }
    
      
    section.hero {
        background-position: 81% 50%;
    }
    
    section.hero {
        position: relative;
    }
    
    section.hero .container {
        z-index: 10;
        position: relative;
    }
    
    section.hero {
        background-position: 43% 50%;
        background-image: url(https://prepsuccessmeals.com/wp-content/uploads/2019/06/output-assetsV2_kaQRqz4OhJewlnRcV12h_asset.png);
        background-size: 205%;
    }
    section.hero::after {
        content: '';
        width: 100%;
        display: block;
        height: 100%;
        position: absolute;
        display: block;
        top: 0;
        background: #e7e7e7;
        opacity: 0.6;
    }
    
    .header__logo img {
        width: 85px;
        height: 85px;
    }
    
    section.hero::after {
        opacity: 0.3;
    }
    
    .hero__grid {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .why-choose__feature {
        flex: 0 0 80%;
        min-width: 220px;
    }
    .why-choose__grid {
        max-width: 350px;
    }
    .contact-info__icon {
        width: 44px;
        height: 44px;
    }

    .contact-info__label {
        font-size: 17px;
    }

    .contact-form__wrapper .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance) {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .faq__sidebar-title {
        font-size: 24px;
    }

    .faq__sidebar-buttons {
        flex-direction: column;
        align-items: center;
    }

    .faq__sidebar-btn {
        width: 100%;
        max-width: 200px;
    }

    .faq__question {
        padding: 16px 18px;
        font-size: 14px;
    }

    .faq__answer-inner {
        padding: 0 18px 18px;
        font-size: 13px;
    }
    
    .woocommerce table.shop_table td.product-thumbnail {
        display: table-cell;
    }

    .woocommerce table.shop_table td.product-thumbnail img {
        width: 45px;
        height: 45px;
    }

    .woocommerce .quantity .qty {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .woocommerce .quantity .minus,
    .woocommerce .quantity .plus {
        width: 24px;
        height: 28px;
        font-size: 14px;
    }
    .faq__sidebar-title {
        font-size: 41px;
        line-height: 54px;
        text-align: left;
    }
    .faq__sidebar-buttons {
        flex-direction: row;
        align-items: center;
    }
    .faq__social-title {
        font-size: 25px;
        text-align: left;
    }
    .faqhow h2 {
        font-size: 29px;
        margin-bottom: 80px;
    }
    .faq__sidebar {
        position: relative;
        top: 0;
    }
    .faq__question {
        display: block;
    }
    .faq__question {
        white-space: normal;
    }
    .faq__answer-inner {
        padding: 18px 18px 18px;
    }
    
    /**/
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card {
        border-radius: 8px !important;
    }
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card__media {
        padding: 0 !important;
    }
    .order-page-layout.orlane .new-main-container .products .products__grid {
        gap: 4px !important;
    }
    .page-id-40101 main#content {
        padding: 0;
    }
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card__image {
        top: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card__media {
        height: 180px !important;
    }
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card__title {
        margin-top: 5px !important;
        margin-bottom: 9px !important;
        font-size: 15px !important;
        height: 30px;
    }
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card__meta li span:first-child {
        order: 1;
    }
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card__offers .offer.offer--subscription {
        border: 0 !important;
        padding: 0 !important;
    }
    .order-page-layout.orlane .product-card__offers button.offer.offer--subscription {
        font-size: 9px !important;
        color: #8fb746 !important;
        font-weight: 600 !important;
    }
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card__add {
        padding: 6px 10px !important;
        font-size: 10px !important;
        color: white !important;
        background: #65951b !important;
    }
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card__offers {
        gap: 0 !important; 
    }
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card__title {
        padding-left: 0 !important; 
    }
    .page-id-40101 .vc_column-inner {
        padding-left: 8px;
        padding-right: 8px;
    }
    .order-page-layout.orlane button.offer.offer--onetime {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        color: #9b9b9d !important;
    }
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card__content {
        padding-bottom: 24px;
    }
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card__offers {
        margin-bottom: 5px;
    }
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card__offers .offer.offer--subscription {
        line-height: 5px;
    }
    .order-page-layout.orlane button.offer.offer--onetime span.woocommerce-Price-amount.amount {
        color: #9b9b9d !important;
    }
    .order-page-layout.orlane button.offer.offer--onetime span.woocommerce-Price-amount.amount bdi {
        color: #9b9b9d !important;
    }
    .order-page-layout.orlane button.offer.offer--onetime span {
        color: #9b9b9d !important;
    }
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card__offers .offer {
        font-size: 10px;
        padding-top: 0 !important;
        padding-bottom: 9px;
        font-weight: 700;
        letter-spacing: 0.2px !important;
    }
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card {
        border: 1px solid #e1e1e1;
    }
    
    .order-page-layout.orlane .product-card__qty-control .qty-btn {
        width: 20px !important;
        height: 20px !important;
        font-size: 20px;
        padding: 0 !important;
    } 
    .order-page-layout.orlane .product-card__qty-control .qty-label {
        padding: 0 !important;
    }
    .order-page-layout.orlane .product-card__qty-control.has-items {
        margin-top: 0px;
        padding: 1px 6px;
    }
    .order-page-layout.orlane button.product-card__add {
        position: relative;
    }
    .order-page-layout.orlane button.product-card__add::before {
        content: '';
        background-image: url(https://prepsuccessmeals.com/wp-content/themes/hello-elementor/assets/images/cart-iconw.svg);
        width: 25px;
        height: 25px;
        position: absolute;
        left: 38px;
        right: 0;
        background-repeat: no-repeat;
        background-size: 49%;
        filter: invert(1);
        top: 4px;
    }
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card__meta li span {
        line-height: 6px;
    }
    .badge-tag {
        font-size: 8px;
        padding: 4px 7px;
        gap: 3px;
    }

    .badge-tag svg {
        width: 10px;
        height: 10px;
    }

    .product-card__badges {
        top: 6px;
        left: 6px;
        gap: 4px;
    }

    .order-page-layout.orlane  .badge-tag svg {
        width: 16px;
        height: 16px;
    }
    .order-page-layout.orlane .new-main-container .products .products__grid .product-card__media {
        height: 180px !important;
    }
    .order-page-layout.orlane .product-card__qty-control .qty-btn {
        width: 15px !important;
        height: 15px !important;
        font-size: 17px;
        padding: 0 !important;
    }
    .order-page-layout.orlane .product-card__badges {
        width: 82px;
    }
    #productsGrid .product-qty-control::before {
        left: 31px;
        background-size: 66%;
    }
    .edit-subscription-layout .edit-subscription-main {
        width: 100%;
    }
    #productsGrid .product-image {
        max-height: 180px;
        height: 180px !important;
    }
    #productsGrid .product-name {
        font-size: 15px !important;
        height: 30px;
    }
    #productsGrid .product-price .subscribe-price {
        letter-spacing: 0.2px !important;
    }
    #productsGrid .product-card .product-qty-control {
        height: auto;
        padding: 6px 10px !important;
        font-size: 10px !important;
        color: white !important;
        background: #65951b !important;
    }
    #productsGrid .cat-active-everything .product-actions .product-qty-control .qty-label {
        color: white;
        font-size: 10px;
    }
    #productsGrid .product-qty-control::before {
        left: 36px;
        background-size: 47%;
        top: 4px;
    }
    .product-card .onetime-price {
        font-size: 10px;
        color: #888;
    }
    #productsGrid .product-details {
        padding-top: 5px;
    }
    #productsGrid .cat-active-everything .product-actions .product-qty-control.has-items {
        padding: 0 !important;
    }
    #productsGrid .cat-active-everything .product-actions .product-qty-control .qty-btn {
        width: 23px !important;
        height: 15px !important;
        width: 15px !important;
        /* height: 15px !important; */
        font-size: 17px;
        /* padding: 0 !important; */
    }
    #productsGrid .cat-active-everything .product-actions .product-qty-control.has-items {
        padding: 3.5px !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    


}





























