/* Chip and pill patterns */
    /* ── 3. UTILITY CHIPS & PILLS ────────────────────────────── */
    .eyebrow,
    .section-chip,
    .mini-chip,
    .city-badge,
    .stat-chip,
    .discount-pill,
    .utility-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      padding: 0 14px;
      border-radius: 12px;
      font-size: 13px;
      font-weight: 700;
    }

    .eyebrow {
      background: var(--raspberry-soft);
      color: var(--raspberry);
    }

    .section-chip,
    .mini-chip,
    .city-badge {
      background: var(--teal-soft);
      color: #3f5966;
    }

    .stat-chip {
      background: rgba(255, 255, 255, 0.16);
      color: #fff;
    }

    .discount-pill {
      min-height: 28px;
      padding: 0 10px;
      background: linear-gradient(135deg, var(--raspberry), var(--raspberry-dark));
      color: #fff;
      font-size: 12px;
    }

    .utility-pill {
      min-height: 28px;
      padding: 0 10px;
      background: rgba(255, 255, 255, 0.88);
      color: #3d5964;
      font-size: 12px;
    }

