/* Logged-out trust banner (templates/trust-banner.html).
   Navy strip under the nav on all frontend pages when no customer session
   exists. Stat values come from TRUST_BANNER in app.py. */
.trust-banner {
    background: var(--core-1-hex, #19284A);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 16px;
    font-family: "Inter", "General Sans", -apple-system, "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.4;
}
.trust-banner__item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 2px 26px;
    color: #FFFFFF;
    text-decoration: none;
    white-space: nowrap;
}
.trust-banner__item + .trust-banner__item {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.trust-banner__item svg {
    flex: 0 0 auto;
}
a.trust-banner__item:hover,
a.trust-banner__item:focus {
    color: #FFFFFF;
    text-decoration: none;
}
.trust-banner__item b {
    font-weight: 600;
}
.trust-banner__muted {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}
.trust-banner__muted--link {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.45);
}
a.trust-banner__item:hover .trust-banner__muted--link {
    color: #FFFFFF;
    text-decoration-color: #FFFFFF;
}
.trust-banner__stars {
    display: inline-flex;
    gap: 1px;
    vertical-align: -2px;
}
.trust-banner__item--mobile {
    display: none;
}
@media (max-width: 767px) {
    /* Two rows: both compact rating badges side by side, then the counts. */
    .trust-banner {
        align-items: flex-start;
        justify-content: flex-start;
        gap: 7px 22px;
        padding: 12px 18px;
    }
    .trust-banner__item {
        padding: 0;
        white-space: normal;
    }
    .trust-banner__item--mobile {
        flex-basis: 100%;
    }
    .trust-banner__item + .trust-banner__item {
        border-left: none;
    }
    /* 44px touch target for the only tappable element; the negative margin
       cancels the padding so the banner's visual height is unchanged. */
    a.trust-banner__item {
        padding: 12px 0;
        margin: -12px 0;
    }
    .trust-banner__item--desktop {
        display: none;
    }
    .trust-banner__item--mobile {
        display: flex;
    }
}
