.tola-product-image-slider-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.tola-product-image-slider-main {
    width: 100%;
    aspect-ratio: 4/3;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
    position: relative;
}

.tola-product-image-slider-main-img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s;
    border-radius: 12px;
    background: #fff;
}

.tola-product-image-slider__main-slide::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 76.84%, rgba(0, 0, 0, 0.8) 100%);

    z-index: 1;
}

.tola-product-image-slider-thumbs {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 0;
    flex-wrap: wrap;
}

.tola-product-image-slider-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
    opacity: 0.8;
}

.tola-product-image-slider-thumb.active,
.tola-product-image-slider-thumb:hover {
    border-color: #1f2937;
    box-shadow: 0 2px 8px rgba(31, 41, 55, 0.10);
    opacity: 1;
}

/* Slider Navigation */
.tola-product-image-slider__main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 100%;
    max-width: 180px;
}

.tola-product-image-slider__main-navigation .swiper-button-arrow {
    display: block;
    position: relative;
    top: 0;
    margin-top: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='-0.00195312' width='32' height='32' rx='16' fill='%23062548'/%3E%3Cpath d='M7.63965 16.0008H24.3561M24.3561 16.0008L15.9979 7.64258M24.3561 16.0008L15.9979 24.359' stroke='white' stroke-width='2.38806' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.tola-product-image-slider__main-navigation .swiper-button-arrow::after {
    display: none;
}

.tola-product-image-slider__main-navigation .swiper-button-prev {
    transform: rotate(180deg);
}

.tola-product-image-slider__main-navigation .swiper-pagination {
    width: auto;
    position: relative;
    top: 0;
    margin-top: 0;
    color: #ffffff;
}

.tola-product-image-slider__thumbs .swiper-slide img{
    cursor: pointer;
    border: 4px solid transparent;
    transition: border-color 0.2s ease-in;
}

.tola-product-image-slider__thumbs .swiper-slide.swiper-slide-thumb-active img{
    border: 4px solid rgba(15, 81, 154, 0.5);
}

.tola-product-image-slider__thumbs img{
    height: 100%;
    object-fit: cover;
}

@media (max-width: 600px) {
    .tola-product-image-slider-main {
        aspect-ratio: 1/1;
        margin-bottom: 16px;
    }
	
	.tola-product-image-slider__thumbs{
		display: none;
	}
	
	.tola-product-image-slider__main-navigation{
		left: calc(50% - 90px);
	}

    .tola-product-image-slider-thumb {
        width: 56px;
        height: 42px;
    }

    .tola-product-image-slider-wrapper {
        max-width: 100%;
        padding: 0 8px;
    }
}