/* Taurus */

:root {
    --deep-green: #060B08;
    --green: #182D20;
    --light-green: #81B59D;
    --red: #F1471D;
    --cream: #FFF9EF;
    --tan: #D6C7AD;
    --grey: #3F3F3F;
    --neon: #DCFF8B;
}

@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;
}

body {
    padding-bottom: 10rem;
}

.row {
    display: flex;
}

.product-page {
    color: var(--cream);
    margin-top: 1rem;
    padding-bottom: 2rem;

    & .row {
        gap: 2rem;
    }

    & .product-image {
        width: 100%;
        display: flex;
        gap: 1rem;

        & .product-thumbnails {
            flex: 1 0 128px;

            & .thumbnail {
                width: 128px;
                height: 128px;
                background: var(--grey);
                margin-bottom: 1rem;
            }

            & .thumbnail.active {
                border: 2px solid var(--red);
            }
        }
    }

    & .product-description {
        flex: 1 0 400px;

        & .product-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
        }

        & h1 {
            font-family: 'Manuka';
            text-transform: uppercase;
            font-weight: 500;
            color: var(--red);
            font-size: 6rem;
            margin: 0;
            line-height: 90%;
        }

        & h2 {
            font-size: 1rem;
            border: 1px solid var(--red);
            border-radius: 1rem;
            display: inline-block;
            padding: 0.4rem 1rem 0.6rem 1rem;
            margin: 1rem 0 0 0;
        }

        & p {
            line-height: 140%;
        }

        & .product-included {
            border-top: 1px solid var(--grey);
            margin-top: 2rem;
            padding: 1.5rem 0 1rem 0;

            & h3 {
                text-transform: uppercase;
                font-size: 0.9rem;
                margin: 0 0 1rem 0;
            }

            & span {
                color: var(--light-green);
                font-size: 0.8rem;
                margin-bottom: 0.5rem;
            }
        }

        & .product-price {
            border-top: 1px solid var(--grey);
            border-bottom: 1px solid var(--grey);
            padding: 1rem 0;
            font-size: 1.4rem;
            font-weight: bold;

            & s {
                color: grey;
                font-weight: normal;
                margin-right: 0.2rem;
            }

            & .discount {
                background: var(--neon);
                color: var(--deep-green);
                font-weight: bold;
                letter-spacing: -1px;
                padding: 0.2rem 0.5rem;
                font-size: 0.8rem;
                margin-left: 0.5rem;
            }
        }

        & .product-checkout {
            margin-top: 1.5rem;

            & a {
                background: var(--red);
                height: 4rem;
                border: none;
                display: flex;
                justify-content: center;
                gap: 1rem;
                align-items: center;
                font-family: Manuka, sans-serif;
                font-weight: 400;
                text-transform: uppercase;
                color: var(--cream);
                font-size: 1.8rem;
                letter-spacing: 3px;
                text-decoration: none;
                position: relative;
                overflow: hidden;
                border-radius: 0.5rem;

                & img {
                    height: 1.5rem;
                }

                & .shine {
                    position: absolute;
                    height: 250%;
                    width: 40px;
                    top: 0;
                    left: -60px;
                    background: linear-gradient(90deg, #ffffff00, #ffffff54, #ffffff00);
                    transform: rotate(45deg) translateY(-35%);
                    animation: shine 3s ease infinite;
                }
            }

            & .details {
                display: flex;
                justify-content: space-between;
                align-items: center;
                background: var(--green);
                padding: 1rem;
                font-size: 0.7rem;
                margin-top: 1rem;

                & .green-dot {
                    width: 0.8rem;
                    height: 0.8rem;
                    border-radius: 1rem;
                    background-color: var(--neon);
                    display: inline-block;
                    margin-right: 0.5rem;
                }
            }

            & .purchase-bonus {
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 0.8rem;
                padding: 1.5rem 0 1rem 0;

                & .col {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 0.5rem;
                }

                & .col:first-child {
                    border-right: 1px solid var(--cream);
                    margin-right: 1.5rem;
                    padding-right: 1.5rem;
                }
            }

            & .credit-cards {
                display: flex;
                justify-content: center;
                padding: 1rem 0;
            }
        }
    }
}

.product-press {
    position: relative;
    padding: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
    overflow: hidden;

    & .marquee {

        & img {
            max-width: fit-content;
        }
    }

    & .best-seller-overlay {
        position: absolute;
        top: 1rem;
        left: 50%;
        margin-left: -165px;
        height: 100px;

        & img {
            height: 100%;
        }
    }
}

.product-feeling {

    & .feeling-docked {
        background: var(--green);
        width: 100%;
        padding-top: 10rem;

        & .sticky-box {
            position: sticky;
            top: 15rem;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--cream);
            padding-bottom: 10rem;

            & .sticky-inner {
                height: 100%;
                max-width: 550px;
                padding: 1rem;

                & .feeling-row {
                    display: flex;
                    gap: 2rem;
                    align-items: center;
                    margin: 3rem 0;

                    & .feeling-icon {
                        flex: 1 0 64px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }

                    & h5 {
                        margin: 0 0 0.5rem 0;
                        font-size: 1.2rem;
                        font-weight: bold;
                    }

                    & p {
                        line-height: 140%;
                        margin: 0;
                        font-weight: 300;
                    }
                }

                & h4 {
                    font-family: 'Manuka';
                    font-size: 6rem;
                    text-transform: uppercase;
                    font-weight: 500;
                    line-height: 90%;
                    margin: 0;
                }
            }
        }
    }

    & .feeling-scroll {
        background: var(--cream);
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 3rem 1rem;

        & .feeling-scroll-row {
            max-width: 550px;
            margin: 3rem 0;

            & h4 {
                font-family: 'Manuka';
                font-size: 2.5rem;
                text-transform: uppercase;
                font-weight: 500;
                line-height: 90%;
                margin: 0;
                letter-spacing: 1px;
            }

            & p {
                font-size: 0.9rem;
                line-height: 140%;
                margin: 1rem 0 1.5rem 0;
            }

            & .feeling-image-block {
                position: relative;
                display: flex;

                & .hover-icon {
                    position: absolute;
                    z-index: 600;
                    right: 2rem;
                    bottom: 2rem;
                    border: 1px solid var(--cream);
                    width: 48px;
                    height: 48px;
                    border-radius: 48px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: var(--cream);

                    & span:before {
                        content: "+";
                        font-size: 2rem;
                        font-weight: 100;
                    }
                }

                & .feeling-image-overlay {
                    color: var(--cream);
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    background: rgba(0, 0, 0, 0.8);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-direction: column;
                    padding: 4rem;
                    border-radius: 1rem;
                    opacity: 0;
                    transition: 0.3s ease all;
                    z-index: 500;
                    text-align: center;

                    & h5 {
                        font-family: 'Manuka';
                        text-transform: uppercase;
                        color: var(--red);
                        font-weight: 400;
                        font-size: 2.5rem;
                        margin: 0 0 1rem 0;
                        text-align: center;
                        line-height: 90%;
                    }

                    & .citation {
                        width: 250px;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        color: var(--grey);
                        border: 1px solid var(--grey);
                        border-radius: 0.5rem;
                        margin-top: 1rem;
                        padding: 0.4rem;
                        font-size: 0.8rem;

                        & a {
                            color: gray;
                            text-decoration: none;
                            font-size: 0.8rem;
                            margin-left: 0.5rem;

                        }
                    }
                }
            }

            & img {
                border-radius: 1rem;
            }
        }

        & .feeling-scroll-row:hover {

            & .hover-icon {
                & span:before {
                    content: "-";
                }
            }

            & .feeling-image-block {
                & .feeling-image-overlay {
                    opacity: 1;
                }
            }
        }
    }
}

.product-expect {
    color: var(--cream);
    padding: 6rem 0;

    & h3 {
        font-family: 'Manuka';
        font-size: 4rem;
        text-transform: uppercase;
        font-weight: 400;
        margin: 0;
    }

    p {
        font-size: 0.9rem;
        font-weight: 300;
        line-height: 140%;
    }

    & .row {
        position: relative;
        margin-top: 3rem;

        & .expect-med {
            position: absolute;

            & small {
                display: none;
            }

            & .product-expect-detail {
                display: flex;
                align-items: center;
                gap: 2rem;

                & .expect-detail-image {
                    padding-left: 2rem;

                    & img {
                        height: 270px;
                    }
                }

                & h4 {
                    color: var(--red);
                    font-family: 'Manuka';
                    text-transform: uppercase;
                    font-size: 4rem;
                    font-weight: 400;
                    line-height: 70%;
                    margin: 0;

                    & span {
                        color: var(--cream);
                    }

                    & sup {
                        font-family: 'Inter';
                    }
                }

                & p {
                    color: var(--light-green);
                    line-height: 120%;
                }
            }
        }
    }
}

.benefit-banner {
    height: 64px;
    background: url(../../images/product-benefit-banner.svg) center center repeat-x;
    background-size: 50%;
}

.product-how {
    background: var(--red);
    color: var(--cream);
    position: relative;
    min-height: 600px;

    & .how-steps {
        width: 50%;
        padding: 4rem 4rem 4rem 0;

        & h4 {
            font-family: 'Manuka';
            text-transform: uppercase;
            font-size: 4rem;
            font-weight: 400;
            margin: 0;
        }

        & .how-steps-row {
            display: flex;
            gap: 1.5rem;
            margin: 2.5rem 0;
            align-items: center;

            & .how-steps-image {
                flex: 1 0 80px;
            }

            & .how-steps-detail {

                & small {
                    text-transform: uppercase;
                    font-weight: bold;
                    font-size: 0.7rem;
                }

                & h5 {
                    margin: 0.2rem 0 0.5rem 0;
                    font-size: 1.2rem;
                }

                & p {
                    font-weight: 300;
                    line-height: 140%;
                    margin: 0;
                    font-size: 0.9rem;
                }
            }
        }
    }

    & .how-image {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 50%;
        background: url(../../images/lifestyle-background.webp) right center no-repeat;
        background-size: cover;
    }
}

.us-vs-them {

    padding: 3rem 0 8rem 0;

    h4 {
        font-size: 5rem;
        font-family: 'Manuka';
        text-transform: uppercase;
        color: white;
        font-weight: 400;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .compare-table {
        display: grid;

        .table-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            border-bottom: 1px solid var(--cream);

            & .table-col {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 1rem 0;
                position: relative;
                font-weight: bold;
                color: var(--cream);

                & .table-header {
                    position: absolute;
                    bottom: 100%;
                    width: 100%;
                    background: rgba(241, 71, 29, 0.3);
                    border-radius: 1rem 1rem 0 0;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    color: white;
                    padding: 2rem;

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

                & .table-header.traditional {
                    background: none;

                    & h5 {
                        margin: 0;
                    }
                }

                & .table-content {
                    width: 100%;
                    text-align: left;
                    font-weight: bold;
                    color: var(--red);
                    padding: 0.5rem;
                }

                & .table-end-cap {
                    position: absolute;
                    top: 100%;
                    width: 100%;
                    background: rgba(241, 71, 29, 0.3);
                    border-radius: 0 0 1rem 1rem;
                    height: 2rem;
                }
            }

            & .table-col:nth-child(2) {
                background: rgba(241, 71, 29, 0.3);
                color: var(--red);
            }
        }
    }
}

.product-testimonials {
    background: var(--tan);
    padding: 3rem 0;

    & .testimonial-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 2rem;
        grid-auto-rows: min-content;

        & .testimonial-content {
            background: var(--cream);

            & .customer {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
                color: var(--green);

                & b {
                    font-size: 1rem;
                    font-weight: bold;
                    color: var(--deep-green);
                }
            }

            & .stars {
                padding: 0 1rem;
                font-size: 0.8rem;
            }

            & p {
                padding: 1rem;
                font-size: 0.8rem;
                line-height: 140%;
                margin: 0;
            }
        }

        & .hidden-testimonials {
            display: none;
        }
    }
}

.no-risk {
    color: var(--cream);
    padding: 3rem 0;

    h5 {
            font-size: 4rem;
            font-weight: 400;
            margin: 1rem 0 2rem 0;
            font-family: 'Manuka';
            text-transform: uppercase;
            text-align: center;
            color: var(--red);
    }

    & .col {
        width: 100%;
        padding: 2rem;
        text-align: center;

        & h6 {
            font-size: 1.5rem;
            font-weight: 300;
            margin: 1rem 0 0 0;
        }

        & p {
            line-height: 150%;
            font-weight: 300;
        }
    }
}

.faq {
    background: var(--cream);
    padding: 3rem 0;

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

    & .faq-row {
        display: flex;
        border-bottom: 1px solid var(--grey);
        flex-direction: column;
        padding: 1rem 0;

        & .question {
            display: flex;
            justify-content: space-between;
            font-size: 1.2rem;
        }

        & .answer {
            display: none;
        }
    }
}

.floating-cta {
    position: fixed;
    z-index: 900;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(255,249,239,0.8); */
    background: var(--cream);
    border-top: 1px dashed var(--grey);
    padding: 0.5rem 0;
    backdrop-filter: blur(1rem);

    & .row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    & a {
        background: var(--red);
        height: 4rem;
        border: none;
        display: flex;
        justify-content: center;
        gap: 1rem;
        align-items: center;
        font-family: Manuka, sans-serif;
        font-weight: 400;
        text-transform: uppercase;
        color: var(--cream);
        font-size: 1.4rem;
        letter-spacing: 3px;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        border-radius: 0.5rem;
        min-width: 300px;
        border: 1px solid var(--cream);

        & img {
            height: 1.5rem;
        }
    }

    & p {

        font-size: 0.8rem;

        & .green-dot {
            background: var(--light-green);
            width: 0.8rem;
            height: 0.8rem;
            border-radius: 1rem;
            display: inline-block;
            margin-right: 0.5rem;
        }
    }
}

@media screen and (max-width: 768px) {
    .product-page {
        & .product-description {
            & h1 {
                font-size: 4rem;
            }
        }
    }

    .product-page {
        & .product-description {
            & .product-included {
                & .row {
                    flex-direction: row;
                }
            }
        }
    }

    .product-feeling {
        & .feeling-docked {
            padding-top: 4rem;

            & .sticky-box {
                & .sticky-inner {
                    padding: 0 3rem;

                    & .feeling-row {
                        flex-direction: column;
                        align-items: center;
                        justify-content: center;
                        gap: 1rem;
                    }

                    & h4 {
                        font-size: 4rem;
                        text-align: center;
                    }

                    & h5 {
                        text-align: center;
                    }

                    & p {
                        text-align: center;
                    }
                }
            }
        }
    }

    .product-expect {
        & .row {
            & .expect-med {
                position: relative;
                background: var(--green);
                padding: 1rem;
                border-radius: 1rem;

                & .product-expect-detail {
                    & .expect-detail-image {
                        padding-left: 1rem;

                        & img {
                            height: 160px;
                        }
                    }

                    & h4 {
                        font-size: 3rem;
                    }
                }
            }

            & .expect-graph {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 1rem 0;
            }
        }
    }

    .product-how {
        & .how-steps {
            width: 100%;
            padding: 4rem 0 2rem 0;
        }

        & .how-image {
            width: 100%;
            position: relative;
        }
    }

    .benefit-banner {
        background-size: 250%;
    }

    .us-vs-them {
        h4 {
            font-size: 3rem;
            padding-bottom: 5rem;
        }

        & .compare-table {
            .table-row {
                grid-template-columns: 1.5fr 1fr 1fr;

                & .table-col {
                    & .table-header {
                        padding: 0.5rem;
                        text-align: center;

                        & h5 {
                            font-size: 1.5rem;
                        }
                    }
                }
            }
        }
    }

    .product-testimonials {

        & .testimonial-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;

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

    .floating-cta {
        & a {
            order: 0;
            width: 100%;
        }

        & p {
            order: 1;
            font-size: 0.8rem;
            margin: 0;
        }
    }
}

@media screen and (max-height: 1200px) {
    .product-feeling {
        & .feeling-docked {
            & .sticky-box {
                top: 2rem;
            }
        }
    }
}