/* aieo/sale-eligibility-message — small badge under the price.
 *
 * Default look: light pink fill (matches the FF brand accent at low
 * opacity), rounded corners, ~12px text. Tier modifier classes let the
 * theme tune per-tier styling without touching this file.
 */

.aieo-sale-eligibility {
    display: inline-block;
    margin: 4px 0 8px;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(244, 103, 103, 0.10);
    color: #1f2937;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
}

.aieo-sale-eligibility--pro {
    background: linear-gradient(135deg, #fcf0f1, #fff7e6);
    color: #1f2937;
    font-weight: 600;
}

.aieo-sale-eligibility--anonymous {
    /* Encourage sign-in: subtle dashed underline-like cue. */
    background: rgba(244, 103, 103, 0.08);
}
