.product-slider {
    position: relative;
    overflow: hidden;
}

.product-slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.product-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition:
        opacity 0.55s ease,
        visibility 0.55s ease;
}

.product-slide.active {
    visibility: visible;
    opacity: 1;
}

.product-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.product-slider:hover .product-slide.active img {
    transform: scale(1.08);
}

.product-placeholder-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222222;
    text-decoration: none;
}

.product-placeholder-slide strong {
    font-size: 65px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -5px;
    transform: rotate(-12deg);
    text-shadow: 7px 7px #f5df00;
}

.product-tag {
    z-index: 8;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 44px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    background: rgba(8, 9, 9, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.25);
    opacity: 0;
    cursor: pointer;
    transform: translateY(-50%);
    transition: 0.25s;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.product-slider:hover .slider-arrow {
    opacity: 1;
}

.slider-arrow:hover {
    color: #080909;
    background: #f5df00;
    border-color: #f5df00;
}

.slider-dots {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.slider-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    background: rgba(255, 255, 255, 0.55);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.25s;
}

.slider-dot.active {
    width: 22px;
    background: #f5df00;
    border-radius: 10px;
}

@media (max-width: 700px) {
    .slider-arrow {
        width: 34px;
        height: 40px;
        font-size: 24px;
        opacity: 1;
    }

    .product-slider:hover .product-slide.active img {
        transform: none;
    }
}
/* ================================
   PRODUCT IMAGE GALLERY
================================ */

.product-gallery {
    min-width: 0;
    background: #111212;
}

.gallery-main {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 620px;
    background:
        radial-gradient(
            circle,
            rgba(245, 223, 0, 0.13),
            transparent 58%
        ),
        #111212;
}

.gallery-slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition:
        opacity 0.55s ease,
        visibility 0.55s ease;
}

.gallery-slide.active {
    visibility: visible;
    opacity: 1;
}

.gallery-slide img,
.gallery-slide video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-slide img {
    cursor: zoom-in;
    transform: scale(1);
    transform-origin: center;
    transition: transform 0.2s ease;
    will-change: transform;
}

.gallery-main.is-zooming .gallery-slide.active img {
    cursor: zoom-out;
    transform: scale(1.8);
}

.gallery-slide video {
    background: #000000;
}

.gallery-placeholder {
    flex-direction: column;
    gap: 20px;
}

.gallery-placeholder strong {
    color: #ffffff;
    font-size: 100px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -8px;
    text-shadow: 10px 10px #f5df00;
    transform: rotate(-10deg);
}

.gallery-placeholder small {
    color: #f5df00;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 4px;
}

.gallery-main .product-tag {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 54px;
    color: #ffffff;
    font-size: 32px;
    background: rgba(8, 9, 9, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.25);
    opacity: 0;
    cursor: pointer;
    transform: translateY(-50%);
    transition: 0.25s;
}

.gallery-previous {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-main:hover .gallery-arrow {
    opacity: 1;
}

.gallery-arrow:hover {
    color: #080909;
    background: #f5df00;
    border-color: #f5df00;
}

.gallery-zoom-hint {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 20;
    padding: 8px 11px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: rgba(8, 9, 9, 0.78);
    pointer-events: none;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 9px;
    padding: 12px;
    background: #080909;
}

.gallery-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    padding: 0;
    background: #171818;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.25s;
}

.gallery-thumbnail:hover,
.gallery-thumbnail.active {
    border-color: #f5df00;
}

.gallery-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumbnail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #ffffff;
}

.video-thumbnail span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #080909;
    background: #f5df00;
    border-radius: 50%;
}

.video-thumbnail small {
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .gallery-main {
        min-height: 520px;
    }
}

@media (max-width: 600px) {
    .gallery-main {
        min-height: 410px;
    }

    .gallery-arrow {
        width: 38px;
        height: 46px;
        font-size: 26px;
        opacity: 1;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(5, 70px);
        overflow-x: auto;
    }

    .gallery-main.is-zooming .gallery-slide.active img {
        transform: none;
    }

    .gallery-zoom-hint {
        display: none;
    }
}