/*
 * Asian Bowl — couche « skin » (chargée avant premium.css).
 * Tout le système de design vit dans premium.css ; ce fichier ne porte que les
 * jetons de marque partagés et trois utilitaires signature (pastille de prix
 * turquoise, lettrage pinceau, cadre béton) réutilisés par plusieurs pages.
 */
:root {
  --ab-ink: #191c1c;          /* béton nuit (fond de page) */
  --ab-ink-2: #222625;        /* cartes */
  --ab-ink-3: #2c3130;        /* surfaces surélevées */
  --ab-cream: #f4f8f7;        /* blanc cassé (texte) */
  --ab-paper: #e8ebea;        /* béton clair (section manifeste) */
  --ab-teal: #45e0c6;         /* turquoise signature (logo, pastilles de prix) */
  --ab-teal-2: #6ff0da;       /* turquoise hover */
  --ab-teal-deep: #17b39b;
  --ab-chili: #ff5a48;        /* rouge piment */
  --ab-line: rgba(244, 248, 247, 0.13);
  --ab-line-dark: rgba(16, 34, 31, 0.16);
  --ab-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  --ab-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

/* Pastille de prix turquoise : le motif signature du dépliant */
.ab-price {
  display: inline-block;
  padding: 0.28em 0.85em;
  border-radius: var(--radius-full);
  background: var(--ab-teal);
  color: #10221f;
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  line-height: 1.15;
  white-space: nowrap;
}

/* Lettrage pinceau « Asian Bowl » (façon logo) */
.ab-script {
  font-family: var(--font-family-accent);
  font-weight: 400;
  color: var(--ab-teal);
  letter-spacing: 0.02em;
}

/* Prix nu turquoise (sans pastille), pour les listes serrées */
.ab-price-flat {
  font-family: var(--font-family-heading);
  font-weight: 800;
  color: var(--ab-teal);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}
