.etbdeg-wrap { margin: 16px 0; }
.etbdeg-title { font-weight: 700; margin-bottom: 8px; font-size: 15px; }

/* Rangée de cartes horizontales (type mister-turbo) */
.etbdeg-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.etbdeg-card {
    position: relative;
    flex: 1 1 0;
    min-width: 90px;
    border: 2px solid #d9d9d9;
    border-radius: 6px;
    padding: 10px 8px 12px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    transition: border-color .15s, box-shadow .15s, background .15s;
}
.etbdeg-card:hover { border-color: #9bb9d6; }
.etbdeg-card.etbdeg-active {
    border-color: #1b3a5c;
    box-shadow: 0 0 0 1px #1b3a5c inset;
    background: #f3f8ff;
}
.etbdeg-card .etbdeg-qty {
    display: block;
    font-weight: 700;
    color: #333;
    font-size: 14px;
    margin-bottom: 4px;
}
.etbdeg-card .etbdeg-unit {
    display: block;
    font-weight: 900;
    color: #1b3a5c;
    font-size: 16px;
}
.etbdeg-card .etbdeg-badge {
    position: absolute;
    top: -9px;
    right: -6px;
    background: #c0392b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 10px;
}
@media (max-width: 480px) {
    .etbdeg-card { flex: 1 1 45%; }
}

/* Masque le tableau de remises NATIF du thème (doublon) : nos cartes le remplacent */
#quantityDiscount { display: none !important; }
