/* =========================================================
   ENTREGA VALIDADA — RC26.5
   Integra la aprobación de domicilios con el cierre del pedido.
========================================================= */

.estadoEntregaCuenta {
    margin: 12px 0 14px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    background: rgba(255,255,255,.045);
    color: #f3f3f3;
    font-size: 14px;
    line-height: 1.45;
}

.estadoEntregaCuenta strong {
    display: block;
    margin-bottom: 4px;
    color: #ffad42;
}

.estadoEntregaCuenta.aprobado {
    border-color: rgba(111, 205, 120, .46);
    background: rgba(48, 135, 61, .12);
}

.estadoEntregaCuenta.pendiente {
    border-color: rgba(255, 173, 66, .5);
    background: rgba(255, 173, 66, .1);
}

.estadoEntregaCuenta.bloqueado {
    border-color: rgba(255, 105, 97, .42);
    background: rgba(180, 45, 38, .11);
}

.selectorDomicilioAprobado {
    display: grid;
    gap: 6px;
    margin: 0 0 14px;
}

.selectorDomicilioAprobado label {
    font-weight: 700;
}

.selectorDomicilioAprobado select {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px;
    background: #171717;
    color: #fff;
}

.opcionEntrega:disabled {
    cursor: not-allowed;
    opacity: .46;
    filter: grayscale(.45);
}

.opcionEntrega:disabled:hover {
    transform: none;
}

.avisoEntregaGratis.ocultoPorValidacion {
    display: none;
}
