/**
 * Product Flags — front-office styles
 *
 * Shape/sizing matched to a reference site's .view-widget__badge-label
 * (rounded pill, padding, font). Colors are per-flag, set in the BO and
 * injected via hookDisplayHeader() with !important.
 */
.productflags-flag {
    display: inline-flex;
    align-items: center;
    margin: 0 4px 4px 0;
    padding: 7px 10px;
    border-radius: 16px;
    font-family: "RAG sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    user-select: none;
}

/* Slightly larger radius on small screens, matching the reference's mobile sizing */
@media (max-width: 767px) {
    .productflags-flag {
        padding: 8px 8px 8px 10px;
        border-radius: 20px;
        font-size: 14px;
    }
}
