/* Order status banner (#974, ported to the signed-out lookup by #1072) - keyed
   to the site's slate/gold/red brand, with a single introduced green reserved
   for the terminal good states. Class-only (not scoped to a page id) so the
   signed-in and signed-out order pages share one rule set. */
.orderStatusBanner {
    --osb-accent: #4E5A76;
    --osb-tint: #eef1f6;
    background: #fff;
    border: 1px solid #e7e9ee;
    border-left: 5px solid var(--osb-accent);
    border-radius: 6px;
    padding: 16px 20px;
}
.orderStatusBanner--shipped   { --osb-accent: #1f7a4d; --osb-tint: #e9f4ee; }
.orderStatusBanner--waiting   { --osb-accent: #d97b06; --osb-tint: #fbf1e2; }
.orderStatusBanner--cancelled { --osb-accent: #AD0000; --osb-tint: #f7e9e9; }
.orderStatusBanner__eyebrow {
    margin: 0 0 2px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
}
.orderStatusBanner__status {
    margin: 0;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 700;
    color: #1b1f27;
    display: flex;
    align-items: center;
}
.orderStatusBanner__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--osb-accent);
    box-shadow: 0 0 0 4px var(--osb-tint);
    margin-right: 12px;
    flex: 0 0 auto;
}
@media (max-width: 575px) {
    .orderStatusBanner { padding: 14px 16px; }
    .orderStatusBanner__status { font-size: 22px; }
}
