/* Taurus */

:root {
    --deep-green: #060B08;
    --green: #182D20;
    --light-green: #81B59D;
    --mid-green: #436952;
    --red: #F1471D;
    --dark-red: #C03A1A;
    --cream: #FFF9EF;
    --dark-cream: #F0E7D6;
    --tan: #D6C7AD;
    --grey-brown: #38382F;

}

@font-face {
    font-family: Manuka;
    src: url(../fonts/Manuka-Bold.woff2);
}

@font-face {
    font-family: Manuka;
    src: url(../fonts/Manuka-Black.woff2);
    font-weight: bold;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 100%;
    font-family: "Inter", sans-serif;
    background: var(--deep-green);
    overflow-x: clip;
}

body {
    padding: 0;
    margin: 0;
    overflow-x: clip;
}

img {
    max-width: 100%;
}

.center {
    max-width: 1264px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

.hamburger {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1010;

    span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--cream);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    &.is-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    &.is-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.row {
    display: flex;
}

header {
    padding: 0.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;

    &.scrolled {
        background-color: rgba(6, 11, 8, 0.75);
        backdrop-filter: blur(10px);
        padding: 0.25rem 1rem;
    }

    &.menu-open {
        background-color: rgba(6, 11, 8, 0.95);
        backdrop-filter: blur(10px);
    }

    .row {
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        width: 100%;

        .logo {
            height: 2rem;

            img {
                height: 100%;
            }
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;

            .login-link {
                color: var(--cream);
                text-decoration: none;
            }
        }

        nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: rgba(6, 11, 8, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            border-top: 1px solid rgba(255, 255, 255, 0.1);

            &.nav-open {
                display: block;
            }

            ul {
                padding: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
                padding: 1rem 0;

                li {
                    list-style: none;

                    a {
                        color: var(--cream);
                        text-decoration: none;
                    }
                }
            }
        }
    }
}

.hero {
    .row {
        flex-direction: column;

        .hero-header {
            color: var(--cream);
            display: flex;
            justify-content: space-between;
            align-items: center;

            h1 {
                font-family: 'Manuka', sans-serif;
                text-transform: uppercase;
                font-size: 6rem;
                font-weight: 400;
                line-height: 90%;

                .text-red {
                    color: var(--red);
                }

                .changing-headline {
                    display: inline-grid;
                    vertical-align: bottom;
                }

                .changing-headline span {
                    grid-area: 1 / 1;
                    opacity: 0;
                    animation: scrollWord 15s infinite cubic-bezier(0.4, 0, 0.2, 1);
                }

                .changing-headline span:nth-child(1) {
                    animation-delay: 0s;
                }

                .changing-headline span:nth-child(2) {
                    animation-delay: 3s;
                }

                .changing-headline span:nth-child(3) {
                    animation-delay: 6s;
                }

                .changing-headline span:nth-child(4) {
                    animation-delay: 9s;
                }

                .changing-headline span:nth-child(5) {
                    animation-delay: 12s;
                }
            }

            .bullets {
                ul {
                    padding: 0;

                    li {
                        list-style: none;
                        display: flex;
                        align-items: center;
                        gap: 1rem;
                        font-size: 1rem;
                        padding: 0;
                        font-weight: 300;

                        .icon {
                            font-size: 1.5rem;
                        }
                    }
                }

                .reviews {
                    display: flex;
                    align-items: center;
                    gap: 0.5rem;
                    padding-top: 1rem;

                    .avatars {
                        height: 2.125rem;
                    }
                }
            }


        }

        .product-options {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;

            .main-set {
                display: flex;
                gap: 0.5rem;

                .products {
                    width: 100%;
                    padding: 1.5rem 2rem;
                    border-radius: 1rem;
                    border: 1px solid rgba(255, 255, 255, 0.2);
                    position: relative;
                    color: var(--cream);
                    overflow: hidden;
                    transition: all 0.2s ease;
                    text-decoration: none;

                    &:hover {
                        box-shadow: 0 0 2rem var(--red);
                    }

                    small {
                        text-transform: uppercase;
                        font-weight: bold;
                        z-index: 100;
                        position: relative;
                    }

                    h2 {
                        font-family: 'Manuka', sans-serif;
                        text-transform: uppercase;
                        font-size: 3rem;
                        font-weight: 400;
                        line-height: 90%;
                        margin: 1rem 0;
                        z-index: 100;
                        position: relative;

                        sup {
                            font-family: "Inter", sans-serif;
                            font-size: 55%;
                        }
                    }

                    .sub-info {
                        font-size: 0.8rem;
                        padding-top: 2rem;
                        z-index: 100;
                        position: relative;
                    }

                    .button {
                        background: var(--cream);
                        color: var(--deep-green);
                        padding: 0.5rem 1.5rem;
                        border-radius: 50px;
                        text-decoration: none;
                        font-weight: bold;
                        display: inline-flex;
                        align-items: center;
                        gap: 0.5rem;
                        z-index: 100;
                        position: relative;

                        img {
                            height: 1rem;
                        }
                    }

                    .floating-image {
                        position: absolute;
                        right: 0;
                        bottom: 0;
                        display: flex;
                        z-index: 1;

                        img {
                            height: 250px;
                        }
                    }
                }

                .ed {
                    background-image: url(../images/big-gradient.webp);
                    background-size: 1700px;
                    background-position: -230px -1px;

                    h2 {
                        line-height: 75%;
                    }


                }

                .trt {
                    background-image: url(../images/big-gradient.webp);
                    background-size: 1700px;
                    background-position: -800px -400px;

                }
            }

            .secondary-set {
                display: flex;
                gap: 0.5rem;

                .products {
                    width: 100%;
                    padding: 0 4rem 0 2rem;
                    border-radius: 1rem;
                    border: 1px solid rgba(255, 255, 255, 0.2);
                    position: relative;
                    color: var(--tan);
                    overflow: hidden;
                    transition: all 0.2s ease;
                    text-decoration: none;
                    background-color: var(--grey-brown);
                    display: flex;
                    justify-content: space-between;

                    &:hover {
                        box-shadow: 0 0 2rem var(--tan);
                    }

                    .info {
                        display: flex;
                        flex-direction: column;
                        align-items: flex-start;
                        justify-content: center;

                        h2 {
                            font-family: 'Manuka', sans-serif;
                            text-transform: uppercase;
                            font-size: 2rem;
                            font-weight: 400;
                            line-height: 90%;
                            margin: 0 0 0.5rem 0;
                        }
                    }

                    .product-image {
                        display: flex;

                        img {
                            height: 128px;
                        }
                    }

                    .button {
                        position: absolute;
                        bottom: calc(50% - 1rem);
                        right: 2rem;
                    }


                }
            }
        }
    }
}

.featured-in {
    padding: 4rem 0;
}

.trt-big {
    background: url(../images/trt-bg.webp) top center no-repeat var(--dark-cream);
    background-size: auto 1000px;
    border-radius: 2rem;
    overflow: hidden;
    padding: 3rem 0;
    position: relative;

    .floater-dots {
        position: absolute;
        width: 100%;
        top: 500px;
        left: 0;
        z-index: 500;

        .center {
            position: relative;
        }

        .dot {
            position: absolute;
            width: 1rem;
            height: 1rem;
            border-radius: 50%;
            background-color: var(--cream);

            &.dot-one {
                left: 0;
                top: 114px;

                &:before {
                    animation-delay: 1s;
                }
            }

            &.dot-two {
                left: 25%;
                top: 34px;

                &:before {
                    animation-delay: 2s;
                }
            }

            &.dot-three {
                right: 25%;
                top: -86px;

                &:before {
                    animation-delay: 3s;
                }
            }

            &.dot-four {
                right: 0;
                top: -132px;

                &:before {
                    animation-delay: 4s;
                }
            }

            &:before {
                content: "";
                display: block;
                width: 100%;
                height: 100%;
                border-radius: 50%;
                background: #FFF9EF;
                background: radial-gradient(circle, rgba(255, 249, 239, 0) 0%, rgba(255, 249, 239, 1) 100%);
                animation: growDot 4s infinite;
            }
        }
    }

    .heading {
        padding-bottom: 28rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;

        h2 {
            font-family: 'Manuka', sans-serif;
            color: var(--cream);
            font-size: 5rem;
            font-weight: 400;
            line-height: 90%;
            margin: 0 0 0.5rem 0;
            text-transform: uppercase;

        }
    }

    .main {

        .buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            padding-bottom: 2rem;

            .button-red {
                background: var(--red);
                color: var(--cream);
                border-radius: 2rem;
                padding: 1rem 2rem;
                text-decoration: none;
                font-weight: bold;
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
            }

            .button-cream {
                background: var(--cream);
                color: var(--deep-green);
                border-radius: 2rem;
                padding: 1rem 2rem;
                text-decoration: none;
                font-weight: bold;
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
            }
        }

        .trt-wide {
            background: var(--cream);
            border-radius: 1rem;
            display: flex;
            margin-bottom: 0.75rem;
            text-align: center;

            .col {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: flex-end;

                &:first-child {
                    padding: 4rem 4.5rem 0 4.5rem;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: flex-end;
                    flex: 0 0 32%;

                }

                &:nth-child(2) {
                    width: 100%;
                }

                &:last-child {
                    padding: 2rem 4.5rem 0 4.5rem;
                    justify-content: center;
                    flex: 0 0 32%;

                    img.meds-row {
                        max-width: 10rem;
                        margin-bottom: 1rem;
                    }
                }
            }

            small {
                font-weight: bold;
                text-transform: uppercase;
                padding-bottom: 0.75rem;
            }

            h3 {
                font-family: 'Manuka', sans-serif;
                text-transform: uppercase;
                font-size: 3.5rem;
                font-weight: 400;
                line-height: 90%;
                margin: 0;
                padding: 0;
            }

            p {
                padding: 1.5rem 0 1.5rem 0;
                margin: 0;
            }

            .button-red {
                background: var(--red);
                color: var(--cream);
                border-radius: 2rem;
                padding: 1rem 1.5rem;
                text-decoration: none;
                font-weight: bold;
                display: inline-flex;
                gap: 0.5rem;
                align-items: center;
                justify-content: center;
            }

            .disclaimer {
                padding-top: 1rem;
                font-size: 0.6rem;
                color: var(--tan);
            }
        }

        .row {
            gap: 0.75rem;

            .trt-info {
                width: 50%;
                border-radius: 1rem;
                background: var(--cream);
                display: flex;

                .bottle {
                    width: 10rem;
                    flex: 0 0 10rem;
                }

                .row {
                    align-items: center;
                }

                .numbers {
                    padding: 0 3rem;


                    h4 {
                        font-family: 'Manuka', sans-serif;
                        text-transform: uppercase;
                        font-size: 3rem;
                        font-weight: 400;
                        line-height: 90%;
                        margin: 0;
                        padding: 0;
                        text-align: center;

                        sup {
                            font-size: 2rem;
                        }
                    }

                    p {
                        font-size: 0.9rem;
                        text-align: center;
                        padding-bottom: 1rem;
                    }

                    .red-number {

                        h5 {
                            font-family: 'Manuka', sans-serif;
                            text-transform: uppercase;
                            font-size: 5rem;
                            font-weight: 400;
                            line-height: 90%;
                            margin: 0;
                            padding: 0;
                            color: var(--red);
                        }

                        .sub-text {
                            font-size: 0.8rem;
                        }
                    }

                    .graphs {
                        width: 10rem;
                    }
                }
            }

            .trt-video {
                width: 50%;
                position: relative;
                overflow: hidden;
                border-radius: 1rem;
                max-height: 34rem;

                video {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                .overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    z-index: 1;
                }

                .multiple-choice {
                    display: flex;
                    gap: 0.25rem;
                    flex-wrap: wrap;
                    position: absolute;
                    left: 2rem;
                    bottom: 10rem;
                    width: 50%;
                    justify-content: flex-start;
                    z-index: 1000;

                    a {
                        background: rgba(255, 255, 255, 0.1);
                        backdrop-filter: blur(1rem);
                        border: 1px solid rgba(255, 255, 255, 0.2);
                        border-radius: 4rem;
                        color: var(--cream);
                        text-decoration: none;
                        padding: 1rem 1rem;
                        display: inline-flex;
                        flex-wrap: nowrap;
                        white-space: nowrap;
                        gap: 0.5rem;
                        align-items: center;
                        transition: all 0.2s ease;

                        &:hover {
                            box-shadow: 0 0 1rem rgba(255, 255, 255, 0.6);
                            background: rgba(255, 255, 255, 0.2);
                            border: 1px solid rgba(255, 255, 255, 0.3);
                        }

                        img {
                            height: 1rem;
                        }
                    }
                }
            }
        }
    }

}

.ed-big {
    background: url(../images/ed-bg.webp) top center no-repeat var(--red);
    border-radius: 2rem;
    background-size: auto 800px;
    margin-top: 2rem;
    padding: 4rem 0;

    .heading {
        padding-bottom: 28rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;

        h2 {
            font-family: 'Manuka', sans-serif;
            color: var(--cream);
            font-size: 5rem;
            font-weight: 400;
            line-height: 75%;
            margin: 0 0 0.5rem 0;
            text-transform: uppercase;

            sup {
                font-family: 'Inter', sans-serif;
                font-size: 2.75rem;
            }

        }
    }

    .main {

        .buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            padding-bottom: 2rem;

            .button-red {
                background: var(--red);
                color: var(--cream);
                border-radius: 2rem;
                padding: 1rem 2rem;
                text-decoration: none;
                font-weight: bold;
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
            }

            .button-cream {
                background: var(--cream);
                color: var(--deep-green);
                border-radius: 2rem;
                padding: 1rem 2rem;
                text-decoration: none;
                font-weight: bold;
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
            }
        }

        .ed-row {
            display: flex;
            gap: 0.75rem;

            .ed-col {
                width: 50%;
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
                color: var(--cream);

                h3 {
                    font-family: 'Manuka', sans-serif;
                    font-size: 3rem;
                    text-transform: uppercase;
                    line-height: 90%;
                    font-weight: 400;
                }

                .ed-benefit {
                    background: var(--dark-red);
                    border-radius: 1rem;
                    color: var(--cream);
                    height: 100%;
                    position: relative;
                    display: flex;
                    justify-content: center;
                    align-items: flex-start;
                    padding-top: 8rem;

                    h3 {
                        position: absolute;
                        left: 2rem;
                        top: 1.5rem;
                        padding: 0;
                        margin: 0;

                        sup {
                            font-size: 1.7rem;
                            font-family: 'Inter', sans-serif;
                        }
                    }

                    .image {
                        position: relative;
                        display: flex;
                        justify-content: center;
                        align-items: flex-start;


                        img {
                            width: 316px;
                        }

                        .bullet {
                            position: absolute;
                            z-index: 100;

                            h4 {
                                font-size: 0.8rem;
                                font-weight: bold;
                                text-transform: uppercase;
                                margin: 0;
                                padding: 0;
                            }

                            p {
                                font-family: 'Courier New', Courier, monospace;
                                font-size: 0.7rem;
                                margin: 0;
                                padding: 0;
                            }
                        }

                        .bullet.one {
                            bottom: calc(100% + 1rem);
                            left: 50%;
                            transform: translateX(-50%);
                            text-align: center;
                        }

                        .bullet.two {
                            top: 50%;
                            left: calc(100% + 1rem);
                            transform: translateY(-50%);
                        }

                        .bullet.three {
                            top: calc(100% + 1rem);
                            left: 50%;
                            transform: translateX(-50%);
                            text-align: center;
                        }

                        .bullet.four {
                            top: 50%;
                            right: calc(100% + 1rem);
                            transform: translateY(-50%);
                            text-align: right;
                        }
                    }

                    .cta-lower {
                        position: absolute;
                        bottom: 0;
                        right: 0;
                        padding: 2rem;
                        display: flex;
                        width: 100%;
                        justify-content: space-between;
                        color: var(--cream);
                        align-items: center;

                        p {
                            margin: 0;
                            padding: 0;
                        }

                        .button-cream {
                            background: var(--cream);
                            color: var(--deep-green);
                            border-radius: 3rem;
                            padding: 1rem 2rem;
                            text-decoration: none;
                            font-weight: bold;
                            display: inline-flex;
                            align-items: center;
                            white-space: nowrap;
                        }
                    }
                }

                .ed-image {
                    background: var(--dark-red);
                    border-radius: 1rem;
                    color: var(--cream);
                    overflow: hidden;
                    position: relative;
                    display: flex;
                    min-height: 400px;

                    .content {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 60%;
                        height: 100%;
                        z-index: 1;
                        padding: 2rem;
                        z-index: 100;

                        h3 {
                            margin-top: 1rem;
                        }

                        .multiple-choice {
                            display: flex;
                            gap: 0.25rem;
                            flex-wrap: wrap;

                            a {
                                background: rgba(255, 255, 255, 0.1);
                                backdrop-filter: blur(1rem);
                                border: 1px solid rgba(255, 255, 255, 0.2);
                                border-radius: 4rem;
                                color: var(--cream);
                                text-decoration: none;
                                padding: 1rem 1rem;
                                display: inline-flex;
                                flex-wrap: nowrap;
                                white-space: nowrap;
                                gap: 0.5rem;
                                align-items: center;
                                transition: all 0.2s ease;

                                &:hover {
                                    box-shadow: 0 0 1rem rgba(255, 255, 255, 0.6);
                                    background: rgba(255, 255, 255, 0.2);
                                    border: 1px solid rgba(255, 255, 255, 0.3);
                                }

                                img {
                                    height: 1rem;
                                }
                            }
                        }
                    }

                    video {
                        z-index: 1;
                        position: absolute;
                    }
                }

                .ed-product {
                    background: var(--dark-red);
                    border-radius: 1rem;
                    color: var(--cream);
                    position: relative;
                    display: flex;

                    .content {
                        padding: 2rem;
                        position: absolute;
                        z-index: 500;
                        display: flex;
                        flex-direction: column;
                        gap: 1rem;
                        height: 100%;
                        width: 100%;

                        h3 {
                            line-height: 75%;
                            margin: 0;

                            sup {
                                font-size: 1.75rem;
                                font-family: 'Inter', sans-serif;
                            }
                        }

                        .button {
                            position: absolute;
                            bottom: 2rem;
                            right: 2rem;

                            a {
                                background: var(--cream);
                                color: var(--deep-green);
                                text-decoration: none;
                                padding: 1rem 2rem;
                                border-radius: 2rem;
                                font-weight: bold;
                                display: inline-flex;
                                align-items: center;
                                gap: 0.5rem;
                            }
                        }
                    }
                }

                .ed-graph {
                    background: var(--dark-red);
                    border-radius: 1rem;
                    padding: 2rem;
                    text-align: center;
                    color: var(--cream);

                    h3 {
                        margin: 0.5rem 0 1.5rem 0;
                    }

                    p {
                        padding-bottom: 2rem;
                        max-width: 75%;
                        margin: 0 auto;
                    }

                }
            }
        }
    }
}

.hair-big {
    background: url(../images/hair-bg.webp) top center no-repeat var(--green);
    border-radius: 2rem;
    background-size: auto 1000px;
    margin-top: 2rem;
    padding: 4rem 0;

    .heading {
        padding-bottom: 8rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 40%;
        padding-top: 6rem;

        h2 {
            font-family: 'Manuka', sans-serif;
            color: var(--cream);
            font-size: 5rem;
            font-weight: 400;
            line-height: 90%;
            margin: 0 0 0.5rem 0;
            text-transform: uppercase;

            sup {
                font-family: 'Inter', sans-serif;
                font-size: 2.75rem;
            }

        }

        p {
            width: 60%;
            color: var(--cream);
            line-height: 140%;
        }

        .buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            padding-bottom: 2rem;
            padding-top: 1rem;

            .button-red {
                background: var(--red);
                color: var(--cream);
                border-radius: 2rem;
                padding: 1rem 2rem;
                text-decoration: none;
                font-weight: bold;
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
            }

            .button-cream {
                background: var(--cream);
                color: var(--deep-green);
                border-radius: 2rem;
                padding: 1rem 2rem;
                text-decoration: none;
                font-weight: bold;
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
            }
        }
    }

    .hair-row {
        display: flex;
        gap: 0.75rem;

        .hair-col {
            width: 50%;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            color: var(--cream);

            h3 {
                font-family: 'Manuka', sans-serif;
                font-size: 3rem;
                font-weight: 400;
                line-height: 90%;
                text-transform: uppercase;
                margin: 0;
            }

            .hair-product {
                background: var(--mid-green);
                border-radius: 1rem;
                color: var(--cream);
                position: relative;
                display: flex;

                .content {
                    position: absolute;
                    padding: 2rem;
                    width: 100%;
                    height: 100%;
                    padding: 2rem;

                    h3 {

                        span {
                            font-family: 'Inter', sans-serif;
                            font-size: 2.5rem;
                            font-weight: 700;
                        }

                        sup {
                            font-size: 1.75rem;
                            font-family: "Inter", sans-serif;
                            line-height: 70%;
                        }
                    }

                    .button {
                        position: absolute;
                        bottom: 0;
                        right: 0;
                        padding: 2rem;

                        .button-cream {
                            background-color: var(--cream);
                            color: var(--deep-green);
                            padding: 1rem 2rem;
                            border-radius: 2rem;
                            font-weight: bold;
                            text-decoration: none;
                            display: inline-flex;
                            align-items: center;
                            gap: 0.5rem;
                            transition: all 0.3s ease;

                            &:hover {
                                background-color: var(--cream);
                                color: var(--deep-green);
                            }
                        }
                    }

                }
            }

            .hair-testimonial {
                background: var(--mid-green);
                border-radius: 1rem;
                padding: 0 2rem 2rem 2rem;
                color: var(--cream);
                height: 100%;
                position: relative;

                .testimonials {
                    position: relative;
                    display: grid;

                    .testimonial-container {
                        grid-area: 1 / 1;
                        opacity: 0;
                        visibility: hidden;
                        pointer-events: none;
                        transition: opacity 0.5s ease, visibility 0.5s ease;
                        padding: 0 4rem;

                        &.active {
                            opacity: 1;
                            visibility: visible;
                            pointer-events: auto;
                        }

                        p {
                            font-size: 1.5rem;
                            line-height: 140%;
                            letter-spacing: -2%;
                            margin: 0;

                            span {
                                color: var(--light-green);
                            }
                        }

                        .before-after {
                            display: inline-flex;
                            padding: 0.5rem;
                            background: var(--cream);
                            border-radius: 1rem;
                            height: 160px;
                            width: auto;
                            margin: 2rem 0 3rem 0;

                            img {
                                height: 100%;
                            }
                        }
                    }

                    .slider-controls {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        margin-top: 1.5rem;
                        position: absolute;
                        top: 25%;
                        width: calc(100% + 1rem);
                        margin-left: -0.5rem;

                        .slider-arrow {
                            background: transparent;
                            border: 1px solid rgba(255, 255, 255, 0.3);
                            color: var(--cream);
                            font-size: 1.5rem;
                            cursor: pointer;
                            padding: 0.5rem;
                            transition: all 0.3s;
                            border-radius: 50%;
                            height: 3rem;
                            width: 3rem;
                            display: flex;
                            align-items: center;
                            justify-content: center;

                            &:hover {
                                border-color: var(--cream);
                            }
                        }
                    }

                    .slider-dots {
                        display: flex;
                        gap: 0.5rem;
                        justify-content: flex-start;
                        margin-top: 2rem;
                        padding: 0 4rem;
                        grid-row: 2;

                        .slide-dot {
                            width: 10px;
                            height: 10px;
                            background: rgba(255, 255, 255, 0.3);
                            border-radius: 50%;
                            cursor: pointer;
                            transition: all 0.3s;

                            &.active {
                                background: var(--cream);
                            }
                        }
                    }
                }

                .button {
                    display: flex;
                    justify-content: flex-end;
                    padding: 2rem;
                    position: absolute;
                    right: 0;
                    bottom: 0;

                    .button-cream {
                        background-color: var(--cream);
                        color: var(--deep-green);
                        padding: 1rem 2rem;
                        border-radius: 2rem;
                        font-weight: bold;
                        text-decoration: none;
                        display: inline-flex;
                        align-items: center;
                        gap: 0.5rem;
                        transition: all 0.3s ease;

                        &:hover {
                            background-color: var(--cream);
                            color: var(--deep-green);
                        }
                    }
                }
            }

            .hair-image {
                background: var(--mid-green);
                border-radius: 1rem;
                color: var(--cream);
                position: relative;
                display: flex;
                overflow: hidden;

                .content {
                    position: absolute;
                    padding: 2rem;
                    width: 100%;
                    height: 100%;

                    .multiple-choice {
                        display: flex;
                        gap: 0.25rem;
                        flex-wrap: wrap;
                        position: absolute;
                        right: 2rem;
                        bottom: 2rem;
                        width: 50%;
                        justify-content: flex-end;

                        a {
                            background: rgba(255, 255, 255, 0.1);
                            backdrop-filter: blur(1rem);
                            border: 1px solid rgba(255, 255, 255, 0.2);
                            border-radius: 4rem;
                            color: var(--cream);
                            text-decoration: none;
                            padding: 1rem 1rem;
                            display: inline-flex;
                            flex-wrap: nowrap;
                            white-space: nowrap;
                            gap: 0.5rem;
                            align-items: center;
                            transition: all 0.2s ease;

                            &:hover {
                                box-shadow: 0 0 1rem rgba(255, 255, 255, 0.6);
                                background: rgba(255, 255, 255, 0.2);
                                border: 1px solid rgba(255, 255, 255, 0.3);
                            }

                            img {
                                height: 1rem;
                            }
                        }
                    }
                }
            }
        }
    }
}

footer {

    & .row {
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: 2fr 2fr auto;

        & .logo-col {
            color: var(--grey-brown);
            padding: 6rem 2rem 4rem 0;

            & p {
                font-size: 0.9rem;
                width: 70%;
                line-height: 150%;
            }

            & .copyright {
                color: var(--grey-brown);
            }
        }

        & .footer-links-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            color: var(--grey-brown);

            .link-box {
                padding: 6rem 2rem 4rem 2rem;

                & h6 {
                    font-family: 'Manuka';
                    text-transform: uppercase;
                    font-size: 2rem;
                    margin: 0 0 1rem 0;
                    font-weight: 400;
                }

                ul {
                    padding: 0;

                    li {
                        list-style: none;

                        a {
                            text-decoration: none;
                            color: var(--grey-brown);
                            font-size: 0.8rem;
                        }
                    }
                }
            }
        }

        .badge-col {
            padding: 6rem 0 4rem 1rem;
            display: flex;
            justify-content: flex-end;
        }
    }
}

@media screen and (max-width: 1024px) {

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex;
    }

    .row {
        flex-direction: column;
    }

    .ed-row,
    .hair-row,
    .trt-wide {
        flex-direction: column;
    }

    .center {
        padding: 0 1rem;
    }

    .hero {
        & .row {
            .hero-header {
                flex-direction: column;
                align-items: flex-start;
                padding: 2rem 0;

                h1 {
                    font-size: 4rem;
                    margin: 1rem 0;
                }
            }

            & .product-options {
                .main-set {
                    flex-direction: column;

                    .products {
                        padding-bottom: 20rem;

                        & .floating-image {
                            img {
                                height: auto;
                                width: 100%;
                            }
                        }

                        .sub-info {
                            padding-top: 1rem;
                        }
                    }

                    .ed {
                        background-position: -300px 0;
                        background-size: 1400px;
                        background-attachment: fixed;
                    }

                    .trt {
                        background-position: -300px 0px;
                        background-size: 1300px;
                        background-attachment: fixed;
                    }
                }

                .secondary-set {
                    flex-direction: column;
                }
            }
        }
    }

    footer {
        & .row {
            grid-template-columns: 1fr;

            .logo-col {
                padding: 2rem 0;
                border: none;

                & p {
                    width: 100%;
                }
            }

            .badge-col {
                padding: 0 0 2rem 0;
                display: flex;
                justify-content: center;
            }

            .footer-links-wrapper {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
                border-top: 1px solid var(--cream);
                padding: 2rem 0;

                .link-box {
                    border-left: none;
                    border-top: none;
                    padding: 0;
                }
            }
        }
    }

    .trt-big {
        background: url(../images/trt-bg-mobile.webp) top center no-repeat var(--dark-cream);
        background-size: auto 600px;

        & .floater-dots {
            & .dot {
                &.dot-one {
                    left: 1rem;
                    top: -106px;
                }

                &.dot-two {
                    left: 25%;
                    top: -136px;
                }

                &.dot-three {
                    right: 25%;
                    top: -182px;
                }

                &.dot-four {
                    right: 1rem;
                    top: -196px;
                }
            }
        }

        & .heading {
            padding-bottom: 14rem;

            h2 {
                font-size: 3.5rem;
            }
        }

        & .main {
            & .buttons {
                .button-cream {
                    padding: 1rem 1rem;
                }
            }

            & .trt-wide {
                gap: 1rem;
                background: transparent;

                .col {
                    border-radius: 1rem;
                    background: var(--cream);

                    &:first-child {
                        padding: 2rem 4.5rem 0 4.5rem;
                        order: 0;
                    }

                    &:nth-child(2) {
                        img {
                            width: 80%;
                        }

                        order: 2;
                    }

                    &:last-child {
                        padding: 2rem 4.5rem 2rem 4.5rem;
                        order: 1;
                    }
                }

            }

            & .row {
                .trt-info {
                    width: 100%;
                    overflow: hidden;

                    .row {
                        flex-direction: row;
                        gap: 0;

                        .bottle {
                            flex: 0 0 7rem;
                        }

                        .numbers {
                            padding: 0 1rem;

                            h4 {
                                font-size: 2.5rem;
                                padding-bottom: 2rem;

                                sup {
                                    font-size: 1.25rem;
                                }
                            }

                            p {
                                display: none;
                            }

                            & .red-number {
                                h5 {
                                    font-size: 3rem;
                                }
                            }
                        }
                    }
                }

                .trt-video {
                    width: 100%;
                    max-height: 32rem;

                    .overlay {
                        width: 200%;
                    }
                }
            }
        }
    }

    .ed-big {
        background: url(../images/ed-bg-mobile.webp) top center no-repeat var(--red);
        background-size: auto 500px;

        & .heading {
            padding-bottom: 15rem;

            h2 {
                font-size: 3.5rem;
            }

            & h2 {
                sup {
                    font-size: 2rem;
                }
            }
        }

        & .main {
            & .ed-row {
                .ed-col {
                    width: 100%;

                    & .ed-benefit {
                        padding-top: 12rem;
                        padding-bottom: 14rem;

                        & .image {
                            img {
                                width: 160px;
                            }

                            & .bullet {
                                h4 {
                                    font-size: 0.65rem;
                                    padding-bottom: 0.25rem;
                                }
                            }
                        }
                    }

                    & .ed-image {
                        .content {
                            width: 100%;
                        }
                    }

                    & .ed-product {
                        padding: 4rem 0;

                        .content {
                            top: 0;

                            p {
                                margin-top: 0;
                            }
                        }
                    }

                    & .ed-graph {
                        padding: 2rem 1rem 1rem 1rem;

                        p {
                            max-width: 90%;
                        }
                    }

                }
            }
        }
    }

    .hair-big {
        background: url(../images/hair-bg-mobile.webp) top center no-repeat var(--green);
        background-size: auto 500px;

        & .heading {
            padding-bottom: 0;
            padding-left: 0;
            padding-top: 0;

            h2 {
                font-size: 3.5rem;
            }
        }

        & .hair-row {
            .hair-col {
                width: 100%;

                & .hair-image {
                    & .content {
                        .multiple-choice {
                            width: auto;

                        }
                    }
                }

                .hair-product {
                    padding: 8rem 0 0 0;

                    .content {
                        top: 0;
                    }
                }

                & .hair-testimonial {
                    padding-bottom: 8rem;

                    & .testimonials {
                        .testimonial-container {
                            padding: 0 2rem;

                            p {
                                font-size: 1.25rem;
                            }

                            .before-after {
                                height: auto;
                            }
                        }

                        & .slider-controls {
                            width: calc(100% + 2rem);
                            margin-left: -1rem;

                            .slider-arrow {
                                height: 2rem;
                                width: 2rem;
                                font-size: 0.75rem;
                            }
                        }

                        .slider-dots {
                            padding: 0 2rem;
                        }
                    }
                }
            }
        }
    }
}

@keyframes shine {
    0% {
        left: -150px;
    }

    40% {
        left: 400px;
    }

    100% {
        left: 400px;
    }
}

@keyframes scrollWord {
    0% {
        opacity: 0;
        transform: translateY(40%);
    }

    3% {
        opacity: 1;
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        transform: translateY(0);
    }

    23% {
        opacity: 0;
        transform: translateY(-40%);
    }

    100% {
        opacity: 0;
        transform: translateY(-40%);
    }
}

@keyframes growDot {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(3);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}