/* Estilos generales */
body {
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

/* Contenedor principal de la imagen */
.product-img-crop {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; 
    overflow: hidden;
    background-color: #111;
}

/* Corrección estricta para que ambas imágenes (frente y hover) compartan el mismo espacio exacto sin desplazarse */
.product-img-crop img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out, transform 0.5s ease;
}

.product-img-container:hover .img-front {
    opacity: 0;
}

.product-img-container:hover img {
    transform: scale(1.05);
}
