.header-image {
    width: 100%;
    height: auto;
}

.card-product {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-product img {
    height: auto; /* Cambiado de 250px a auto */
    max-height: 250px; /* Se limita el alto sin forzar el recorte */
    object-fit: contain; /* Cambiado de cover a contain para evitar que se corte */
    width: 100%; /* Asegura que ocupe todo el ancho del contenedor */
}

.card-product .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.btn-volver {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background-color: #6c757d;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

.btn-volver:hover {
    background-color: #5a6268;
}
