.product-gallery {
    box-sizing: border-box;
    flex: 0 0 40%;
    max-width: 40%;
    padding: 30px 20px 10px;
}

.product-gallery__viewport {
    min-height: 360px;
    position: relative;
}

.product-gallery__track {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-gallery__track > li {
    align-items: center;
    display: none;
    height: 340px;
    justify-content: center;
    list-style: none;
    text-align: center;
}

.product-gallery__track > li:first-child,
.product-gallery__track > li.is-active {
    display: flex;
}

.product-gallery.is-ready .product-gallery__track > li:not(.is-active) {
    display: none;
}

.product-gallery__track a,
.product-gallery__track picture {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.product-gallery__track img {
    height: auto;
    margin: 0;
    max-height: 325px;
    max-width: 100%;
    width: auto;
}

.product-gallery__arrow,
.photo-viewer__arrow,
.photo-viewer__close {
    appearance: none;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
}

.product-gallery__arrow {
    background: rgba(255, 255, 255, .9);
    border: 1px solid #cbd0d4;
    box-shadow: 0 1px 4px rgba(22, 35, 45, .18);
    color: #59636b;
    height: 32px;
    opacity: .72;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .15s ease;
    width: 32px;
    z-index: 2;
}

.product-gallery__arrow:hover,
.product-gallery__arrow:focus-visible {
    opacity: 1;
}

.product-gallery__arrow::before {
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
    content: '';
    height: 8px;
    left: 11px;
    position: absolute;
    top: 10px;
    transform: rotate(45deg);
    width: 8px;
}

.product-gallery__arrow--prev {
    left: 0;
}

.product-gallery__arrow--next {
    right: 0;
}

.product-gallery__arrow--next::before {
    left: 9px;
    transform: rotate(225deg);
}

.photo-viewer__arrow,
.photo-viewer__close {
    background: rgba(22, 35, 45, .78);
    border: 0;
    color: #fff;
    height: 42px;
    width: 42px;
}

.photo-viewer__arrow::before {
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
    content: '';
    height: 10px;
    left: 16px;
    position: absolute;
    top: 15px;
    transform: rotate(45deg);
    width: 10px;
}

.photo-viewer__arrow--next::before {
    left: 14px;
    transform: rotate(225deg);
}

.product-gallery__arrow[hidden],
.product-gallery:not(.is-ready) .product-gallery__arrow,
.product-gallery__counter:empty,
.photo-viewer__arrow[hidden] {
    display: none;
}

.product-gallery__counter {
    background: rgba(22, 35, 45, .72);
    border-radius: 12px;
    bottom: 4px;
    color: #fff;
    font-size: 12px;
    left: 50%;
    padding: 3px 8px;
    position: absolute;
    transform: translateX(-50%);
}

.product-gallery__thumbs {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 630px;
    min-width: 0;
    overflow: visible;
    padding: 10px 2px;
}

.product-gallery__thumbs .card-slider-img-wrap {
    align-items: center;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    flex: 0 0 72px;
    height: 72px;
    justify-content: center;
    margin: 0 !important;
    padding: 6px;
    width: 72px !important;
}

.product-gallery__thumbs .card-slider-img-wrap.is-active {
    border-color: #f60;
    box-shadow: 0 0 0 1px #f60;
}

.product-gallery__thumbs img {
    height: auto;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto;
}

.photo-viewer {
    align-items: center;
    background: rgba(9, 14, 18, .94);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 56px 70px;
    position: fixed;
    z-index: 100000;
}

.photo-viewer[hidden] {
    display: none;
}

.photo-viewer__image {
    max-height: calc(100vh - 112px);
    max-width: calc(100vw - 140px);
    object-fit: contain;
}

.photo-viewer__close {
    font-size: 30px;
    line-height: 38px;
    right: 18px;
    top: 18px;
}

.photo-viewer__arrow {
    top: 50%;
    transform: translateY(-50%);
}

.photo-viewer__arrow--prev {
    left: 18px;
}

.photo-viewer__arrow--next {
    right: 18px;
}

.photo-viewer__status {
    bottom: 18px;
    color: #fff;
    font-size: 13px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

body.photo-viewer-open {
    overflow: hidden;
}

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

    .product-gallery {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 0 10px;
        width: 100%;
    }

    .product-gallery__viewport {
        min-height: 300px;
    }

    .product-gallery__track > li {
        height: 290px;
    }

    .product-gallery__track img {
        max-height: 270px;
    }

    .product-gallery__thumbs {
        display: none;
    }

    .photo-viewer {
        padding: 54px 12px;
    }

    .photo-viewer__image {
        max-height: calc(100vh - 108px);
        max-width: calc(100vw - 24px);
    }

    .photo-viewer__arrow--prev {
        left: 8px;
    }

    .photo-viewer__arrow--next {
        right: 8px;
    }
}
