/* ========================================
   ACF PRODUCT GALLERY
======================================== */

.acf-product-gallery {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}


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

.acf-gallery-main {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.acf-gallery-main-image {
    width: 100%;
    height: 500px;

    border: 1px solid #e5e5e5;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.acf-gallery-image {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    transition: opacity 0.2s ease;
}



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

.acf-gallery-thumbnails-wrapper {

    position: relative;

    margin-top: 15px;

    padding: 0 45px;
}

.acf-gallery-thumbnails {

    display: flex;

    gap: 10px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scrollbar-width: none;
}

.acf-gallery-thumbnails::-webkit-scrollbar {
    display: none;
}


/* Individual thumbnail */

.acf-gallery-thumbnail {

    flex: 0 0 85px;

    width: 85px;
    height: 85px;

    padding: 0;

    border: 1px solid #ddd !important;

    background: #fff;

    cursor: pointer;

    overflow: hidden;

    transition: border-color .2s ease;
}

.acf-gallery-thumbnail img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


/* Active thumbnail */

.acf-gallery-thumbnail.active {
    border: 2px solid #222 !important;
}

.acf-gallery-thumbnail:hover, .acf-gallery-thumbnail[type=button]:focus, .acf-gallery-thumbnail[type=button]:hover, .acf-gallery-thumbnail[type=submit]:focus, .acf-gallery-thumbnail[type=submit]:hover, button:focus, button.acf-gallery-thumbnail:hover {
    border-color: #777 !important;
    background: none !important;
}


/* ========================================
   THUMBNAIL ARROWS
======================================== */

.acf-gallery-thumbnails-wrapper button.acf-gallery-thumb-prev, .acf-gallery-thumbnails-wrapper button.acf-gallery-thumb-next {

    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 32px;
    height: 32px;

    border: 1px solid #ddd;

    border-radius: 50%;

    background: #fff;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;

    z-index: 3;
}

.acf-gallery-thumb-prev {
    left: 0;
}

.acf-gallery-thumb-next {
    right: 0;
}

.acf-gallery-thumb-prev:hover,
.acf-gallery-thumb-next:hover {
	background: #f5f5f5 !important;
    color: #000 !important;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 768px) {

    .acf-gallery-main-image {
        height: 400px;
    }

    .acf-gallery-thumbnail {

        flex-basis: 70px;

        width: 70px;
        height: 70px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 480px) {

    .acf-gallery-main-image {
        height: 300px;
    }

    .acf-gallery-thumbnails-wrapper {
        padding: 0 38px;
    }

    .acf-gallery-thumbnail {

        flex-basis: 62px;

        width: 62px;
        height: 62px;
    }

    .acf-gallery-main-prev,
    .acf-gallery-main-next {

        width: 34px;
        height: 34px;

        font-size: 17px;
    }

}