
#homeContent {
    --home-image-url1: url('../../img/home/confident_joyful_healthy_man_casually_standing.png');
    --home-image-url2: url('../../img/home/pouring_chocolate_protein_shake_from_a_blender.png');
    --home-image-url3: url('../../img/home/confident_joyful_healthy_man_with_casually_leaning.png');
    --home-image-url4: url('../../img/home/hand_mixing_a_smooth_chocolate_protein_drink.png');
    --home-image-url5: url('../../img/home/confident_joyful_healthy_woman_casually_standing2.png');
    --home-image-url6: url('../../img/home/close-up_of_a_person_gently_holding_a_clear_glass.png');
    --home-image-url7: url('../../img/home/hand_stirring_a_smooth_chocolate_protein_drink.png');
    --home-image-url8: url('../../img/home/confident_joyful_healthy_woman_casually_standing.png');
    --home-image-url9: url('../../img/home/pouring_chocolate_protein_shake_from_a_blender2.png');
    --home-image-url10: url('../../img/home/tall_glass_filled_with_a_orange_flavoured_health.png');
    --home-image-url11: url('../../img/home/ultra-realistic_high-end_studio_portrait_confident.png');
}


.home-image {
    position: relative;
    filter: brightness(0.8);
    height: 100vh;
    width: auto;
    background: var(--color-white) no-repeat 50%;
    transform: scaleX(-1);
    background-position-y: top;
}


.image-1 {
    background-image: var(--home-image-url1);
    transform: scaleX(1);
    background-position-x: 60%;
}

.image-2 {
    background-image: var(--home-image-url2);
    background-position-x: 40%;
}

.image-3 {
    background-image: var(--home-image-url3);
}

.image-4 {
    background-image: var(--home-image-url4);
    background-position-x: 40%;
    transform: scaleX(1);
}

.image-5 {
    background-image: var(--home-image-url5);
}

.image-6 {
    background-image: var(--home-image-url6);
}

.image-7 {
    background-image: var(--home-image-url7);
    background-position-x: 40%;
}

.image-8 {
    background-image: var(--home-image-url8);
}

.image-9 {
    background-image: var(--home-image-url9);
}

.image-10 {
    background-image: var(--home-image-url10);
    transform: scaleX(1);
    background-position-x: 45%;
}

.image-11 {
    background-image: var(--home-image-url11);
}


.header-container {
    display: flex;
    flex-flow: column wrap;
    align-content: flex-end;
    bottom: 30vh;
    right: 0;
    text-align: end;
    color: var(--color-white);
}

@media(min-width: 450px) {
    .header-container {
        bottom: 20vh;
    }

}

.header-text-container {
    margin-right: 2rem;
}

.your-health {
    text-transform: uppercase;
    font-size: 24px;
}

.your-blend {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: bolder;
    margin-top: -10px;
}

.your-health-blend-intro {
    max-width: 700px;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 3rem;
}

.home-button-container {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 1rem;
    justify-content: end;
}

@media(min-width: 400px){

    .your-health {
       
        font-size: 2.5rem;
    }

    .your-blend {
        font-size: 2.7rem;
        margin-top: -25px;
    }
    .your-health-blend-intro {
       
        font-size: 1rem;
        
    }
}



.btn-home {
    font-size: 14px;
    box-shadow: 2px 2px 2px black;
    line-height: 2rem;
    min-width: 200px;
    background-color: var(--color-white);
    color: var(--color-secondary);
    border-bottom-right-radius: unset;
    border-top-right-radius: unset;
}

@media (min-width: 630px) {
    .btn-home {
        border-radius: 50rem;
    }
    .header-text-container {
        margin-right: 3rem;
    }
    .home-button-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.2rem;
        justify-content: end;
        margin-right: 3rem;
    }
}




@media(min-width: 780px) {
    .header-text-container {
        margin-right: 5rem;
    }

    .home-button-container {
       
        margin-right: 5rem;
    }


    .home-image {
        background-size: cover;
    }

    .image-1 {
        background-position-x: 100%;
    }

    .image-7 {
        /*        background-position-x: 70%;*/
    }


    .your-health {
        font-size: 50px;
    }

    .your-blend {
        text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
        font-size: 60px;
        font-weight: 500;
    }

    .your-health-blend-intro {
/*        max-width: 40rem;*/
        font-size: 1.1rem;
        font-weight: 500;
        margin-left: 18rem;
    }

    .btn-home {
        font-size: 16px;
        box-shadow: 2px 2px 2px black;
        line-height: 1.5rem;
        min-width: 220px;
    }
}

.btn-home:hover {
    background-color: var(--color-white);
}

.btn-home:active {
    background-color: var(--color-secondary);
    box-shadow: unset;
}

.btn-check:checked + .btn-home, .btn-home.active, .btn-home.show, .btn-home:first-child:active, :not(.btn-check) + .btn-home:active {
    background-color: var(--color-white);
    box-shadow: inset 1px 1px 1px grey;
    color: var(--color-secondary);
}

.btn-home-panel {
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-weight: 500;
    font-size: 16px;
    box-shadow: 2px 2px 2px #00000066;
    line-height: 2rem;
    min-width: 220px;
}

    .btn-home-panel:hover {
        background-color: var(--color-white);
    }

    .btn-home-panel:active {
        background-color: var(--color-secondary);
        box-shadow: unset;
    }

    .btn-check:checked + .btn-home-panel, .btn-home-panel.active, .btn-home-panel.show, .btn-home-panel:first-child:active, :not(.btn-check) + .btn-home-panel:active {
        background-color: var(--color-white);
        box-shadow: inset 1px 1px 1px grey;
        color: var(--color-secondary);
    }

/*------*/


.next-steps--panel {
    height: 400px;
    background-color: var(--color-secondary-dark);
    transform: translateY(-50px);
}

.next-steps--header {
    text-align: center;
    color: var(--color-white);
    margin: 1.5rem 1rem 1rem 1rem;
    text-transform: uppercase;
}

.next-steps {
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    align-items: center;
}




.next-steps-items {
    height: auto;
    width: 60%;
    background-color: transparent;
    border-radius: 400px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

@media(min-width: 700px) {

    .next-steps--panel {
        height: 300px;
    }

    .next-steps {
        flex-flow: row nowrap;
    }

    .next-steps--header {
        margin: 3rem 2rem 2rem 2rem;
    }

    .next-steps-items {
        margin-bottom: 1rem;
    }
}

.next-steps-items--text {
    color: #FBFCF5;
    text-transform: uppercase;
    font-weight: lighter;
    margin-bottom: 0;
    margin-top: 10px;
}

.next-steps-items--button {
    border: solid 1px rgba(84, 84, 84, 0.3);
    background-color: #545454;
    color: #8ed2c5;
    text-transform: uppercase;
    font-size: 1.3rem !important;
    font-weight: bolder;
    margin-bottom: 0;
    padding: 5px 25px;
    border-radius: 100px;
}

/*testimonials*/
.testimonial-item__name {
    font-weight: 500;
}

.testimonial-item__credential {
    font-style: italic;
}
/*-----*/
.yoga-lady {
    background: url('../../img/rebrand/momentum-banner/yoga_lady_web.svg') no-repeat 40%;
    background-size: cover;
    height: 100vh;
}

@media (min-width: 550px) {
    .yoga-lady {
        background: url('../../img/rebrand/momentum-banner/yoga_lady_web.svg') no-repeat;
        background-size: cover;
        height: 100vh;
    }
}

.momentum-text {
    display: flex;
    flex-flow: column nowrap;
    flex-basis: 16rem;
}

.momentum-logo {
    background-image: url(../../img/rebrand/momentum-banner/Momentum_logo_red.svg);
    background-size: contain;
    background-repeat: no-repeat;
    height: 13rem;
}

@media (min-width: 550px) {
    .momentum-logo {
        background-image: url(../../img/rebrand/momentum-banner/Momentum_logo_red.svg);
    }
}

.sub-text {
    font-size: 9px;
}

/*---3X4 GENETICS CO-BRANDING BANNER---*/

.genetics-banner {
    /* 3X4 brand accent colours — local to this banner, not part of the core palette */
    --gx-purple: #663399;
    --gx-blue: #5882C8;
    --gx-gold: #C5A846;
    --gx-teal: #58C2B5;
    --gx-teal-dark: #4AB0A4;
    --gx-ink: #282D2C;

    display: flex;
    justify-content: center;
    padding: 2.5rem 1.25rem;
}

.genetics-banner__card {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 1440px;
    border: 1px solid #E8ECEF;
    border-radius: 10px;
    background: #FAFBFC;
    overflow: hidden;
}

.genetics-banner__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(197, 168, 70, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 10% 100%, rgba(102, 51, 153, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 0%, rgba(88, 130, 200, 0.03) 0%, transparent 35%);
    z-index: 0;
    pointer-events: none;
}

.genetics-banner__card > * {
    position: relative;
    z-index: 1;
}

.genetics-banner__accent {
    width: 5px;
    flex-shrink: 0;
    background: linear-gradient(180deg, var(--gx-purple) 0%, var(--gx-blue) 50%, var(--gx-gold) 100%);
}

.genetics-banner__content {
    flex: 1;
    padding: 36px 36px 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.genetics-banner__logos {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.genetics-banner__logo {
    display: block;
    width: auto;
}

.genetics-banner__logo--3x4 {
    height: 26px;
}

.genetics-banner__logo--tb {
    /* black wordmark sized so its text matches the 3X4 "GENETICS" text — adjust to taste */
    height: 18px;
}

.genetics-banner__logo-divider {
    width: 1px;
    height: 20px;
    background: #CCC;
}

.genetics-banner__badge {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gx-purple);
    border: 1px solid rgba(102, 51, 153, 0.25);
    padding: 3px 10px;
    border-radius: 100px;
    margin-left: 6px;
}

.genetics-banner__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gx-ink);
    line-height: 1.3;
    margin-bottom: 12px;
}

.genetics-banner__text {
    font-size: 13.5px;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
}

.genetics-banner__instruction {
    font-size: 12.5px;
    font-weight: 500;
    color: #777;
    line-height: 1.6;
    margin-bottom: 22px;
}

.genetics-banner__instruction strong {
    color: var(--gx-teal);
    font-weight: 600;
}

.genetics-banner__cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.genetics-banner__cta-primary {
    display: inline-block;
    background: var(--gx-teal);
    color: var(--color-white);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.genetics-banner__cta-primary:hover {
    background: var(--gx-teal-dark);
    color: var(--color-white);
}

.genetics-banner__cta-secondary {
    font-size: 11.5px;
    font-weight: 400;
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.genetics-banner__cta-secondary:hover {
    color: var(--gx-purple);
}

.genetics-banner__cta-secondary span {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.genetics-banner__image {
    flex-shrink: 0;
    width: 420px;
    min-height: 280px;
    overflow: hidden;
    background: #f0f0ee;
}

.genetics-banner__image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

@media (max-width: 800px) {
    .genetics-banner__card {
        flex-direction: column;
    }

    .genetics-banner__accent {
        order: -1;
        width: auto;
        height: 4px;
        background: linear-gradient(90deg, var(--gx-purple) 0%, var(--gx-blue) 50%, var(--gx-gold) 100%);
    }

    .genetics-banner__content {
        padding: 28px 24px;
    }

    .genetics-banner__title {
        font-size: 20px;
    }

    .genetics-banner__cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .genetics-banner__image {
        order: 1;
        width: 100%;
        min-height: 200px;
        height: 220px;
    }
}

/*---PRODUCT PROPERTIES---*/

.product-properties {
    background-color: var(--color-secondary-dark);
    color: var(--color-white);
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    padding: 3rem 1rem 3rem 1rem;
    font-weight: 400;
    text-transform: uppercase;
}

.product-properties-item-divider {
    margin: 0 0.5rem 0 0.5rem;
}


/*---PRODUCT VARIATIONS---*/

.product-options-container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: center;
    background-color: transparent;
    margin-left: 4rem;
    margin-right: 4rem;
}


.product-options-item--image__drink {
    min-width: 20rem;
    min-height: 20rem;
    background: url("../../img/rebrand/drink-image.png") no-repeat;
    background-size: 30rem;
    background-position-x: center;
    border-radius: 100rem;
}

.product-options-item--image__shake2 {
    min-width: 20rem;
    min-height: 20rem;
    background: url("../../img/rebrand/shake-image.png") no-repeat;
    background-size: 30rem;
    background-position-x: center;
    border-radius: 50rem;
}

.product-options-item--image__porridge {
    min-width: 20rem;
    min-height: 20rem;
    background: url("../../img/rebrand/porridge-image.png") no-repeat;
    background-size: 30rem;
    background-position-x: center;
    border-radius: 50rem;
}


.product-options-item--text {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    margin: 3rem 0 3rem 0;
    text-align: center;
}

    .product-options-item--text.product-options-item--text__top {
        display: none;
    }

    .product-options-item--text.product-options-item--text__bottom {
        display: flex;
    }

.product-options--text__heading {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.product-options--text__info {
    font-size: 1rem;
}

@media (min-width: 1000px) {
    .product-options-container {
        flex-flow: row nowrap;
        align-items: center;
        background-color: rgba(37, 42, 41, 0.03);
        justify-content: space-evenly;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }


    .product-options-item--image__shake2 {
        background-position-x: left;
        background-size: 30rem;
        height: 25rem;
        min-width: 25rem;
        margin-left: 3rem;
    }

    .product-options-item--image__drink {
        background-position-x: right;
        background-size: 30rem;
        height: 25rem;
        min-width: 25rem;
        margin-right: 3rem;
    }

    .product-options-item--image__porridge {
        background-position-x: left;
        background-size: 30rem;
        height: 25rem;
        min-width: 25rem;
        margin-left: 3rem;
    }

    .product-options-item--text {
        max-width: 50rem;
        margin: 0rem 5rem 0rem 5rem;
    }

        .product-options-item--text.product-options-item--text__top {
            display: flex;
        }

        .product-options-item--text.product-options-item--text__bottom {
            display: none;
        }

    .product-options--text__heading {
        font-size: 1.6rem;
    }

    .product-options--text__info {
        font-size: 1.2rem;
    }
}
