/* ───────────────────────────────────────────────
   Zizania — Badges (reusable component)
   Small pill-shaped chips for categories, tags, labels.
   ─────────────────────────────────────────────── */

.zz-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
}

/* Color variants (solid backgrounds — no gradients) */

/* Mint — primary tag/category color (e.g. UPCYCLED DESIGN) */
.zz-badge--mint {
    background-color: var(--secondary);
    color: var(--on-secondary);
}

/* Lime — for emphasis / featured (e.g. product "UNIQUE" tag) */
.zz-badge--lime {
    background-color: var(--primary);
    color: var(--on-primary);
}

/* Subtle — neutral surface (e.g. material category "Υλικό: Ξύλο") */
.zz-badge--subtle {
    background-color: var(--surface-container-low);
    color: var(--on-surface);
}

/* Floating badge — used for stat overlays (e.g. "100% Social Impact") */
.zz-badge--floating {
    border-radius: var(--radius-md);
    padding: 1.5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.25rem;
    letter-spacing: 0.05em;
}
