/* VBH Basket Sync – cart / checkout frontend styles */

/* Availability badges */
.vbh-bs-badges {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 4px;
}

.vbh-bs-avail {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
    line-height: 1.5;
}

.vbh-bs-in-stock {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.vbh-bs-partial {
    background: #fef9c3;
    color: #854d0e;
    border: 1px solid #fde047;
}

.vbh-bs-out-of-stock {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.vbh-bs-partial-extra {
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid #fdba74;
    font-weight: 400;
}

/* Delivery date */
.vbh-bs-delivery {
    display: inline-block;
    font-size: 11px;
    color: #6b7280;
    padding: 2px 0;
    white-space: nowrap;
}
.vbh-bs-delivery::before {
    content: '📅 ';
}

/* Web discount row in totals table */
tr.vbh-bs-discount-row th,
tr.vbh-bs-discount-row td {
    color: #166534;
    font-weight: 600;
    font-size: 13px;
}
tr.vbh-bs-discount-row td {
    color: #166534;
}
