.section_product_detail .section__content {
    padding: 185px 0 40px;
}
.section_product_detail .section__bg:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}
.product-detail__discount-label {
    position: absolute;
    top: 0;
    right: 40px;
    z-index: 100;
}
.product-detail__discount-label.topleft {
    left: 40px;
    right: auto;
}
.product-detail__discount-label.bottomleft {
     top: auto;
     left: 40px;
     right: auto;
     bottom: 20px;;
 }
.product-detail__discount-label.bottomright {
    top: auto;
    bottom: 20px;
}
.product-detail__discount-label img {
    max-width: 130px;
}
.product-detail__discount-label img + img {
    margin-top: 5px;
}
.product-gallery {
    position: relative;
    padding: 0 30px;
}
.product-gallery__item {
    /*margin-bottom: 40px;*/
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
}
.product-gallery__img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 100%;
    max-height: 90%;
    width: auto;
    height: auto;
}
.product-gallery .swiper-slide {
    opacity: 0 !important;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.product-gallery .swiper-slide-active {
    opacity: 1 !important;
    z-index: 3;
}
.product-gallery .swiper-button-next {
    right: 0;
    left: auto;
}
.product-gallery .swiper-button-prev {
    left: 0;
    right: auto;
}

.product-detail {}
.product-detail__name {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    color: #FFFFFF;
}
.product-detail__name_mb {
    margin-bottom: 40px;
}
.product-detail__name_large {
    font-size: 28px;
    text-transform: uppercase;
}
.product-detail__text {
    margin-top: 30px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.21;
    color: #FFFFFF;
}
.product-detail__action {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-detail__empty {

}
.product-detail__btn-wrapper {}
.product-detail__measure {
    position: relative;
    z-index: 1;
    padding: 0 0 10px;
    font-weight: 500;
}
.product-detail__preorder-date {
    position: relative;
    z-index: 1;
    padding: 12px 0 0;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    opacity: 0.7;
}
.product-detail__btn {}
.product-detail__counter {
    display: none;
}
.product-detail__btn-wrapper_active .product-detail__counter {
    display: flex;
}
.product-detail__btn-wrapper_active .product-detail__btn {
    display: none;
}
.product-detail__price-wrapper {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}
.product-detail__price {
    font-weight: 700;
    font-size: 21px;
    line-height: 1.24;
    /*text-transform: uppercase;*/
    color: #FFFFFF;
}
.product-detail__price_old {
    color: #E01D24;
    font-size: 12px;
    text-decoration: line-through;
}
.product-detail__price-link {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.21;
    color: #ED1D24;
    margin-top: 2px;
    border-bottom: 1px solid transparent;
}
.product-detail__price-link:hover {
    border-color: rgba(237, 29, 36, 0.5);
}
.product-detail__info {
    margin-top: 60px;
    max-width: 430px;
}
.product-detail__social {
    opacity: 0.2;
    transition: opacity 0.3s ease;
}
.product-detail__social:hover {
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .product-detail {
        text-align: center;
    }
    .product-detail__action {
        flex-direction: column;
        gap: 24px;
    }
    .product-detail__price-wrapper {
        align-items: center;
    }
    .product-detail__info {
        flex-direction: column;
    }
    .product-detail__social {
        margin-top: 16px;
    }
}
@media screen and (min-width: 768px) {
    .section_product_detail .section__content {
        padding: 145px 0 40px;
    }
    .section_product_nav .section__content {
        padding: 0 0 55px;
    }
    
    .product-detail__discount-label {
        right: 70px;
    }
    .product-detail__discount-label.topleft {
        left: 70px;
        right: auto;
    }
    .product-detail__discount-label.bottomleft {
         top: auto;
         left: 70px;
         right: auto;
         bottom: 50px;
     }
    .product-detail__discount-label.bottomright {
        top: auto;
        bottom: 50px;
        right: 70px;
    }
    .product-detail__name {
        font-size: 24px;
    }
    .product-detail__name_large {
        font-size: 40px;
    }
    .product-detail__name_mb {
        margin-bottom: 80px;
    }
    .product-detail__text {
        font-size: 19px;
    }
    .product-detail__action {
        max-width: 410px;
    }
    
    .product-gallery {
        padding: 0 60px;
    }
    .product-gallery .swiper-button-next {
        right: 20px;
    }
    .product-gallery .swiper-button-prev {
        left: 20px;
    }
}