/* ==============================
   PRODUCT IMAGE SLIDER (SPLIDE)
   ============================== */

.item-slider-wrapper {
    position: relative;
}

.item-slider-wrapper .slider {
    padding: 5px !important;
    color: #fff;
}

/* Flex layout */
.item-slider-wrapper .slider__flex {
    display: flex;
    align-items: flex-start;
}

/* LEFT COLUMN (THUMBS + ARROWS) */
.item-slider-wrapper .slider__col {
    display: flex;
    flex-direction: column;
    width: 150px;
    margin-right: 32px;
}

/* NAVIGATION BUTTONS */
.item-slider-wrapper .slider__prev,
.item-slider-wrapper .slider__next {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 1px 0px 8px rgba(217, 217, 217, 0.5);
    z-index: 10;
    user-select: none;
}

.item-slider-wrapper .slider__prev {
    margin-bottom: -10px;
}

.item-slider-wrapper .slider__next {
    margin-top: -10px;
}

.item-slider-wrapper .slider__prev i,
.item-slider-wrapper .slider__next i {
    color: var(--product-main-color);
}

/* ==============================
   MAIN IMAGE SLIDER
   ============================== */

#product-main-slider {
    width: 100%;
	min-width: 500px;
}

#product-main-slider .splide__track {
    height: 560px;
}

#product-main-slider .splide__slide {
    height: 100%;
}

#product-main-slider .slider__image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

#product-main-slider .slider__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 3s;
}

#product-main-slider .slider__image:hover img {
    transform: scale(1.1);
}

/* ==============================
   THUMBNAILS SLIDER
   ============================== */

#product-thumb-slider {
    height: 560px;
}

#product-thumb-slider .splide__track {
    height: 100%;
}

#product-thumb-slider .splide__slide {
    height: 80px;
}

#product-thumb-slider .slider__image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: 0.25s;
}

#product-thumb-slider .slider__image:hover {
    opacity: 1;
}

#product-thumb-slider .is-active .slider__image {
    opacity: 1;
    filter: grayscale(0%);
}

#product-thumb-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item-slider-wrapper .slider__images{
	min-width: 70%;
}
/* ==============================
   MOBILE VIEW
   ============================== */

@media (max-width: 767.98px) {

    .item-slider-wrapper .slider__flex {
        flex-direction: column-reverse;
    }

    .item-slider-wrapper .slider__col {
        flex-direction: row;
        align-items: center;
        width: 100%;
        margin-right: 0;
        margin-top: 16px;
    }

    #product-main-slider .splide__track {
        height: 360px;
    }

    #product-thumb-slider {
        height: auto;
        width: calc(100% - 96px);
        margin: 0 16px;
    }

    #product-thumb-slider .splide__slide {
        height: 64px;
        width: 64px;
    }
}

/* ==============================
   ZOOM (UNCHANGED)
   ============================== */

.zoom-box {
    position: relative;
}

.zoom-box img {
    vertical-align: bottom;
}

.zoom-box .zoom-selector {
    position: absolute;
    background-image: url("images/selector.png");
    background-repeat: repeat;
    display: none;
    cursor: crosshair;
}

.zoom-box .viewer-box {
    position: absolute;
    border: 1px solid rgb(239, 237, 240);
    display: none;
    overflow: hidden;
}

.zoom-box .viewer-box > img {
    position: absolute;
    left: 0;
    top: 0;
}
