.product-flag {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 5px;
    border-radius: 2px;
    font-weight: bold;
    color: white !important;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sélecteur pour les drapeaux avec transparence */
.product-flag.DISPONIBLE {
    background-color: rgba(0, 153, 50, 0.9) !important; /* Vert avec transparence */
}

.product-flag.RÉSERVÉ {
    background-color: rgba(208, 152, 0, 0.9) !important; /* Bronze avec transparence */
}

.product-flag.VENDU {
    background-color: rgba(209, 0, 0, 0.9) !important; /* Rouge avec transparence */
}

.product-flag.INDISPONIBLE {
    background-color: #323232 !important; /* Gris très foncé */
}