/**
 * REGLA 7: idm-variation-swatches
 */

/* ESTADO BLOQUEADO: Estilos solicitados */
.idm-swatch-item.idm-disabled-backorder {
    border-color: #bbb !important;
    color: #bbb !important;
    background-color: #fff !important;
    text-decoration: line-through !important; /* Mantenemos el tachado para indicar "agotado" */
    cursor: not-allowed !important;
    pointer-events: none !important;
    opacity: 0.6 !important;
}

/* Bloqueo de interacciones para evitar cambios visuales */
.idm-swatch-item.idm-disabled-backorder:hover,
.idm-swatch-item.idm-disabled-backorder.active {
    border-color: #bbb !important;
    color: #bbb !important;
    background-color: #fff !important;
}

/* ESTILOS GENERALES */
.variations tr:hover, .variations tr:hover td, .variations tr:hover th {
    background: none !important;
}
.variations th.label, .reset_variations {
    display: none !important;
}
.variations tr {
    display: none;
}
.idm-swatches-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}
.idm-swatch-item {
    border: 1px solid #000;
    padding: 6px 12px;
    font-weight: normal;
    border-radius: 3px;
    cursor: pointer;
    background: #fff;
    min-width: 40px;
    text-align: center;
    font-size: 14px;
    transition: 0.2s ease-in-out;
    text-transform: uppercase;
    color: #000;
}
.idm-swatch-item:hover {
    border-color: #000;
}
.idm-swatch-item.active {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}