
.card-product {
    position: relative; /* Asegura que el label "AGOTADO" se posicione correctamente */
}

.sold-out-label {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
    background-color: red;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 15px;
    text-transform: uppercase;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}