/* =============================================================================
   css/components.css — Kookiya Flavors · Composants réutilisables
   BEM-like · Référence : BRIEF §8.8 · ANNEXE 1 §2.4 · Style Guide mockup
   ========================================================================== */


/* ==========================================================================
   1. BOUTONS
   ========================================================================== */

/* Base CTA (utilisée par primary + secondary) ------------------------ */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition:
    background-color var(--t-base) var(--ease-exit),
    color            var(--t-base) var(--ease-exit),
    border-color     var(--t-base) var(--ease-exit),
    transform        var(--t-base) var(--ease-exit);
}

.btn__arrow{
  font-size: 13px;
  transition: transform var(--t-base) var(--ease-exit);
}

.btn:hover:not(:disabled) .btn__arrow{
  transform: translateX(2px);
}

.btn:disabled,
.btn[aria-disabled="true"]{
  opacity: 0.4;
  cursor: not-allowed;
}

/* Variante primaire — Safran sur Encre ------------------------------ */
.btn--primary{
  background: var(--safran);
  color: var(--encre);
}
.btn--primary:hover:not(:disabled){
  background: var(--or);
}

/* État loading (disque qui pulse) ----------------------------------- */
.btn--primary.is-loading{
  background: var(--safran-2);
  cursor: wait;
  padding-right: 48px;
}
.btn--primary.is-loading .btn__arrow{ display: none; }
.btn--primary.is-loading::after{
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--encre);
  transform: translateY(-50%);
  animation: pulseDot 1.2s ease-in-out infinite;
}
@keyframes pulseDot{
  0%, 100% { opacity: 0.25; transform: translateY(-50%) scale(0.8); }
  50%      { opacity: 1;    transform: translateY(-50%) scale(1.2); }
}

/* Variante secondaire — Encre sur Ivoire --------------------------- */
.btn--secondary{
  background: var(--encre);
  color: var(--ivoire);
  padding: 14px 28px;
}
.btn--secondary:hover:not(:disabled){
  background: var(--encre-2);
}

/* Variante block (100% largeur) ------------------------------------- */
.btn--block{
  width: 100%;
  justify-content: space-between;
}

/* ==========================================================================
   2. OPTION DE QUESTIONNAIRE
   ========================================================================== */

.opt{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 15px 16px;
  background: transparent;
  border: 1px solid var(--or);
  color: var(--encre);
  cursor: pointer;
  text-align: left;
  min-height: 48px; /* cible tactile ≥ 44px */
  transition:
    background-color var(--t-base) var(--ease-exit),
    color            var(--t-base) var(--ease-exit),
    border-color     var(--t-base) var(--ease-exit);
}

.opt__label{
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.15;
}

.opt__note{
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 10.5px;
  color: #8a7c5a;
  margin-left: 6px;
  letter-spacing: 0.02em;
}

.opt__arrow{
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--safran);
  flex-shrink: 0;
}

/* Hover — renversement Encre sur Safran */
.opt:hover:not(:disabled){
  background: var(--safran);
  color: var(--encre);
  border-color: var(--safran);
}
.opt:hover .opt__note{ color: rgba(26,39,68,0.7); }
.opt:hover .opt__arrow{ color: var(--encre); }

/* Sélectionné (au clic, avant transition vers écran suivant)
   Double filet : Encre à l'extérieur (border native) + Or à l'intérieur
   (::before inset 4px). Même ADN visuel que la modale et le hover des
   cartes d'offre. */
.opt.is-selected{
  background: var(--encre);
  color: var(--ivoire);
  border-color: var(--encre);
}
.opt.is-selected .opt__note{ color: rgba(251,243,227,0.6); }
.opt.is-selected .opt__arrow{ color: var(--safran); }
.opt.is-selected::before{
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--or);
  pointer-events: none;
}

/* Désactivé */
.opt:disabled,
.opt[aria-disabled="true"]{
  border-color: rgba(26,39,68,0.16);
  color: rgba(26,39,68,0.35);
  background: transparent;
  cursor: not-allowed;
}
.opt:disabled .opt__note{ color: rgba(26,39,68,0.25); }
.opt:disabled .opt__arrow{ color: rgba(26,39,68,0.2); }


/* ==========================================================================
   3. CHAMP INPUT (variante "line")
   ========================================================================== */

.field{
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.field__label{
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--turquoise);
  transition: color var(--t-base) var(--ease-exit);
}

.field__input{
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--or);
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  padding: 10px 0;
  color: var(--encre);
  caret-color: var(--safran);
  transition:
    border-color var(--t-base) var(--ease-exit),
    padding      var(--t-base) var(--ease-exit);
}
.field__input::placeholder{
  color: rgba(26,39,68,0.3);
  font-style: italic;
}

.field__input:focus{
  border-bottom-color: var(--safran);
  border-bottom-width: 2px;
  padding-bottom: 9px;
}
.field:focus-within .field__label{
  color: var(--safran);
}

.field__hint{
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 10.5px;
  font-style: italic;
  color: #8a7c5a;
  letter-spacing: 0.02em;
}

.field__error{
  display: none;
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 11px;
  font-style: italic;
  color: var(--terracotta);
  letter-spacing: 0.02em;
  align-items: center;
  gap: 6px;
}
.field__error::before{
  content: "!";
  width: 12px;
  height: 12px;
  border: 1px solid var(--terracotta);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-family: var(--ff-mono);
  font-size: 8.5px;
  flex-shrink: 0;
}

.field.is-error .field__input{
  border-bottom-color: var(--terracotta);
  border-bottom-width: 2px;
  padding-bottom: 9px;
  color: var(--terracotta);
}
.field.is-error .field__label{ color: var(--terracotta); }
.field.is-error .field__error{ display: inline-flex; }

/* Variante sur fond Encre (tel input L'Exclusive) */
.field--on-encre .field__label{ color: rgba(212,168,75,0.75); }
.field--on-encre .field__input{
  color: var(--ivoire);
  border-bottom-color: var(--or);
}
.field--on-encre .field__input::placeholder{
  color: rgba(251,243,227,0.35);
}

/* Variante centrée (saisie libre Q7) */
.field--centered{
  align-items: center;
  text-align: center;
}
.field--centered .field__input{
  text-align: center;
  font-size: 26px;
  max-width: 280px;
}


/* ==========================================================================
   4. CARTE D'OFFRE
   ========================================================================== */

.offer-card{
  position: relative;
  padding: 22px 20px;
  background: var(--ivoire-card);
  border: 1px solid rgba(26,39,68,0.18);
  transition:
    transform    var(--t-base) var(--ease-exit),
    box-shadow   var(--t-base) var(--ease-exit),
    border-color var(--t-base) var(--ease-exit);
}

.offer-card__badge{
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--or);
  color: var(--or);
}

.offer-card__head{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
}
.offer-card__title{
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
  color: var(--encre);
}
.offer-card__price{
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 34px;
  line-height: 1;
  color: var(--safran);
}

.offer-card__desc{
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.7;
  color: #5a5a5a;
  margin-top: 12px;
}

.offer-card__features{
  margin-top: 12px;
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 11.5px;
  line-height: 1.8;
  color: #4a4a4a;
}
.offer-card__features li::before{
  content: "·  ";
  color: var(--turquoise);
}

.offer-card__meta{
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--turquoise);
  text-transform: uppercase;
  margin-top: 12px;
}

/* CTA internes aux cartes ------------------------------------------- */
.offer-card__cta{
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--t-base) var(--ease-exit);
}
.offer-card__cta--safran{
  background: var(--safran);
  color: var(--encre);
}
.offer-card__cta--safran:hover{ background: var(--or); }
.offer-card__cta--encre{
  background: var(--encre);
  color: var(--ivoire);
}
.offer-card__cta--encre:hover{ background: var(--encre-2); }

/* Hover — élévation + filet Or animé -------------------------------- */
.offer-card:hover{
  transform: translateY(-4px);
  border-color: var(--or);
  box-shadow:
    0 18px 36px -22px rgba(26,39,68,0.32),
    0 4px 10px -6px  rgba(26,39,68,0.12);
}
.offer-card:hover::before{
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--or);
  pointer-events: none;
  opacity: 0.6;
  animation: breathe 2.4s ease-in-out infinite;
}
@keyframes breathe{
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50%      { opacity: 0.7;  transform: scale(1.005); }
}

/* Variante Exclusive (fond Encre) ----------------------------------- */
.offer-card--exclusive{
  background: var(--encre);
  border-color: var(--encre);
  color: var(--ivoire);
}
.offer-card--exclusive .offer-card__title{ color: var(--ivoire); }
.offer-card--exclusive .offer-card__price{ color: var(--or); }
.offer-card--exclusive .offer-card__desc{ color: rgba(251,243,227,0.72); }
.offer-card--exclusive .offer-card__features{ color: rgba(251,243,227,0.82); }
.offer-card--exclusive .offer-card__meta{ color: var(--or); }
.offer-card--exclusive .offer-card__badge{ color: var(--or); border-color: var(--or); }
.offer-card--exclusive .offer-card__cta--encre{
  background: var(--ivoire);
  color: var(--encre);
}
.offer-card--exclusive .offer-card__cta--encre:hover{ background: #fff; }
.offer-card--exclusive:hover{
  box-shadow:
    0 22px 44px -22px rgba(0,0,0,0.55),
    0 4px 12px -6px  rgba(212,168,75,0.18);
  border-color: var(--or);
}


/* ==========================================================================
   5. CHAPTER HEADER (topbar sticky + progression + label chapitre)
   ========================================================================== */

.topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 12px 20px 8px;
  border-bottom: 1px solid rgba(26,39,68,0.12);
  background: var(--ivoire);
}
.topbar__row{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar__brand{
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--encre);
  letter-spacing: 0.02em;
}
.topbar__folio{
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--turquoise);
  text-transform: uppercase;
}

/* Variante sur fond Encre */
.topbar--encre{
  background: var(--encre);
  border-bottom-color: rgba(212,168,75,0.14);
}
.topbar--encre .topbar__brand{ color: var(--ivoire); }
.topbar--encre .topbar__folio{ color: var(--turquoise); }

/* Progress ticks ---------------------------------------------------- */
.ticks{
  display: flex;
  gap: 3px;
  height: 1px;
  padding: 0 20px;
  margin-top: 2px;
}
.ticks__seg{
  flex: 1;
  background: rgba(26,39,68,0.12);
  transition: background-color var(--t-base) var(--ease-exit);
}
.ticks__seg.is-on{ background: var(--safran); }

/* Label chapitre --------------------------------------------------- */
.chapter{
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  color: var(--turquoise);
  text-transform: uppercase;
}
.chapter__roman{
  color: var(--safran);
  font-weight: 400;
}


/* ==========================================================================
   6. NUMÉRO DE QUESTION (grand chiffre italique Safran)
   ========================================================================== */

.q-num{
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(68px, 8vw, 96px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--safran);
}
.q-num__dot{
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--safran);
  border-radius: 50%;
  vertical-align: top;
  margin-left: -2px;
  margin-top: 10px;
}
.q-num__of{
  font-family: var(--ff-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(26,39,68,0.45);
  margin-left: 10px;
  text-transform: uppercase;
  vertical-align: top;
  display: inline-block;
  margin-top: 18px;
}


/* ==========================================================================
   7. FOOTER SIGNATURE (bas d'écran : back + signature Pinyon)
   ========================================================================== */

.foot-sign{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: var(--space-5) 20px;
}
.foot-sign__back{
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: rgba(26,39,68,0.5);
  text-transform: uppercase;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
}
.foot-sign__back::before{
  content: "";
  width: 18px;
  height: 1px;
  background: var(--turquoise);
}
.foot-sign__back:hover{
  color: var(--encre);
}

.foot-sign__sig{
  font-family: var(--ff-script);
  font-size: 18px;
  color: var(--turquoise);
  line-height: 1;
}

/* Variant sur fond Encre */
.foot-sign--encre .foot-sign__back{ color: rgba(212,168,75,0.4); }
.foot-sign--encre .foot-sign__back::before{ background: rgba(212,168,75,0.4); }
.foot-sign--encre .foot-sign__sig{ color: var(--turquoise); font-size: 20px; }


/* ==========================================================================
   8. HAIRLINE (filet décoratif Or)
   ========================================================================== */

.hairline{
  width: 32px;
  height: 1px;
  background: var(--or);
  margin: 22px auto;
  border: 0;
  display: block;
}
.hairline--wide{ width: 36px; }
.hairline--narrow{ width: 24px; }


/* ==========================================================================
   9. BREATH BACKGROUND (fond respirant des écrans Encre)
   ========================================================================== */

.breath-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(232,146,42,0.22), transparent 55%),
    radial-gradient(ellipse at 20% 85%, rgba(27,122,120,0.25), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(212,168,75,0.12), transparent 50%);
  animation: breath var(--t-breath) ease-in-out infinite;
}
.breath-bg--subtle{
  background:
    radial-gradient(ellipse at 50% 20%, rgba(232,146,42,0.14), transparent 55%),
    radial-gradient(ellipse at 20% 90%, rgba(27,122,120,0.18), transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(212,168,75,0.10), transparent 55%);
  animation: none;
}
.breath-bg--error{
  background:
    radial-gradient(ellipse at 50% 35%, rgba(201,106,58,0.18), transparent 55%),
    radial-gradient(ellipse at 25% 85%, rgba(27,122,120,0.14), transparent 55%);
  animation: none;
}
@keyframes breath{
  0%, 100% { opacity: 0.9; }
  50%      { opacity: 1; }
}


/* ==========================================================================
   10. ORBE DE GÉNÉRATION (écran 09 + variant erreur)
   ========================================================================== */

.orb{
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,75,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb::before{
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(27,122,120,0.35);
  animation: ring 3s ease-in-out infinite;
}
.orb__dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--safran);
  animation: pulse 1.6s ease-in-out infinite;
}
.orb--error{
  border-color: rgba(201,106,58,0.5);
  width: 64px;
  height: 64px;
}
.orb--error .orb__dot{
  background: var(--terracotta);
  animation: none;
}
@keyframes ring{
  0%, 100% { transform: scale(1);    opacity: 0.4; }
  50%      { transform: scale(1.18); opacity: 0.1; }
}
@keyframes pulse{
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50%      { opacity: 1;   transform: scale(1.1); }
}

/* Trois points d'attente (écran génération) ------------------------- */
.dots{
  display: inline-flex;
  gap: 6px;
  justify-content: center;
}
.dots i{
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--turquoise);
  opacity: 0.4;
  animation: dot 1.4s ease-in-out infinite;
}
.dots i:nth-child(2){ animation-delay: 0.18s; }
.dots i:nth-child(3){ animation-delay: 0.36s; }
@keyframes dot{
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}

/* Texte pulsant (écran génération) ---------------------------------- */
.textpulse{
  animation: textpulse 2.2s ease-in-out infinite;
}
@keyframes textpulse{
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}


/* ==========================================================================
   11. LIBELLÉS & MOMENTS POÉTIQUES
   ========================================================================== */

/* Libellé « — OUVERTURE — » avec filets Or -------------------------- */
.overture-label{
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.36em;
  color: var(--or);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.overture-label::before,
.overture-label::after{
  content: "";
  width: 18px;
  height: 1px;
  background: var(--or);
}

/* Italique murmuré (sous-titres, indices, notes de bas) ------------- */
.whisper{
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 11px;
  color: #8a7c5a;
  display: block;
}

/* Signature / moment Pinyon ----------------------------------------- */
.script-line{
  font-family: var(--ff-script);
  color: var(--turquoise);
  line-height: 1;
}

/* Libellé de chapitre avec tirets Or --------------------------------- */
.chap-dashed{
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: #8a7c5a;
  text-align: center;
  letter-spacing: 0.16em;
}
.chap-dashed::before,
.chap-dashed::after{
  content: "—";
  margin: 0 8px;
  color: var(--or);
}


/* ==========================================================================
   12. TRANSITIONS D'ÉCRAN (fade-up + stagger)
   ========================================================================== */

.scene{
  animation: sceneEnter var(--t-slow) var(--ease-enter);
}
.scene.is-leaving{
  animation: sceneLeave var(--t-base) var(--ease-exit) forwards;
}
@keyframes sceneEnter{
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes sceneLeave{
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}

/* Stagger : pose la classe sur un conteneur pour décaler ses enfants */
.stagger > *{
  animation: sceneEnter var(--t-slow) var(--ease-enter) both;
}
.stagger > *:nth-child(1){ animation-delay: 0ms; }
.stagger > *:nth-child(2){ animation-delay: 60ms; }
.stagger > *:nth-child(3){ animation-delay: 120ms; }
.stagger > *:nth-child(4){ animation-delay: 180ms; }
.stagger > *:nth-child(5){ animation-delay: 240ms; }
.stagger > *:nth-child(6){ animation-delay: 300ms; }
.stagger > *:nth-child(7){ animation-delay: 360ms; }
.stagger > *:nth-child(8){ animation-delay: 420ms; }


/* ==========================================================================
   13. MODALE (consentement rétractation · CGV)
   ========================================================================== */

.modal{
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(26,39,68,0.65);
  animation: sceneEnter var(--t-base) var(--ease-enter);
}
.modal.is-open{ display: flex; }

.modal__panel{
  width: 100%;
  max-width: 480px;
  background: var(--ivoire);
  border: 1px solid var(--or);
  padding: 36px 32px 28px;
  position: relative;
}
/* Filet Or intérieur — signature marque (écho visuel avec offer-card:hover
   et .opt.is-selected). Opacité 0.6 pour rester feutré sans disparaître. */
.modal__panel::before{
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212,168,75,0.6);
  pointer-events: none;
}

.modal__overture{
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--or);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.modal__overture::before{
  content: "";
  width: 18px;
  height: 1px;
  background: var(--or);
}

.modal__title{
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--encre);
  margin-bottom: 24px;
}
.modal__title em{
  color: var(--safran);
  font-style: italic;
}

.modal__body{
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  color: #4a4a4a;
}

.modal__check{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  cursor: pointer;
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--encre);
}
.modal__check input{
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--safran);
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.modal__actions{
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
}

.modal__close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  color: var(--encre);
  font-family: var(--ff-mono);
  font-size: 14px;
  cursor: pointer;
}
