/* List */
.products-page {
    margin-bottom: 160px;
}

.products-page_title {
    padding: 60px 0 80px 0;
}

.product-thumbs_list {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 120px 24px;
}

.product-thumb {
    display: flex;
    flex-direction: column;
}
.product-thumb_img {
    position: relative;
    display: block;
    max-height: 500px;
    margin-bottom: 24px;
    padding-bottom: 65%;
    border-radius: 20px;
    border: 1px solid var(--color-gray-70);
    background: var(--color-gray-60);
    overflow: hidden;
}
.product-thumb_img img {
    position: absolute;
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.product-thumb_img img:last-child {
    display: none;
}

.product-thumb_100 {
    grid-column: 1 / -1;
}
.product-thumb_100  .product-thumb_img {
    padding-bottom: 36.76%;
}

.product-thumb_data {
    max-width: 900px;
}
.product-thumb_title {
    display: block;
    margin-bottom: 16px;
}
.product-thumb_subtitle {
    margin-bottom: 32px;
}
.product-thumb_btns {
    display: flex;
    gap: 12px;
}

/* Page */
.products-page {

}
.products-page_heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    max-height: 800px;
    margin-top: -92px;
    margin-bottom: -32px;
    background-color: var(--color-gray-80);
    overflow: hidden;
}
.products-page_heading img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.products-page_heading-content {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}
.products-page_heading-title {
    margin-bottom: 24px;
}
.products-page_heading-subtitle {
    max-width: 460px;
}

.products-page_content-full {
    position: relative;
    padding-top: 100px;
    border-radius: 32px 32px 0px 0px;
    background: var(--color-gray-80);
    z-index: 1;
}

/* Description */
.product-page_description {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 120px;
    text-align: center;
}
.product-page_description-subtitle {
    width: 100%;
    margin-bottom: 60px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-gray-60);
}
.product-page_description-title {
    margin-bottom: 32px;
}
.product-page_description-text {
    max-width: 900px;
    color: var(--color-gray-20);
}
.product-page_description-text p:first-child {
    margin-top: 0;
}

/* Featured */
.product-page_featured {
    display: flex;
    flex-wrap: wrap;
}
.product-page_featured-left {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 50%;
}
.product-page_featured-title {
    position: relative;
    max-width: 450px;
    min-height: 340px;
    z-index: 1;
}
.product-page_featured-img {
    display: block;
    /* position: absolute; */
    margin: 10px 100px 10px -350px;
    min-height: 360px;
}

.product-page_featured-right {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 80px;
}
.product-page_featured-col {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.product-page_featured-item {
    width: 100%;
    color: var(--color-gray-20);
}
.product-page_featured-number {
    margin-bottom: 4px;
}

.products-collection_heading {
    display: flex;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.products-collection_heading-left {
    width: 50%;
    padding-right: 32px;
}
.products-collection_heading-right {
    width: 50%;
    color: var(--color-gray-30);
}

.products-collection_heading-info {
    margin-top: 32px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--color-gray-0);
    /* text-transform: uppercase; */
    letter-spacing: 3px;
}
.products-collection_heading-desc_1 {

}
.products-collection_heading-desc_2 {
    font-size: 14px;
    line-height: 20px;
}

/* Related */
.related-foods {
    padding-top: 120px;
}
.related-foods_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.related-foods_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column: span 3;
    gap: 8px;
}

.related-foods_item-img {
    position: relative;
    display: block;
    margin-bottom: 24px;
    padding-bottom: 100%;
    border-radius: 20px;
    border: 1px solid var(--color-gray-70);
    overflow: hidden;
}
.related-foods_item-img img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.related-foods_item-title {
    display: block;
    margin-bottom: 16px;
}
.related-foods_item-subtitle {
    margin-bottom: 32px;
    min-height: 64px;
    max-width: 315px;
}
.related-foods_item-btns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 32px;
    gap: 12px;
}

.related-foods_progress {
    display: none;
}

@media (max-width: 1050px) {
    .related-foods-title {
        font-size: 36px;
        font-weight: 300;
        line-height: 110%;
        letter-spacing: -0.72px;
    }
}

@media (max-width: 992px) {
    .product-page_description {
        margin-bottom: 80px;
    }
    .product-page_description-subtitle {
        margin-bottom: 40px;
    }
    .product-page_description-title {
        margin-bottom: 24px;
    }
    .product-page_description-text {
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .products-page {
        margin-bottom: 100px;
    }

    .products-page_content-full {
        padding-top: 60px;
        border-radius: 20px 20px 0px 0px;
    }

    .products-page_title {
        padding: 40px 0 60px 0;
        font-size: 36px;
        font-weight: 300;
        line-height: 110%;
        letter-spacing: -0.72px;
    }

    .product-thumbs_list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 60px 24px;
    }

    .product-thumb_title {
        font-size: 36px;
        font-style: normal;
        font-weight: 300;
        line-height: 110%; /* 39.6px */
        letter-spacing: -0.72px;
    }
    .product-thumb_btns {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .product-thumb_img img:first-child {
        display: none;
    }
    .product-thumb_img img:last-child {
        display: block;
    }

    .product-thumb_img,
    .product-thumb_100 .product-thumb_img {
        padding-bottom: 100%;
    }

    .product-page_featured {
        margin-bottom: 100px;
    }

    .product-page_featured-left {
        width: 100%;
    }
    .product-page_featured-img {
        margin: 10px 0 10px -100%;
        max-width: 100%;
        min-height: 340px;
     }

    .product-page_featured-right {
        width: 100%;
        gap: 32px 24px;
    }
    .product-page_featured-number {
        font-size: 24px;
    }
    .product-page_featured-text {
        font-size: 14px;
    }

    .products-collection_heading-left {
        width: 100%;
        margin-bottom: 24px;
        padding-right: 32px;
        font-size: 24px;
        font-weight: 300;
        line-height: 120%;
    }
    .products-collection_heading-right {
        width: 100%;
    }

    .products-page .products-slider {
        margin-bottom: 80px;
    }

    .related-foods-title {
        margin-bottom: 40px;
    }
    .related-foods_progress {
        display: flex;
        grid-column: span 4;
    }
    .related-foods_container > .related-foods_item {
        grid-column: span 4;
    }
    .related-foods_content {
        grid-column: span 4;
    }

}