.product-page .product-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.product-page .product-gallery {
    display: flex;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    overflow-x: auto;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;

    touch-action: auto;
}

.product-page .product-gallery::-webkit-scrollbar {
    display: none;
}

.product-page .product-gallery img {
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
    height: auto;

    scroll-snap-align: start;
    scroll-snap-stop: always;

    object-fit: contain;
    display: block;
    background: #f5f5f5;

    user-select: none;
    -webkit-user-drag: none;
}

/* DOTS */

.product-page .gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 6px;

    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(6px);

    padding: 5px 10px;
    border-radius: 20px;

    z-index: 5;
}

.product-page .gallery-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #999;
    transition: all 0.2s ease;
}

.product-page .gallery-dot.active {
    background: #000;
    width: 16px;
    border-radius: 10px;
}

/* COUNTER */

.product-page .gallery-counter {
    position: absolute;
    top: 10px;
    right: 10px;

    background: rgba(0,0,0,0.6);
    color: #fff;

    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;

    z-index: 6;
}