.product-image-container {
    position: relative;
    margin-bottom: 1px;
  /* nuevo */          
    overflow: hidden;        
}

.product-image {
    max-width: 100%;
    height: 500px;
    transition: transform 0.2s;
    padding-top: 1px;
    padding-bottom: 1px;       
/* nuevo */               
    object-fit: cover;
    transform-origin: center center;
}          
/* nuevo */ 
.image-pequena {
    position: relative;
    margin-bottom: 1px;
}

.product-image-pequena {
    max-width: 100%;
    height: 60px;
    object-fit: scale-down;
    transition: transform 0.2s;
    padding-top: 1px;
    padding-bottom: 1px;                 
}  

/* para los circulos */
.contenedor-circulo {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 5px;
}
.color-circulo {
    display: flex;
    width: fit-content;
    min-width: 1rem;
    padding: 0.5rem;
    align-items: center;  
    justify-content: center;
    aspect-ratio: 1 / 1;
    border-radius: 50%;  
    border: 2px solid #666;
}        
.color-circulo:hover {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}    
/* para las tallas */
.contenedor-talla {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 5px;
}
.talla {
    width: 50px;
    height: 20px;
    border-radius: 38%;
    cursor: pointer;
    padding: 2px;    
    left: 10px;
    border: 2px solid black;          
}        
.talla:hover {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}
/* otras tallas */
.containerT {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    background-color: #f0f0f0;
}

