/* ******************************************** */
/** PRODUCT PAGE GALLERY INLINE
/* ******************************************** */

.c-gallery__main-image{
    aspect-ratio: 48/32;
    position: relative;
    overflow: hidden;
}

.c-gallery__main-pic{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 0;
}
.c-gallery__main-pic.is-active{
    opacity: 1;
    z-index: 1;
}

.c-gallery__thumbnails{
    display: flex;
    flex-wrap: nowrap;
    margin: 12px -4px 0;
}

.c-gallery__thumbnail{
    padding: 0 4px;
    width: 25%;
}

.c-gallery__thumbnail-link{
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 100/66;
    transition: border 250ms ease-out;
}

.c-gallery__thumbnail-link.is-active{
    border: 3px solid var(--color-active);
    transition: border 250ms ease-out;
}