.product-gallery {
    text-align: center;
}

.product-gallery .main-image-wrapper {
    background-color: #FBFBF8;
    padding: 20px;
    margin-bottom: 20px;
}

.product-gallery .main-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Force perfect square */
    overflow: hidden;
}

.product-gallery .main-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Thumbnails */
.product-gallery .gallery-thumbnails .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s;
}

.product-gallery .gallery-thumbnails .thumb img:hover {
    transform: scale(1.05);
}

/* Splide arrows styling */
.splide__track {
    height: 100%;
}

.splide__arrow {
    background-color: var(--color2);
    height: 50px;
    width: 50px;
    opacity: 1;
    transition: all 0.2s ease-in-out;
    border-radius: 50%;
}

.splide__arrow:hover {
    background-color: var(--color3);
}

.splide__arrow--prev {
    left: -1.5em;
}

.splide__arrow--next {
    right: -1.5em;
}

.splide__pagination {
    display: none;
}

/* Mobile */
@media screen and (max-width: 992px) {
    .splide__arrow {
        height: 35px !important;
        width: 35px !important;
    }

    .splide__arrow--prev {
        left: 0.5em !important;
    }

    .splide__arrow--next {
        right: 0.5em !important;
    }
}
