/* Per-line cart/checkout notes (Battery/DHL, Pickup-only) — brand orange,
   shown on their own line under the tax line (positioned by JS). */
.ext-line-note {
    display: block;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e5e5e5;
    font-size: 13px;
    font-weight: 700;
    color: #F58220;
    line-height: 1.3;
}

/* Checkout: inline notice under the "Shipment" row explaining why the
   delivery method is locked and which item(s) force it. */
.ext-shipping-restriction-row th {
    border-top: 0;
}
.ext-shipping-restriction {
    padding: 10px 12px;
    background: #fff6ef;
    border-left: 3px solid #F58220;
    border-radius: 4px;
}
.ext-shipping-restriction__title {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #d63638;
    line-height: 1.3;
    margin-bottom: 4px;
}
.ext-shipping-restriction__text {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}
.ext-shipping-restriction__list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
}
.ext-shipping-restriction__list li {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    padding: 2px 0;
}

/* Back-compat: the old inline battery note class. */
.ext-dhl-only-cart-note {
    font-size: 12px;
    font-weight: 600;
    color: #f58220;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .ext-dhl-only-cart-note {
        display: block;
        white-space: normal;
        margin-top: 3px;
    }
}
