.produto-fotos-section{
    width:100%;
    max-width:900px;
    margin:20px auto 0;
    padding:0 16px;
}

/* FOTO PRINCIPAL */

.produto-foto-principal{
    width:100%;
    max-width:600px;
    height:600px;
    margin:0 auto;
    background:#242526;
    border:1px solid #303136;
    border-radius:16px;
    overflow:hidden;
}

.produto-foto-principal img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
}

/* GALERIA DE FOTOS */

.produto-galeria-fotos{
    width:100%;
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:14px;
    flex-wrap:wrap;
}

.produto-foto-thumb{
    width:150px;
    height:150px;
    padding:0;
    border:2px solid #303136;
    border-radius:12px;
    overflow:hidden;
    background:#242526;
    cursor:pointer;
    transition:.2s;
}

.produto-foto-thumb:hover,
.produto-foto-thumb.active{
    border-color:#2374e1;
    transform:translateY(-2px);
}

.produto-foto-thumb img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
}

/* GALERIA DE VIDEOS */

.produto-galeria-videos{
    width:100%;
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:18px;
    flex-wrap:wrap;
}

.produto-video-thumb{
    width:90px;
    height:160px;
    padding:0;
    border:none;
    border-radius:14px;
    overflow:hidden;
    background:#000;
    position:relative;
    cursor:pointer;
    transition:.2s;
    box-shadow:0 4px 12px rgba(0,0,0,.25);
}

.produto-video-thumb:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 24px rgba(0,0,0,.4);
}

.produto-video-thumb video{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
}

/* MODAL VIDEO */

.produto-video-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
    z-index:999999;
}

.produto-video-modal.active{
    display:flex;
}

.produto-video-modal-box{
    width:100%;
    max-width:420px;
    max-height:90vh;
    background:#000;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    box-shadow:0 20px 70px rgba(0,0,0,.65);
}

.produto-video-modal-box video{
    width:100%;
    height:auto;
    max-height:88vh;
    display:block;
    background:#000;
}

.produto-video-modal-close{
    position:absolute;
    top:12px;
    right:12px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.75);
    color:#ffffff;
    font-size:24px;
    cursor:pointer;
    z-index:10;
}

/* ERRO */

.produto-fotos-error{
    background:#4a0000;
    color:#ffffff;
    padding:15px;
    border-radius:10px;
    margin:15px;
}

/* TABLET */

@media(max-width:768px){

    .produto-foto-principal{
        max-width:100%;
        height:auto;
        aspect-ratio:1/1;
    }

    .produto-foto-thumb{
        width:120px;
        height:120px;
    }

    .produto-video-thumb{
        width:80px;
        height:145px;
    }
}

/* MOBILE */

@media(max-width:576px){

    .produto-fotos-section{
        padding:0 10px;
        margin-top:14px;
    }

    .produto-foto-principal{
        border-radius:12px;
        height:auto;
        aspect-ratio:1/1;
    }

    .produto-galeria-fotos{
        gap:8px;
    }

    .produto-foto-thumb{
        width:90px;
        height:90px;
        border-radius:10px;
    }

    .produto-galeria-videos{
        gap:8px;
    }

    .produto-video-thumb{
        width:70px;
        height:125px;
        border-radius:12px;
    }
}