.m-page {
    overflow: hidden;
}
.product-wrapper {
    padding-top: 218px;
}
.product-wrapper::before {
    content: none;
}
.product-row {
    display: grid;
    grid-template-columns: 610px 1fr 343px;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 60px;
    margin-top: 40px;
}
.gallery-big {
    background-color: #FFFFFF;
    border-radius: 20px;
    -webkit-box-shadow: 0px 11px 18px 0px rgba(8, 37, 67, 0.06);
    -moz-box-shadow: 0px 11px 18px 0px rgba(8, 37, 67, 0.06);
    box-shadow: 0px 11px 18px 0px rgba(8, 37, 67, 0.06);
    overflow: hidden;
}
.gallery-slide {
    position: relative;
    height: auto;
	background-color: #FFFFFF;
}
.gallery-slide_pic {
    height: 100%;
}
.gallery-big .gallery-slide_pic {
    aspect-ratio: 1.04272;
}
.gallery-slide_pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-tags {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    z-index: 2;
}
.product-tag {
    padding: 4px 7px;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 11px;
    line-height: 150%;
    font-weight: 700;
}
.product-discount {
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(180deg, #49207E 0%, #21257E 100%);
    padding: 4px 5px;
    border-radius: 9px;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 133%;
    font-weight: 600;
    z-index: 2;
}
.gallery-big_nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
}
.gallery-big_nav__item {
    cursor: pointer;
    -webkit-box-shadow: 0px 11px 18px 0px rgba(8, 37, 67, 0.06);
    -moz-box-shadow: 0px 11px 18px 0px rgba(8, 37, 67, 0.06);
    box-shadow: 0px 11px 18px 0px rgba(8, 37, 67, 0.06);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-big_nav__item:hover {
    background-color: #20247A;
}
.gallery-big_nav__item svg path {
    transition: .3s;
}
.gallery-big_nav__item:hover svg path {
    stroke: #FFFFFF;
}
.gallery-big_nav__item.swiper-button-disabled {
    pointer-events: none;
    background-color: #E7EDF3;
}
.gallery-big_nav__item.swiper-button-disabled svg path {
    stroke: #92969A;
}
.gallery-small {
    margin-top: 15px;
}
.gallery-small .gallery-slide {
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 11px 18px 0px rgba(8, 37, 67, 0.06);
    -moz-box-shadow: 0px 11px 18px 0px rgba(8, 37, 67, 0.06);
    box-shadow: 0px 11px 18px 0px rgba(8, 37, 67, 0.06);
    border-radius: 15px;
    overflow: hidden;
    height: 108px;
    cursor: pointer;
    transition: .3s;
}
.gallery-small .gallery-slide::after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    opacity: 0;
    border: 2px solid #20247A;
    border-radius: 15px;
    transition: .3s;
}
.gallery-small .swiper-slide-thumb-active::after {
    opacity: 1;
}
.gallery-small .swiper-slide img {
    transition: .3s;
}
.gallery-small .swiper-slide-thumb-active img {
    opacity: 0.5;
}
.gallery-small .gallery-slide:hover img {
    opacity: 0.5;
}

.product-mid {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 20px;
}
.product-mid_desc {
    margin-top: 10px;
}
.product-top_row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 8px;
}
.product__articule {
    color: #92969A;
    font-size: 12px;
    line-height: 133%;
    font-weight: 500;
}
.product-mid__title {
    color: #191C21;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}
.product-mid_chars--items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product-mid_char {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.product-mid_char::after {
    content: '';
    display: block;
    flex-grow: 1;
    height: 1px;
    border: 1px dashed #92969A;
}
.product-mid_char p {
    color: #92969A;
    font-size: 13px;
    font-weight: 500;
    line-height: 138%;
}
.product-mid_char span {
    color: #343E4A;
    font-size: 13px;
    font-weight: 500;
    line-height: 138%;
    display: block;
    order: 1;
    text-align: right;
}
.product-mid__more {
    display: inline-block;
    margin-top: 12px;
    color: #20247A;
    font-size: 14px;
    font-weight: 600;
    line-height: 143%;
    border-bottom: 1px dashed rgb(32, 36, 122, 0.5);
    cursor: pointer;
    transition: .3s;
}
.product-mid__more:hover {
    color: #19D8C4;
    border-color: rgba(25, 216, 196, 0.5);
}
.product-mid_desc--text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}
.product-mid_desc--text p {
    color: #343E4A;
    font-size: 13px;
    line-height: 138%;
    margin-top: 10px;
}
.product-mid_desc--text p:first-child {
    margin-top: 0;
}

.product-r {
    border-radius: 15px;
    background-color: #FFFFFF;
}
.product-r_top {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    padding-bottom: 19px;
    border-bottom: 1px solid #F3F4F5;
}
.product-stock  {
    display: flex;
    align-items: center;
    gap: 6px;
}
.product-stock span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #E0EEDC;
}
.product-stock p {
    color: #5E920A;
    font-size: 13px;
    line-height: 138%;
    font-weight: 600;
}
.product-variations {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.product-r__title {
    color: #191C21;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
}
.product-variation {
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-variation a,
.product-variation button.variation-selector {
    display: block;
    padding: 6px 14px;
    border-radius: 7px;
    border: 1px solid #F3F4F5;
    background: transparent;
    color: #343E4A;
    font-size: 14px;
    line-height: 143%;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s ease;
}
.product-variation a.active,
.product-variation button.variation-selector.active {
    border: 2px solid #20247A;
    pointer-events: none;
}
.product-variation a:hover,
.product-variation button.variation-selector:hover {
    border-color: #20247A;
}

/* Скрываем стандартную таблицу вариаций WooCommerce */
.variations_form table.variations {
    display: none !important;
}

.product-prices_row {
    display: flex;
    align-items: center;
    gap: 5px;
}
.product-prices_row p {
    color: #20247A;
    font-size: 22px;
    line-height: 145%;
    font-weight: 700;
}
.product-prices_row span {
    display: block;
    color: rgba(52, 62, 74, 0.4);
    font-size: 18px;
    line-height: 144%;
    font-weight: 600;
    position: relative;
}
.product-prices_row span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 0;
    border-bottom: 1px solid rgba(52, 62, 74, 0.4);
    transform: rotate(-15deg) translateY(-50%);
}
.product-prices_list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.product-prices_list li {
    font-size: 12px;
    line-height: 133%;
    color: #92969A;
}
.product-prices_list li strong {
    color: #191C21;
}
.product-bonus {
    border: 2px solid #E5F3F1;
    border-radius: 10px;
    padding: 6px 10px;
    position: relative;
}
.product-bonus__title {
    font-size: 12px;
    font-weight: 600;
    color: #343E4A;
}
.product-bonus__info {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 21px;
    height: 21px;
    background-color: #E7EDF3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.product-bonus_row {
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.product-bonus_row span {
    color: #343E4A;
    font-size: 13px;
    line-height: 138%;
    font-weight: 600;
}
.product-bonus_row img {
    width: 20px;
    height: auto;
    margin-right: 2px;
}
.product-buy {
    display: flex;
    align-items: center;
    gap: 10px;
}
.product__buy {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
}
.product-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}
.product__oneclick {
    flex-grow: 1;
    font-size: 14px;
    font-weight: 600;
    padding: 11px;
}
.product__btn {
    width: 46px;
    height: 46px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .3s;
}
.product__btn:hover {
    opacity: 0.7;
}
.product__favourite {
    background-color: transparent;
    border: 1px solid #F3F4F5;
}
.product__compare {
    background-color: #F3F4F5;
}

.product-r_bottom {
    padding: 20px;
    padding-top: 13px;
}
.product-r__title {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    color: #343E4A;
}
.product-payment {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
    margin-top: 8px;
}
.product-payment span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    border:1px solid #F3F4F5;
    background-color: #FFFFFF;
}
.product-payment span img {
    width: 100%;
    height: auto;
}
.product-block--wrapper {
    grid-column: 2/-1;
    margin-top: -132px;
    margin-left: 20px;
}
.product-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    padding: 15px;
    background-color: #FFFFFF;
    border-radius: 23px;
}
.product-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 25px;
    border-radius: 15px;
    background-color: #EFF5FB;
}
.product-box p {
    color: #20247A;
    font-size: 28px;
    line-height: 109%;
    font-weight: 700;
}
.product-box_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-box_top>span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.03);
}
.product-box>span {
    color: #343E4A;
    font-size: 13px;
    line-height: 138%;
}


.product-tabs {
    padding-top: 214px;
    padding-bottom: 214px;
    overflow: hidden;
}
.product-tabs_nav {
    display: flex;
    align-items: center;
    gap: 35px;
}
.product-tab__btn {
    cursor: pointer;
    color: #191C21;
    border-bottom: 1px dashed #191C21;
    font-size: 15px;
    line-height: 140%;
    font-weight: 700;
    transition: .3s;
}
.product-tab__btn:hover {
    color: #20247A;
    border-color: #20247A;
}
.product-tab__btn.active {
    pointer-events: none;
    border-color: transparent;
    opacity: 0.4;
}
.product-tabs_content {
    margin-top: 60px;
}
.product-tab_content {
    display: none;
}
.product-tab_content.active {
    display: block;
}
.product-tab_item {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.product-tab_desc--wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.product-tab_desc--text {
    margin-top: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}
.product-tab_desc--text.active {
    display: block;
}
.product-tab_desc--text p {
    color: #343E4A;
    font-size: 13px;
    line-height: 138%;
}
.product-tab__more {
    margin-top: 15px;
    color: #20247A;
    font-size: 14px;
    line-height: 143%;
    font-weight: 600;
    border-bottom: 1px dashed rgba(32, 36, 122, 0.5);
    display: inline-block;
    cursor: pointer;
    transition: .3s;
}
.product-tab__more:hover {
    color: #19D8C4;
    border-color: rgba(25, 216, 196, 0.5);
}
.product-tab_banner {
    width: 613px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
    padding: 28px 25px;
}
.product-tab_banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.product-tab_banner__tag {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 7px;
    background-color: #49207A;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    line-height: 133%;
}
.product-tab_banner__title {
    margin-top: 2px;
    color: #FFFFFF;
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    line-height: 123%;
    font-weight: 800;
}
.product-tab_banner__text {
    margin-top: 2px;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 140%;
    max-width: 328px;
}
.product-tab_banner__link {
    margin-top: 7px;
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    line-height: 138%;
}

.product-tab_chars--items {
    margin-top: 15px;
    columns: 2;
    column-gap: 60px;
    row-gap: 10px;
}
.product-tab_char {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}
.product-tab_char:nth-child(8) ~ .product-tab_char {
    display: none;
}
.product-tab_char::after {
    content: '';
    display: block;
    flex-grow: 1;
    height: 1px;
    border: 1px dashed #92969A;
}
.product-tab_char:first-child {
    margin-top: 0;
}
.product-tab_char p {
    color: #92969A;
    font-size: 13px;
    font-weight: 500;
    line-height: 138%;
}
.product-tab_char span {
    color: #343E4A;
    font-size: 13px;
    font-weight: 500;
    line-height: 138%;
    display: block;
    order: 1;
}
.product-tab_block--top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-tab_reviews__btn {
    padding: 12px 14px;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}
.product-tab_reviews--slider {
    margin-top: 30px;
    overflow: visible;
}
.product-tab_review {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    height: auto;
    background-color: #FFFFFF;
    border: 1px solid #F3F4F5;
    border-radius: 15px;
    padding: 20px;
    -webkit-box-shadow: 0px 11px 18px 0px rgba(8, 37, 67, 0.06);
    -moz-box-shadow: 0px 11px 18px 0px rgba(8, 37, 67, 0.06);
    box-shadow: 0px 11px 18px 0px rgba(8, 37, 67, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.product-tab_review.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.product-tab_review--top {
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-tab_review_avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
}
.product-tab_review_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-tab_review_name {
    color: #191C21;
    font-size: 15px;
    line-height: 140%;
    font-weight: 700;
}
.product-tab_review_date {
    margin-top: 2px;
    color: #92969A;
    font-size: 12px;
    line-height: 133%;
}
.product-tab_review--text {
    margin-top: 10px;
    margin-bottom: 8px;
}
.product-tab_review--text p {
    color: #343E4A;
    font-size: 14px;
    font-weight: 500;
    line-height: 143%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}
.product-tab_review__more {
    margin-top: 10px;
    color: #20247A;
    font-size: 14px;
    line-height: 143%;
    font-weight: 600;
    border-bottom: 1px dashed rgba(32, 36, 122, 0.5);
    display: inline-block;
    cursor: pointer;
    transition: .3s;
}
.product-tab_reviews--slider .products-slider_navigation {
    top: calc(50% - 28px);
}
.product-tab_review--bottom {
    margin-top: auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 9px;
}
.product-tab_review--stars {
    display: flex;
    align-items: center;
    gap: 4px;
}
.product-tab_reviews--bottom {
    margin-top: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-tab_reviews__more {
    padding: 11px 18px;
}
.product-footer {
    padding-top: 60px;
    /* padding-bottom: 60px; */
}
.product-related {
    padding-bottom: 60px;
}
.product-related_slider {
    margin-top: 30px;
}
/* .product-footer_inner {
    overflow: hidden;
} */
.benefits {
    padding-bottom: 110px;
}


.reviews {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}
.reviews-l {
    width: calc(100% - 420px);
}
.reviews-top {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.reviews-count {
    color: #92969A;
    font-size: 12px;
    line-height: 133%;
    margin-top: 1px;
}
.reviews-filters {
    margin-top: 25px;
    padding-bottom: 11px;
    border-bottom: 1px solid #F3F4F5;
    display: flex;
    align-items: center;
    gap: 30px;
}
.reviews-filters_ratings {
    display: flex;
    align-items: center;
    gap: 10px;
}
.reviews-filters_ratings label input {
    display: none;
}
.reviews-filters_rating {
    padding: 6px 11px;
    background-color: #FAF7F3;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    line-height: 138%;
    font-weight: 700;
    color: #191C21;
    transition: .3s;
    cursor: pointer;
}
.reviews-filters_rating:hover {
    background-color: #efece7;
}
.reviews-filters_rating .checkbox {
    display: none;
}
.reviews-filters_ratings label input:checked + .reviews-filters_rating {
    background-color: #FFAD28;
    color: #FFFFFF;
}
.reviews-filters_rating svg path {
    transition: .3s;
}
.reviews-filters_ratings label input:checked + .reviews-filters_rating svg path {
    fill: #FFFFFF;
}
.reviews-filters .checkbox-label {
    align-items: center;
}
.reviews-filters .sort {
    margin-left: auto;
}
.reviews-pic {
    width: 80px;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}
.reviews-pic.swiper-slide-thumb-active {
    border: 2px solid #20247A;
}
.reviews-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}
.reviews-pic:hover img {
    transform: scale(1.2);
}
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}
.review {
    padding: 20px;
    border-radius: 14px;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 11px 18px 0px rgba(8, 37, 67, 0.06);
    -moz-box-shadow: 0px 11px 18px 0px rgba(8, 37, 67, 0.06);
    box-shadow: 0px 11px 18px 0px rgba(8, 37, 67, 0.06);
    border: 1px solid #F3F4F5;
}
.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.review-top .product-tab_review--bottom {
    margin-top: 0;
    width: auto;
}
.review__text {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #343E4A;
    font-size: 14px;
    line-height: 143%;
}
.review-gallery {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.review-pic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}
.review-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}
.review-pic:hover img {
    transform: scale(1.2);
}

.reviews-pagination {
    margin-top: 50px;
}


.reviews-r {
    width: 360px;
    flex-shrink: 0;
}
.reviews-rating {
    border-radius: 20px;
    border: 3px solid #BACFE3;
}
.reviews-rating_top {
    padding: 22px 27px 14px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid #EFF5FB;
}
.reviews-rating__title {
    padding: 8px 13px;
    border-radius: 15px;
    background-color: #EFF5FB;
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
}
.reviews-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}
.reviews-rating__text {
    color: rgba(52, 62, 74, 0.6);
    font-size: 13px;
    line-height: 120%;
    margin-top: 10px;
}
.reviews-rating_mid {
    padding: 15px 40px 14px;
    border-bottom: 1px solid #EFF5FB;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.reviews-rating_row {
    display: flex;
    align-items: center;
    gap: 6px;
}
.reviews-rating_row p {
    color: #191C21;
    font-size: 13px;
    line-height: 138%;
    font-weight: 500;
}
.reviews-rating_row>img {
    width: 20px;
    height: auto;
    flex-shrink: 0;
}
.reviews-rating_row>span {
    display: block;
    flex-grow: 1;
    background-color: #EFF5FB;
    height: 5px;
    border-radius: 900px;
    margin-left: 4px;
}
.reviews-rating_row>span span {
    display: block;
    background-color: #FFAD28;
    height: 100%;
    border-radius: 900px;
}
.reviews-rating_bottom {
    padding: 20px 27px 17px;
}
.reviews-rating__btn {
    padding: 18px;
    width: 100%;
    gap: 10px;
}

.reviews-product {
    margin-top: 30px;
    border-radius: 15px;
    border: 1px solid #F3F4F5;
    background-color: #FFFFFF;
}
.reviews-product_bottom {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.reviews-product_top {
    padding: 14px;
    border-bottom: 1px solid #F3F4F5;
}
.product-min {
    display: flex;
    align-items: center;
    gap: 16px;
}
.product-min_pic {
    width: 97px;
    height: 91px;
    border: 1px solid #F3F4F5;
    border-radius: 10px;
    overflow: hidden;
}
.product-min_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}
.product-min__title {
    color: #343E4A;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
}
.product-min_prices {
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-min__oldprice {
    font-size: 12px;
    line-height: 133%;
    font-weight: 600;
    color: #343E4A;
    position: relative;
    opacity: 0.4;
}
.product-min__oldprice::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 0;
    border-bottom: 1px solid #343E4A;
    transform: rotate(-15deg) translateY(-50%);
}
.product-min__price {
    font-size: 17px;
    line-height: 141%;
    color: #20247A;
    font-weight: 700;
}
.product-min__text {
    color: #92969A;
    font-size: 12px;
    line-height: 133%;
}
.reviews-filters_ratings--select {
    cursor: pointer;
    align-items: center;
    gap: 6px;
    color: #191C21;
    font-size: 13px;
    line-height: 138%;
    font-weight: 700;
    padding: 6px 7px;
    border-radius: 10px;
    background-color: #FAF7F3;
    display: none;
}

.popup-oneclick .product-view_l {
    width: 184px;
}

.popup-gallery {
    max-width: 995px;
    width: 100%;
    overflow: hidden;
}
.gallery-slider {
    margin-top: 15px;
    margin-bottom: 15px;
    overflow: visible;
}
.popup-gallery .gallery-slide {
    border-radius: 10px;
    overflow: hidden;
}
.popup-gallery .gallery-slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}
.gallery-slider .products-slider_navigation {
    left: -12px;
    right: -12px;
}

.popup-review {
    max-width: 995px;
    width: 100%;
}
.review-popup_row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 20px;
}
.review-form {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.review-form_box {
    padding: 14px;
    border-radius: 15px;
    border: 1px solid #F3F4F5;
    width: 381px;
}
.review-form_box__title {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #191C21;
    font-size: 13px;
    font-weight: 500;
    line-height: 138%;
}
.review-form_box__title span,
.review-form__title span {
    font-size: 12px;
    font-weight: 400;
    color: #F72460;
}
.review-rating {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 10px;
}
.rating-input__item {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    cursor: pointer;
}
.rating-input__item span {
    color: #92969A;
    font-size: 12px;
    line-height: 133%;
    transition: .3s;
}
.rating-input__item path {
    transition: .3s;
    opacity: 0.4;
}
.rating-input__item:hover path,
.rating-input__item:hover~.rating-input__item path,
.review-rating[data-total-rating="1"]:not(:hover) .rating-input__item:nth-child(n+5) path,
.review-rating[data-total-rating="2"]:not(:hover) .rating-input__item:nth-child(n+4) path,
.review-rating[data-total-rating="3"]:not(:hover) .rating-input__item:nth-child(n+3) path,
.review-rating[data-total-rating="4"]:not(:hover) .rating-input__item:nth-child(n+2) path,
.review-rating[data-total-rating="5"]:not(:hover) .rating-input__item:nth-child(n+1) path {
    fill: #FFC839;
    opacity: 1;
}
.review-rating[data-total-rating="1"]:not(:hover) .rating-input__item:nth-child(n+5) span,
.review-rating[data-total-rating="2"]:not(:hover) .rating-input__item:nth-child(n+4) span,
.review-rating[data-total-rating="3"]:not(:hover) .rating-input__item:nth-child(n+3) span,
.review-rating[data-total-rating="4"]:not(:hover) .rating-input__item:nth-child(n+2) span,
.review-rating[data-total-rating="5"]:not(:hover) .rating-input__item:nth-child(n+1) span,
.rating-input__item:hover span,
.rating-input__item:hover~.rating-input__item span {
    color: #343E4A;
}

.review-form_comment {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.review-form__title {
    display: block;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 2px;
    color: #191C21;
    font-size: 13px;
    font-weight: 500;
    line-height: 138%;
}

.review-form__input {
    width: 100%;
    padding: 14px 13px;
    border-radius: 8px;
    border: 1px solid #F3F4F5;
    background: #FFFFFF;
    color: #191C21;
    font-size: 13px;
    line-height: 138%;
    height: 101px;
    transition: .3s;
}
.review-form__input:focus {
    border-color: #BACFE3;
    -webkit-box-shadow: 0px 0px 0px 2px rgba(231, 237, 243, 1);
    -moz-box-shadow: 0px 0px 0px 2px rgba(231, 237, 243, 1);
    box-shadow: 0px 0px 0px 2px rgba(231, 237, 243, 1);
}


.file input {
    display: none;
}
.file-block {
    border-radius: 20px;
    border: 1px dashed #BACFE3;
    padding: 7px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: .3s;
}
.file-block:hover {
    border-color: #20247A;
}
.file-block_l {
    border-radius: 15px;
    overflow: hidden;
    width: 84px;
    aspect-ratio: 1;
}
.file-block_l img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.file-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}
.file-box p {
    color: #343E4A;
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
}
.file-box span {
    color: #92969A;
    font-size: 14px;
    line-height: 143%;
    font-weight: 500;
}
.file-box_info {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 900px;
    background-color: #E7EDF3;
    color: #20517A;
    font-size: 12px;
    line-height: 133%;
    font-weight: 600;
}

.review-form__btn {
    display: inline-flex;
    padding: 18px 23px;
    width: max-content;
}
.review-form__btn[disabled] {
    background-color: #92969A;
    opacity: 0.5;
    pointer-events: none;
}

.review-popup_r {
    max-width: 353px;
    width: 100%;
    flex-shrink: 0;
    padding: 14px;
    border: 1px solid #F3F4F5;
    border-radius: 15px;
}

.file-items {
    display: none;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.file._uploaded .file-items {
    display: flex;
}
.file-item {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.file-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: .3s;
}
.file-item:hover::after {
    opacity: 1;
}
.file-item__pic {
    width: 100%;
    height: 100%;
}
.file-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.file-item__close {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background-color: #FFFFFF;
    padding: 0;
    opacity: 0;
    transition: .3s;
}
.file-item:hover .file-item__close {
    opacity: 1;
}
.add-file {
    order: 1;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: #E7EDF3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.add-file span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 10px;
    background-color: #FFFFFF;
}

.popup-thank2 {
    max-width: 739px;
    width: 100%;
    align-items: flex-start;
}
.popup-thank2__btn {
    font-size: 15px;
    gap: 7px;
    padding: 14px 20px;
}
.popup-thank2 .popup-thank__text {
    text-align: left;
}

.popup-review_lock {
    padding: 11px 14px;
    border: 1px dashed #BACFE3;
    border-radius: 15px;
}
.review-popup_btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}
.review-popup__btn {
    height: 57px;
}


.empty-block_wrapper {
    max-width: 783px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.product-tab_desc {
    flex-grow: 1;
}

.variations_form .variations,
.woocommerce-variation-price {
    display: none;
}

.gallery-slide__btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 13px 19px;

}

.gallery-small .gallery-slide {
    user-select: none;
}

.reviews-gallery {
    padding-top: 25px;
}

@media(max-width: 1550px) {
    .product-row {
        grid-template-columns: 460px 1fr 315px;
    }
    .gallery-small .gallery-slide {
        height: 100px;
    }
    .product-mid {
        margin-left: 0;
    }
    .product-block--wrapper {
        margin-top: 0;
        grid-column: 1/-1;
        margin-left: 0;
    }
    .product-block {
        grid-template-columns: repeat(4, 1fr);
    }


    .reviews {
        gap: 30px;
    }
    .reviews-filters {
        gap: 15px;
    }
    .reviews-filters_ratings {
        gap: 8px;
    }
    .reviews-l {
        width: calc(100% - 390px);
    }

}
@media(max-width: 1260px) {
    .product-wrapper {
        padding-top: 144px;
    }
    .product-row {
        grid-template-columns: 331px 1fr;
        gap: 15px;
        margin-top: 15px;
        padding-bottom: 25px;
    }
    .gallery-small .gallery-slide {
        height: 72px;
    }
    .product-mid {
        order: 1;
        grid-column: 1/-1;
    }
    .product-block--wrapper {
        order: 1;
    }
    .product-payment {
        grid-template-columns: repeat(4, 1fr);
    }
    .product-box p {
        font-size: 19px;
    }
    .product-buy .product-cart_qty {
        display: flex;
        max-width: 140px;
    }
    .product__buy {
        flex-grow: 1;
    }

    .product-tab_banner {
        padding: 10px;
        border-radius: 14px;
        width: 332px;
    }
    .product-tab_banner__title {
        max-width: 120px;
        font-size: 15px;
        line-height: 19px;
        font-weight: 700;
    }
    .product-tab_banner__text {
        display: none;
    }
    .product-tab_review {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }



    .reviews-filters_ratings--wrapper {
        position: relative;
    }
    .reviews-filters_ratings--select {
        display: inline-flex;
    }
    .reviews-filters_ratings--select.active {
        background-color: #FFFFFF;
    }
    .reviews-filters_ratings--select svg {
        transition: .3s;
    }
    .reviews-filters_ratings--select.active svg {
        transform: rotate(180deg);
    }
    .reviews-filters_ratings {
        position: absolute;
        top: 100%;
        z-index: 3;
        flex-direction: column;
        width: 100%;
        gap: 0;
        border-radius: 0 0 10px 10px;
        overflow: hidden;
        background-color: #FFFFFF;
        display: none;
    }
    .reviews-filters_rating .checkbox {
        display: flex;
    }
    .reviews-filters_ratings label input:checked + .reviews-filters_rating>.checkbox {
        background-color: #20247A;
        border-color: #20247A;
    }
    .reviews-filters_ratings label input:checked + .reviews-filters_rating>.checkbox::after {
        opacity: 1;
    }
    .reviews-filters_ratings label {
        width: 100%;
    }
    .reviews-filters_rating {
        border-radius: 0;
        background-color: #FFFFFF;
    }
    .reviews-filters_ratings label input:checked + .reviews-filters_rating {
        background-color: #FAF7F3;
        color: #191C21;
    }
    .reviews-filters_ratings label input:checked + .reviews-filters_rating svg path {
        fill: #FFAD28;
    }

    .reviews {
        flex-direction: column-reverse;
    }
    .reviews-product {
        display: none;
    }
    .reviews-l,
    .reviews-r {
        width: 100%;
    }

    .popup-gallery {
        max-width: 658px;
    }
    .popup-gallery .gallery-slide img {
        max-height: 254px;
        max-width: 472px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 10px;
        display: block;
    }
   
    .gallery-slide__btn {
        right: 10px;
        bottom: 10px;
        padding: 10px 7px;
        gap: 2px;
        font-size: 12px;
        border-radius: 10px;
    }
}
@media(max-width: 1024px) {
    .review-popup_r {
        display: none;
    }
    .popup-review {
        max-width: 658px;
    }
}
@media(max-width: 991px) {
    .product-top {
        margin-top: 15px;
    }
    .product__title {
        font-size: 22px;
        line-height: 28px;
    }
    .gallery-big {
        border-radius: 10px;
    }
    .product-tags {
        gap: 4px;
        top: 10px;
        left: 10px;
    }
    .product-tag {
        padding: 2px 5px;
        border-radius: 6px;
        font-size: 10px;
    }
    .product-discount {
        top: 10px;
        right: 10px;
        padding: 2px 5px;
        font-size: 11px;
        border-radius: 6px;
    }
    .gallery-big_pagination {
        width: 100%;
        position: absolute;
        left: 10px!important;
        bottom: 10px!important;
        right: 10px!important;
        display: flex!important;
        align-items: center;
        gap: 3px;
        width: auto!important;
        z-index: 2;
    }
    .gallery-big_pagination .swiper-pagination-bullet {
        flex-grow: 1;
        height: 4px;
        background-color: rgba(25, 28, 33, 0.2);
        opacity: 1;
        border: none;
        width: auto;
    }
    .gallery-big_pagination .swiper-pagination-bullet-active {
        width: auto;
        opacity: 0.7;
        background-color: #191C21;
    }
    .gallery-small .gallery-slide,
    .gallery-small .swiper-slide-thumb-active::after {
        border-radius: 10px;
    }
    .product-r_top {
        border-radius: 10px;
        padding: 12px;
        gap: 10px;
    }
    .product-r__title {
        font-size: 13px;
        line-height: 17px;
    }
    .product-variations {
        gap: 5px;
    }
    .product-variation a,
    .product-variation button.variation-selector {
        padding: 4px 11px;
        line-height: 128%;
    }
    .product-prices_row p {
        font-size: 19px;
        line-height: 147%;
    }
    .product-prices_row span {
        font-size: 16px;
        line-height: 150%;
    }
    .gallery-small {
        margin-top: 10px;
    }
    .product-prices_list {
        gap: 2px;
    }
    .product-bonus {
        padding: 5px 9px;
    }
    .product__buy {
        padding-top: 13px;
        padding-bottom: 13px;
    }
    .product-r_bottom {
        padding: 8px 12px;
    }
    .product-mid {
        gap: 15px;
        width: calc(100% - 24px);
    }
    .product-mid_desc {
        margin-top: 0;
    }
    .product-mid__title {
        margin-bottom: 3px;
        font-size: 13px;
        line-height: 17px;
    }
    .product-mid_chars--items {
        gap: 5px;
    }
    .product-mid_char p {
        font-size: 12px;
        line-height: 133%;
    }
    .product-mid__more {
        font-size: 12px;
        line-height: 133%;
        margin-top: 3px;
    }
    .product-mid_desc--text {
        -webkit-line-clamp: 4;
    }
    .product-mid_desc--text p {
        font-size: 12px;
        line-height: 133%;
    }
    .product-block--wrapper {
        overflow: hidden;
        overflow-x: auto;
        width: 100vw;
        padding-left: 24px;
        margin-left: -24px;
        display: flex;
        gap: 10px;
    }
    .product-block--wrapper::after {
        content: '';
        display: block;
        min-width: 14px;
    }
    .product-block {
        padding: 6px;
        grid-template-columns: repeat(4, 1fr);
        min-width: 990px;
        gap: 6px;
    }
    .product-r {
        width: calc(100% - 24px);
    }
    .product-box>span {
        font-size: 12px;
        line-height: 133%;
    }

    .product-row {
        padding-bottom: 25px;
    }
    .product-tabs {
        padding-top: 82px;
        padding-bottom: 92px;
    }
    .product-tabs_content {
        margin-top: 15px;
    }
    .product-tab_item {
        gap: 15px;
    }
    .product-tabs_nav {
        gap: 25px;
    }
    .product-tab__btn {
        font-size: 14px;
        line-height: 143%;
    }
    .product-tab_desc--wrapper {
        gap: 15px;
    }
    .product-tab_desc--text {
        margin-top: 10px;
        -webkit-line-clamp: 7;
    }
    .product-tab_desc--text p {
        font-size: 12px;
        line-height: 133%;
    }
    .product-tab__more {
        font-size: 12px;
        margin-top: 10px;
        line-height: 133%;
    }
    .product-tab_chars--items {
        margin-top: 10px;
        columns: 1;
    }
    .product-tab_char {
        margin-top: 7px;
    }
    .product-tab_char p {
        font-size: 12px;
        line-height: 133%;
    }
    .product-tab_char span {
        font-size: 12px;
        line-height: 133%;
    }
    .product-tab_reviews__btn {
        padding: 10px;
        gap: 8px;
        font-size: 13px;
        line-height: 138%;
    }
    .product-tab_reviews--slider {
        margin-top: 10px;
    }
    .product-tab_review {
        width: 250px;
        padding: 12px;
        border: none;
    }
    .product-tab_review_avatar {
        width: 36px;
        height: 36px;
    }
    .product-tab_review_name {
        font-size: 13px;
        line-height: 138%;
    }
    .product-tab_review--text p {
        font-size: 13px;
        line-height: 138%;
        -webkit-line-clamp: 7;
    }
    .product-tab_review__more {
        font-size: 12px;
        margin-top: 10px;
        line-height: 133%;
    }
    .product-tab_review .product-cart_rating {
        padding: 5px 7px;
    }
    .product-tab_reviews--bottom {
        margin-top: 10px;
    }
    .product-tab_reviews__more {
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .product-related {
        padding-bottom: 40px;
    }
    .product-related_slider {
        margin-top: 18px;
    }
    .product-footer {
        padding-top: 20px;
    }

    .reviews {
        gap: 15px;
        position: relative;
    }
    .reviews-top {
        position: absolute;
        top: 0;
        left: 0;
    }
    .reviews-r {
        margin-top: 36px;
    }
    .reviews-rating_top {
        padding: 9px;
        gap: 9px;
    }
    .reviews-rating__title {
        padding: 5px 8px;
        border-radius: 8px;
        font-size: 17px;
        line-height: 21px;
    }
    .reviews-stars svg {
        width: 15px;
        height: auto;
    }
    .reviews-rating_mid {
        padding: 10px 21px;
    }
    .reviews-rating_row>span {
        margin-left: 2px;
    }
    .reviews-rating_row>img {
        width: 14px;
    }
    .reviews-rating_bottom {
        padding: 10px 9px 7px;
    }
    .reviews-rating__btn {
        padding: 8px;
        gap: 6px;
        font-size: 12px;
        border-radius: 8px;
    }
    .reviews-rating {
        border-radius: 12px;
    }
    .reviews-filters {
        margin-top: 0;
        justify-content: space-between;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    .reviews-filters .checkbox-label {
        order: -1;
    }
    .reviews-filters .sort {
        margin-left: 0;
    }
    .reviews-filters .nice-select {
        width: 332px;
    }
    .reviews-pic {
        width: 50px;
    }
    .reviews-list {
        gap: 10px;
    }
    .review {
        border: none;
        padding: 12px;
        border-radius: 14px;
    }
    .review__text {
        font-size: 13px;
        line-height: 138%;
    }
    .review-pic {
        width: 43px;
    }


    .popup-thank2 {
        max-width: 658px;
    }
    


    .empty-block_wrapper {
        margin-top: 10px;
        gap: 10px;
    }

    .benefits {
        padding-bottom: 70px;
    }
    

    .reviews-gallery {
        padding-top: 15px;
    }

    .file-item {
        overflow: visible;
    }
    .file-item,
    .add-file {
        width: 34px;
        height: 34px;
    }
    .add-file span {
        width: 17px;
        height: 17px;
        border-radius: 4px;
    }
    .add-file span svg {
        width: 13px;
        height: auto;
    }
    .file-item__close {
        opacity: 1;
        transform: translateX(-50%);
        top: unset;
        bottom: -13px;
    }
    .file-item__pic {
        overflow: hidden;
        border-radius: 8px;
    }

}
@media(max-width: 767px) {
    .product-wrapper {
        padding-top: 116px;
    }
    
}
@media(max-width: 690px) {
    .product-row {
        display: flex;
        flex-direction: column;
    }
    .product-l {
        width: 100%;
    }
    .gallery-small .gallery-slide {
        height: auto;
        aspect-ratio: 1.0216;
    }
    .product-r,
    .product-mid {
        width: 100%;
    }

    .reviews-filters {
        flex-wrap: wrap;
        gap: 10px;
    }
    .reviews-filters .sort,
    .reviews-filters .nice-select {
        width: 100%;
    }
    .reviews-pagination {
        margin-top: 20px;
    }



    
}
@media(max-width: 580px) {
    .product-mid {
        margin-top: 5px;
    }
    .product-mid_desc--text {
        -webkit-line-clamp: 5;
    }

    .product-tabs {
        padding-top: 44px;
        padding-bottom: 59px;
    }
    .product-tab_desc--wrapper {
        flex-direction: column;
    }
    .product-tab_banner {
        width: 100%;
    }
    .product-tab_desc--text {
        -webkit-line-clamp: 6;
    }

    .popup-oneclick .product-view_l {
        width: 91px;
    }

    .popup-gallery .gallery-slide img {
        max-height: 49.444vw;
    }
    

    .review-form {
        gap: 15px;
    }
    .popup-gallery .popup__title {
        text-align: center;
    }
    .review-form_box {
        width: 100%;
        padding: 9px;
    }
    .rating-input__item svg {
        width: 28px;
        height: auto;
    }
    .rating-input__item span {
        font-size: 10px;
    }
    .popup-review .popup__title {
        text-align: center;
    }
    .review-form__input {
        height: 86px;
    }
    .file-block_l {
        width: 44px;
        flex-shrink: 0;
        border-radius: 10px;
    }
    .file-block {
        padding: 3px;
        align-items: flex-start;
        gap: 8px;
        border-radius: 12px;
    }
    .file-box {
        gap: 1px;
    }
    .file-box p {
        font-size: 13px;
        line-height: 17px;
        font-weight: 600;
    }
    .file-box span {
        font-size: 12px;
        line-height: 133%;
    }
    .file-box_info {
        padding: 3px 10px;
    }
    .review-form__btn {
        width: 100%;
        font-size: 13px;
        gap: 10px;
        padding: 14px;
    }

    .popup-thank2 {
        align-items: center;
    }
    .popup-thank2__btn {
        font-size: 13px;
        padding: 11px 20px;
    }
    .popup-thank2 .popup-thank__text {
        text-align: center;
    }
    .review-popup_btns {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }

    .benefits {
        padding-bottom: 41px;
    }
}