.product-gallery {
    position: relative;
    grid-column: 1/2;
}

.product-gallery-main {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
}

.product-gallery-item-full {
    display: block;
}

.product-gallery-item-full img {
    width: 100%;
    height: initial;
    padding: 20px;
    aspect-ratio: 1/1;
    object-fit: contain;
    display: block;
}


.product-gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-width: 0;
    margin-top: 10px;
    gap: 10px;
}

.product-gallery-item-thumb-video:before {
    content: "";
    background: #000;
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    opacity: .5;
    border-radius: 3px;
}

.product-gallery-item-thumb-video:after {
    content: "";
    background-image: url(../../images/icons/video-play-white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 35px;
    height: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-gallery-item-thumb-video {
    position: relative;
    overflow: hidden;
}

.product-gallery-item-full-video {
    position: relative;
}

.product-gallery-item-full-video:before {
    content: "";
    background: #000;
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 18px);
    opacity: .3;
    border-radius: 5px;
}

.product-gallery-item-full-video:after {
    content: "";
    background-image: url(../../images/icons/video-play-white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60px;
    background-color: var(--color-primary);
    border-radius: 100px;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .2s ease;
}

.product-gallery-item-full-video:hover:after {
    background-color: #1A4839;
}

/* @media (max-width: 768px) {
    .product-gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
} */

.product-gallery-item-thumb {
    background-color: #fff;
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
}

.product-gallery-item-thumb-active {
    border: 1px solid var(--color-border);
}

.product-gallery-item-thumb img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: initial;
    object-fit: contain;
    display: block;
}

.glightbox-clean .gclose {
    padding: 0;
}

.swipe-info-pill {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 5px;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    background: var(--color-white);

    img {
        width: 18px;
        transform: rotate(-15deg);
    }
}

.product-gallery-main>.product-loop-badges {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

@media(max-width:1124px) {
    .product-gallery {
        grid-column: 1;
        overflow: hidden;
    }

    .product-gallery-thumbnails {
        display: none;
    }

    .swipe-info-pill {
        display: flex;
        gap: 5px;
    }

}