.image-column {
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    max-width: calc(100% - 526px);
    width: 100%;
}

.image-column .swiper {
    width: 100%;
}

.product-image-swiper .image-container {
    height: 525px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
}

.product-image-swiper .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumb-swiper {
    height: 97px;
}

.product-thumb-swiper .swiper-wrapper {
    display: none;
}

.product-thumb-swiper.swiper-initialized .swiper-wrapper {
    display: flex;
}

.product-thumb-swiper .thumb-image-container {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    height: 97px;
    cursor: pointer;
    position: relative;
    background: var(--white);
}

.product-thumb-swiper .thumb-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.product-image-swiper-pagination {
    bottom: 12px !important;
    padding: 5px 0 5px 5px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    width: fit-content;
    border-radius: 999px;
    left: 50%;
    white-space: nowrap;
    text-align: center;
    transition: .3s opacity;
}

.product-image-swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    opacity: 1;
    background: transparent;
    border: 2px solid rgba(0,0,0,0.35);
    margin: 0 4px;
}

.product-image-swiper-pagination .swiper-pagination-bullet-active-next,
.product-image-swiper-pagination .swiper-pagination-bullet-active-prev {
    transform: none;
}

.product-image-swiper-pagination .swiper-pagination-bullet-active-next-next,
.product-image-swiper-pagination .swiper-pagination-bullet-active-prev-prev {
    transform: none;
    width: 12px;
    height: 12px;
    margin-bottom: 2px !important;
}

.product-image-swiper-pagination .swiper-pagination-bullet-active {
    background: rgba(0,0,0,0.35) !important;
}

.product-image-swiper-button {
    top: 0;
    bottom: 0;
    width: calc(100% / 4);
    transform: none;
    height: auto;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: stretch;
    z-index: 1;
}

.product-image-swiper-button-next {
    right: 0;
    justify-content: flex-end;
}

.product-image-swiper-button-prev {
    left: 0;
    justify-content: flex-start;
}

.product-image-swiper-button span {
    width: 35px;
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    transition-duration: 0.3s;
}

.product-image-swiper-button svg {
    height: 35px;
}

.product-image-swiper:hover .product-image-swiper-button span {
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0.5;
}

.product-image-swiper-button:hover span {
    background-color: rgba(0, 0, 0, 0.3) !important;
    opacity: 1 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.product-image-swiper-fullscreen-button {
    top: 0;
    bottom: 0;
    width: calc(100% / 2);
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.product-image-swiper-fullscreen-button span {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
    transition-duration: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 40px;
}

.product-image-swiper-fullscreen-button span svg {
    height: 40px;
}

.product-image-swiper:hover .product-image-swiper-fullscreen-button span {
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0.5;
}

.product-image-swiper-fullscreen-button:hover span {
    background-color: rgba(0, 0, 0, 0.3) !important;
    opacity: 1 !important;
}

.product-image-swiper-slide-img-btn {
    display: none;
}

@media (max-width: 1152px) {
    .image-column {
        max-width: unset;
    }
}