.product_page {
    margin-top: 150px
}

.product_page h1 {
    text-transform: none;
    color: #16224a;
    font-size: 32px
}

.product__wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    gap: 60px
}

.product__info {
    display: grid;
    grid-template-areas: "images chars" "descr descr";
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.product__images {
    display: flex;
    flex-direction: column;
    grid-area: images
}

.product__images-image {
    border-radius: 4px;
    height: 300px;
    overflow: hidden
}

.product__images-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.product__images-list {
    display: flex;
    margin-top: 20px;
    gap: 20px
}

.product__images-list div {
    width: 30%;
    height: 80px;
    border-radius: 4px;
    flex-grow: 0;
    flex-shrink: 0;
    overflow: hidden;
    cursor: pointer
}

.product__images-list div img {
    width: 100%;
    height: 100%;
    object-fit: cover
}


.product__images-image {
    position: relative;
    transition: opacity 0.4s ease;
}

.product__images-image.loading {
    opacity: 0.7;
}

.product__images-list div {
    transition: all 0.2s ease;
    border: 2px solid transparent;
    opacity: 0.8;
}

.product__images-list div:hover {
    opacity: 1;
    border-color: #e0e0e0;
}

.product__images-list div.active {
    border-color: #228aed;
    opacity: 1;
    transform: translateY(-3px);
}

.product__images-image img {
    transition: opacity 0.3s ease;
}

.product__images-image img.image-transition {
    opacity: 0;
}

@keyframes microScale {
    0% { transform: scale(1); }
    50% { transform: scale(0.98); }
    100% { transform: scale(1); }
}

.product__images-image:active {
    animation: microScale 0.3s ease;
}


.product__descr {
    grid-area: descr
}

.product__chars-list .char span {
    margin-right: 20px !important;
}

.product__descr-text {
    margin-top: 13px;
    padding-top: 10px;
    border-top: 1px solid #bacade
}

.product__chars-title {
    font-weight: 700;
    font-size: 20px;
    color: #16224a
}

.product__chars-list {
    margin-top: 20px
}

.product__chars-list .char {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 18px
}

.product__price {
    width: 295px;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    border: 1px solid #bacade;
    box-shadow: 0 0 4px rgba(22, 34, 74, .25);
    border-radius: 4px;
    height: 190px;
    padding: 40px 20px
}

.product__price.noprice {
    display: flex;
    height: fit-content
}

.product__price.noprice .product__price-btn button {
    background-color: #f3f8fe;
    color: #21488b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 1px solid #21488b;
    cursor: pointer;
    transition: all .2s ease-in
}

.product__price.noprice .product__price-btn button:hover {
    background-color: #21488b;
    color: #f3f8fe;
    border: 1px solid #21488b
}

.product__price-offer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    margin-bottom: 40px
}

.product__price-offer span {
    color: #bacade
}

.product__price-offer p:last-child {
    color: #16224a;
    font-size: 24px;
    font-weight: 600
}

.product__price-btn {
    width: 100%
}

.product__price-btn button {
    background-color: #228aed;
    color: #f3f8fe;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 1px solid #228aed;
    cursor: pointer;
    transition: all .2s ease-in;
    width: 100%;
    padding-top: 11px;
    padding-bottom: 11px
}

.product__price-btn button:hover {
    background-color: #21488b;
    color: #f3f8fe;
    border: 1px solid #21488b
}

.product__price-title {
    font-size: 20px;
    color: #16224a
}

.product__price-descr {
    margin-top: 16px;
    font-size: 16px;
    color: #16224a
}

.product__price form {
    margin-top: 40px;
    display: flex;
    flex-direction: column
}

.product__price form input[type=tel] {
    border: none;
    border-bottom: 1px solid #bacade;
    padding: 8px 0;
    background-color: rgba(0, 0, 0, 0);
    margin-bottom: 20px;
    outline: none
}

.product__price form .form-block__agreement label {
    color: #6a7d94;
    font-size: 12px;
    margin-top: 20px
}

.product__price form .form-block__agreement label a {
    color: #228aed
}

section.special-offers.seen {
    margin-top: 65px
}

section.special-offers.seen .main__title {
    font-size: 32px
}

@media(max-width: 992px) {
    .product__info {
        display: flex;
        flex-direction: column
    }
    .product__wrapper {
        margin-top: 44px;
        gap: 20px
    }
    .product__images-list {
        margin-top: 10px;
        gap: 16px
    }
    .product__images-list div {
        height: 78px
    }
    .product__price {
        padding: 30px 15px
    }
    .product__price-title {
        font-size: 18px
    }
    .product__price-offer {
        font-size: 16px
    }
    .product__price-descr {
        font-size: 14px
    }
    .product__chars-title {
        font-size: 18px
    }
    .product__descr {
        margin-top: 30px
    }
    .product__descr-text {
        width: 180%
    }
    .product_page h1 {
        font-size: 24px
    }
    .product__chars-list .char {
        font-size: 16px
    }
    section.special-offers.seen .main__title {
        font-size: 24px;
        margin-top: 40px
    }
    .slider__controls {
        display: none
    }
}

@media(max-width: 768px) {
    .product__wrapper {
        flex-direction: column
    }
    .product__descr-text {
        width: 100%
    }
    .product__price {
        width: 100%
    }
}