.product-single__top {
    display: flex;
    gap: 32px;
}

@media (max-width: 991px) {
    .product-single__top {
        flex-direction: column-reverse;
        gap: 16px;
    }
}

/* Left  */

.product-single__left {
    flex-shrink: 0;
}

.product-single__gallery {
    position: sticky;
    top: 16px;
}

.product-single__left .f-thumbs.is-classic {
    --f-carousel-slide-width: 100px;
    --f-carousel-slide-height: 100px;
    --f-thumbs-padding-x: 0;
    --f-thumbs-padding-y: 0;
    --f-thumb-selected-shadow: none;
    padding: 10px 0;
}

.product-single__left .f-carousel__slide {
    border-radius: 20px;
    overflow: hidden;
}

.product-single__left .f-carousel__slide img {
    aspect-ratio: 1 / 1;
}

.product-single__left .f-thumbs__slide {
    transition: .3s;
}

.product-single__left .f-thumbs__slide.is-selected {
    opacity: 80%;
}

@media (max-width: 1300px){
    .product-single__left .f-carousel__slide img {
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 991px) {
    .product-single__left {
        order: 1;
        margin-top: 0;
    }

    .product-single__left .f-carousel__slide a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-single__left .f-carousel__slide img {
        width: 100%;
        height: 100%;
    }
}

/* Right */

.product-single__char {

}

.product-single__char span {
    font-weight: 600;
}

.product-calc {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-calc__price {
    display: flex;
    align-items: center;
    gap: 16px;
    line-height: 1;
}

.product-calc__price:empty {
    display: none;
}

.product-calc__price bdi {
    font-size: 24px;
    font-weight: 600;
}

.product-calc__price ins {
    text-decoration: none;
    font-weight: 600;
    font-size: 24px;
    color: var(--red-color);
}

.product-calc__price del {
    opacity: 50%;
    font-size: 18px;
}

.product-calc__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-calc__group-title {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-calc__group-title a {
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}

.proudct-calc__group-title img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-calc__group-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-calc__debug {
    white-space: pre-line;
}

.product-calc__debug:empty {
    display: none;
}

.product-single__controls .btn {
    width: 100%;
}

/* Content */

.product-single__content {
    line-height: 150%;
}

/* Other */
.product-single__other {
    margin-top: 40px;
}

.product-single__other-title {
    margin: 0;
}

.product-single__other .products {
    margin-top: 40px;
}

.product-single__other .product {
    width: calc(25% - 18px);
}

@media (max-width: 991px){
    .product-single__other {
        margin-top: 20px;
    }

    .product-single__other .products {
        margin-top: 20px;
        gap: 16px;
    }

    .product-single__other .product {
        width: 100%;
    }
}

/* Modals */

.product-single__models {
    display: flex;
    gap: 16px;
    align-items: center;
}

.product-single__model {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.product-single__model-title {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-single__model-title.black {
    color: black;
    text-shadow:
        -1px -1px 0 white,
        1px -1px 0 white,
        -1px 1px 0 white,
        1px 1px 0 white
}

.product-single__model-title.gold {
    color: #ffd700;
}

.product-single__model img {
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

@media (max-width: 768px){
    .product-single__models {
        flex-direction: column;
    }
}