.pageProduct {
    margin-bottom: 5rem;
}

.pageProduct h1,
.pageProduct h2,
.pageProduct h3,
.pageProduct-description,
.pageProduct-tips {
    text-align: center;
}

.pageProduct h2{
    font-family: "Mitr Bold", "sans-serif";
    font-weight: 700;
}

/* HEADER */
.pageProduct .wrapperAsset {
    position: relative;
}
.pageProduct .banner-wave{
    position: absolute;
    bottom: -2px
}

.pageProduct-content {
    display: flex;
    flex-direction: column;
    margin: 4.125rem auto 2.5rem auto;
    box-sizing: border-box;
    justify-content: space-between;
    gap: 40px;
}

/* DESCRIPTION */
.pageProduct-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pageProduct-description h1 {
    font-size: 2.25rem;
    color: var(--dark-blue);
    line-height: 46px;
    margin: 0 auto;
    font-family: "Mitr Bold", "sans-serif";
    font-weight: 700;
}


.pageProduct-description-text {
    color:var(--dark-blue);
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    margin-top: 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
}

.pageProduct-description-text p {
    font-size: 1.25rem;
    line-height: 1.55rem;
    margin-bottom: 1.4rem;
}

/* IMAGE THUMBNAIL */
.pageProduct-imageThumbnail img {
    width: 200px;
    height: 500px;
    transform: rotate(-6.11deg);
    margin: 0 auto;
}

/* NUTRITION & TIPS*/

.pageProduct-nutrition-tips {
    border: 2px solid var(--dark-blue);
    border-radius: 30px;
    padding: 35px 10px 0 10px;
    max-width: 680px;
}

.pageProduct-nutrition {
    padding-bottom: 2rem;
}

.pageProduct-nutrition-line {
    display: flex;
}

.pageProduct-nutrition-line:first-child .nutrition-value {
    flex-direction: column;
    text-align: center !important;
}

.pageProduct-nutrition-line:first-child .nutrition-value-colored {
    color: var(--blue);
}

.pageProduct-nutrition-line:first-child span {
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    font-family: "Mitr Bold", sans-serif;
}

.pageProduct-nutrition-line .nutrition-value {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 15px;
    font-family: "Montserrat", sans-serif;
    color: var(--dark-blue);
    font-size: 1rem;
    line-height: 26px;
    text-align: right;
}

.pageProduct-nutrition-line .nutrition-value-separator {
    margin: 0 auto;
    background-color: var(--dark-blue);
    width: 1px;
}

.pageProduct-nutrition-line:first-child .nutrition-value-separator {
    display: none;
}

.pageProduct-nutrition-line .nutrition-value:first-child {
    justify-content: flex-start;
    text-align: left;
}

.pageProduct-tips-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pageProduct-tips-line {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 15px;
    text-align: left;
    color: var(--dark-blue);
    font-size: 16px;
    line-height: 26px;
}

.pageProduct-tips-line:has(.topic-text-with-secondary) {
    align-items: flex-start;
}
.pageProduct-tips-line img {
    width: 37px;
    height: 37px;
}

.pageProduct-tips-line .topic-text {
    color: var(--dark-blue);
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 26px;
}
.pageProduct-tips-line .topic-text-with-secondary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pageProduct-tips-line .topic-text-link {
    color: var(--blue);
    font-weight: 700;
    text-decoration: underline;
}




/* DESKTOP */
@media screen and (min-width: 48rem) {
    .pageProduct-nutrition-tips {
        border-radius: 50px;
    }

    .pageProduct-content,
    .pageProduct .componentProductsList .product-wrapper-inner-content {
        /* align-items: center; */
    }
}

@media screen and (min-width: 64rem) {


    .pageProduct-content {
        flex-direction: row;
    }

    .pageProduct-imageThumbnail {
        height: 100%;
        position: sticky;
        top: 0;
        left: 0;
    }

    .pageProduct-imageThumbnail img {
        width: 300px;
        height: 700px;
        padding-top: 5rem;
    }

    .pageProduct-nutrition-line:first-child span {
        font-size: 28px;
        line-height: 32px;
    }

    .pageProduct-nutrition-tips {
        padding: 35px 20px;
    }
    .pageProduct-nutrition-line:first-child .nutrition-value {
        padding: 0 20px 15px 20px;
    }
    .pageProduct .componentProductsList .product-wrapper-inner-content {
        flex-direction: row;
    }
    .pageProduct .componentProductsList .product-wrapper-inner-content article,
    .pageProduct .componentProductsList .product-wrapper-inner-content article .product-image {
        width: 380px;
    }
}