/* ================= PRODUTO – GALERIA PROFISSIONAL ================= */

.product-image {
    width: 100%;
    display: flex;
    justify-content: center;      /* centraliza a galeria */
    align-items: center;
    overflow: hidden;
    background: #fff;             /* fundo limpo */
}

.product-gallery {
    display: flex;
    width: 100%;
    max-width: 520px;             /* controla largura visual (luxo) */
    margin: 0 auto;               /* centraliza no container */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

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

.product-gallery img {
    min-width: 100%;
    width: 100%;
    height: auto;
    flex-shrink: 0;               /* NÃO deixa encolher */
    scroll-snap-align: center;    /* 1 imagem por vez */
    object-fit: contain;
    display: block;
    margin: 0 auto;               /* centralização real */
}
