﻿.cardBodyProduct {
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Animación suave */
}

    .cardBodyProduct p,
    .cardBodyProduct h5 {
        margin-bottom: 0;
    }

    .cardBodyProduct:hover {
        border-color: #cbf8fa; /* Cambia el color del borde en hover */
        box-shadow: 4px 4px 12px rgba(203, 248, 250, 0.3); /* Sombra suave con color #cbf8fa */
    }

.rowImageProduct {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 200px;
    height: 150px;
    overflow: hidden;
    margin: 0 auto;
}

    .rowImageProduct img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }


.containerPrecioProduct h5 {
    font-size: 1.2rem !important;
}

.VerDetallesProducto {
    max-width: 250px;
    width: 120px;
}

/* Para resoluciones MD (768px) en adelante */
@media (min-width: 768px) {
    .VerDetallesProducto {
        margin-left: auto !important;
    }
}

/* Para resoluciones menores a MD */
@media (max-width: 767.98px) {
    .containerPrecioProduct h5,
    .VerDetallesProducto {
        margin-left: auto;
        margin-right: auto;
        text-align: center !important;
        width: 85% !important;
    }
}


@media (min-width: 576px) and (max-width: 1350px) {
    .footer-btn-product-card {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

        .footer-btn-product-card div {
            padding: 0px !important;
            padding-bottom: 0.5rem !important;
        }
}
