.caja-producto{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40vh;
    height: auto;
    gap: 12px;
}
.foto-producto{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40vh;
    /* background-color: black; */
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.imagen-primaria-producto{
    opacity: 1;
}
.imagen-secundaria-producto{
    opacity: 0;
}
.foto-producto:hover .imagen-primaria-producto{
    opacity: 0;
}
.foto-producto:hover .imagen-secundaria-producto{
    opacity: 1;
}

.info-producto{
    cursor: pointer;
}
.nombre-producto{
    font-weight: 550 !important;
    letter-spacing: -0.5px;
    font-size: 14px;
    line-height: 1.4rem;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 18vw;
    margin-top: 12px;
    margin-bottom: 2px;
}
@media(max-width:1080px){
    .nombre-producto{
        max-width: 45vw !important;
    }
}
.sub-producto{
    font-weight: 500;
    margin-top: 2px;
    margin-bottom: 9px;
    color: #999;
    font-size: 11px;
    /* text-rendering: optimizeLegibility; */
}
.price-product{
    font-weight: 400;
    font-size: 15px !important;
    text-align: left;
    margin: 0;
}
.old-price{
    text-align: left;
    margin: 0;
    opacity: .5;
    font-weight: 300 !important;
    font-size: 10px !important;
    text-decoration: line-through;
}
.price-product.descuento, .price-product.descuento_p {
    font-size: 12px !important;
    margin-top: 2px;
    color: #00a650;
}
.fila {
    display: flex;
    gap: 4px;
    align-items: start;
    margin-top: -1px;
}
.columna, .columna_p {
    display: flex;
    align-items: start;
    flex-direction: column-reverse;
}
@media (max-width:1080px){
    .contenedor-correo{
        flex-direction: column;
        padding: 140px 0;
        gap: 70px;
    }
    .foto-producto{
        width: 244px;
        height: 254px;
    }
    .nombre-producto{
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 23vw;
    }
    .titulo-producto{
        margin-top:2rem;
    }
    .primeros_datos{
        padding: 0 8px;
    }
}
