:root {
  color-scheme: light;
  --bg-page: #f8fafc;
  --fond: var(--bg-page);
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  --texte: #0f172a;
  --texte-doux: #64748b;
  --color-primary: #c40c16;
  --color-secondary: #0f766e;
  --color-nav-from: #0b1635;
  --color-nav-to: #102553;
  --accent: var(--color-primary);
  --accent-fonce: #8a0a0d;
  --secondaire: var(--color-secondary);
  --bordure: #e2e8f0;
  --ombre: 0 18px 42px rgba(15, 23, 42, 0.12);
  --rayon: 12px;
  --largeur-contenu: 1280px;
  --couleur-succes: #15803d;
  --couleur-alerte: #b45309;
  --couleur-danger: #b91c1c;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--fond);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--texte);
  font-family: Figtree, Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.bouton,
.bouton-secondaire,
.ui-button {
  border-radius: var(--rayon-bouton, var(--rayon));
}

.application {
  min-height: 100vh;
}

.entete {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 24, 32, 0.12);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.barre {
  display: grid;
  grid-template-columns: 413px auto auto auto;
  gap: 16px;
  align-items: center;
  max-width: var(--largeur-contenu);
  margin: 0 auto;
  padding: 4px 32px;
}

.marque {
  display: flex;
  gap: 24px;
  align-items: center;
  min-width: 0;
}

.logo {
  display: block;
  width: 141px;
  height: 56px;
  object-fit: contain;
}

.marque strong {
  display: flex;
  width: 180px;
  min-height: 40px;
  align-items: center;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  text-overflow: ellipsis;
}

.marque span {
  display: none;
  color: var(--texte-doux);
  font-size: 13px;
}

.navigation {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--bordure);
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface);
}

.navigation button,
.bouton,
.bouton-secondaire,
.bouton-icone {
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: var(--rayon-bouton, var(--rayon));
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}

.navigation button {
  padding: 0 20px;
  background: transparent;
  color: var(--texte-doux);
}

.navigation button[aria-current="page"] {
  background: var(--accent);
  color: #fff;
}

.bouton {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.bouton:hover {
  background: var(--accent-fonce);
}

.bouton-secondaire,
.bouton-icone {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-color: var(--bordure);
  background: var(--surface);
  color: var(--texte);
}

.bouton-secondaire:hover,
.bouton-icone:hover {
  border-color: var(--texte);
}

.bouton-icone {
  width: auto;
  min-width: 44px;
  padding: 0 12px;
}

.contenu {
  max-width: var(--largeur-contenu);
  margin: 0 auto;
  padding: 22px 20px 120px;
}

html[data-densite="compacte"] .contenu {
  padding-top: 14px;
  padding-bottom: 80px;
}

html[data-densite="confortable"] .contenu {
  padding-top: 36px;
  padding-bottom: 140px;
}

.bandeau {
  display: flex;
  align-items: center;
  min-height: 220px;
  margin-bottom: 22px;
  padding: 30px;
  border-radius: var(--rayon);
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.34)),
    linear-gradient(135deg, var(--color-nav-from), var(--color-nav-to));
  background-position: center;
  background-size: cover;
  box-shadow: var(--ombre);
  color: #fff;
}

.bandeau h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: 0;
}

.bandeau p {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.5;
}

.accueil-public {
  display: grid;
  gap: 0;
  margin: -24px -20px 0;
}

.accueil-hero {
  display: grid;
  min-height: min(720px, calc(100vh - 70px));
  place-items: center;
  padding: 96px 28px 118px;
  background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.42)),
    linear-gradient(135deg, var(--color-nav-from), var(--color-nav-to));
  background-position: center;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.accueil-hero-contenu {
  display: grid;
  gap: 18px;
  justify-items: center;
  max-width: 880px;
}

.accueil-hero .meta {
  justify-content: center;
  margin: 0;
}

.accueil-hero .pastille {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.accueil-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.05;
}

.accueil-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.55;
}

.actions-accueil {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.bouton-hero-clair {
  border-color: rgba(255, 255, 255, 0.78);
  background: transparent;
  color: #fff;
}

.bouton-hero-clair:hover {
  background: #fff;
  color: var(--accent);
}

.spectacles-vedette {
  display: grid;
  gap: 22px;
  padding: 42px 20px 78px;
  background: var(--fond);
  scroll-margin-top: 86px;
}

.entete-section-accueil {
  display: grid;
  gap: 10px;
  justify-items: center;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.entete-section-accueil span {
  color: var(--texte-doux);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.entete-section-accueil h2 {
  margin: 0;
  color: var(--accent);
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.08;
}

.entete-section-accueil p {
  margin: 0;
  color: var(--texte-doux);
  font-size: 17px;
  line-height: 1.5;
}

.accueil-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.carte-vedette {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--bordure);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.09);
}

.carte-vedette .affiche {
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.badge-accueil {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.carte-vedette-corps {
  display: grid;
  flex: 1;
  gap: 10px;
  justify-items: center;
  padding: 14px;
  text-align: center;
}

.carte-vedette-corps h3 {
  min-height: 56px;
  margin: 0;
  color: var(--accent);
  font-size: 21px;
  line-height: 1.18;
}

.carte-vedette-corps .description {
  min-height: 62px;
  font-size: 14px;
}

.dates-vedette {
  display: block;
  min-height: 56px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.actions-section-accueil {
  display: flex;
  justify-content: center;
}

.filtre-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  margin: 0 auto 12px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.filtre-types button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 42px;
  padding: 0 10px;
  border: 0;
  border-right: 1px solid var(--bordure);
  border-radius: 0;
  background: transparent;
  color: var(--texte);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.filtre-types button:last-child {
  border-right: 0;
}

.filtre-types button[aria-current="page"] {
  background: var(--accent);
  color: #fff;
}

.filtre-types span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.filtre-types strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--secondaire);
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.filtre-types button[aria-current="page"] strong {
  background: rgba(255, 255, 255, 0.2);
}

.calendrier-filtre {
  display: grid;
  gap: 8px;
  max-width: 620px;
  margin: 0 auto 14px;
  padding: 8px;
  border: 1px solid var(--bordure);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #f1f5f9);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.calendrier-filtre-entete {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.icone-calendrier {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-nav-from), var(--color-nav-to));
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.calendrier-filtre-entete > strong {
  overflow: hidden;
  color: var(--texte);
  font-size: 15px;
  text-overflow: ellipsis;
  text-transform: capitalize;
  white-space: nowrap;
}

.calendrier-filtre-actions {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.calendrier-filtre-actions button {
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid var(--bordure);
  border-radius: 8px;
  background: var(--surface);
  color: var(--texte);
  font-size: 12px;
  font-weight: 800;
}

.calendrier-filtre-semaines,
.calendrier-filtre-jours {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.calendrier-filtre-semaines span {
  color: var(--texte-doux);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendrier-filtre-jours button {
  position: relative;
  display: grid;
  min-width: 0;
  height: 42px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #ffffff;
  color: var(--texte);
  font-weight: 900;
}

.calendrier-filtre-jours button.hors-mois {
  color: #94a3b8;
}

.calendrier-filtre-jours button:disabled {
  background: #f8fafc;
  color: #cbd5e1;
  opacity: 1;
}

.calendrier-filtre-jours button[aria-current="date"] {
  border-color: var(--accent);
  background: #fff1ef;
  color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 12, 22, 0.14);
}

.calendrier-filtre-jours strong {
  position: absolute;
  right: 4px;
  bottom: 3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--secondaire);
  color: #fff;
  font-size: 9px;
  line-height: 16px;
}

.filtres {
  display: grid;
  grid-template-columns: minmax(200px, 1.2fr) minmax(160px, 0.8fr) minmax(150px, 0.7fr) minmax(150px, 0.7fr);
  gap: 10px;
  max-width: 980px;
  margin: 0 auto 22px;
  padding: 8px;
  border: 1px solid var(--bordure);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.filtres-principaux {
  grid-template-columns: minmax(210px, 1fr) minmax(180px, 0.8fr) minmax(120px, 0.45fr) minmax(200px, 1fr);
  margin-bottom: 10px;
}

.filtres-avances {
  max-width: 1180px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.bouton-autres {
  align-self: end;
  width: 100%;
  min-height: 42px;
}

.bouton-autres[aria-expanded="true"] {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.18);
}

.champ {
  min-width: 0;
}

.champ label {
  display: block;
  margin-bottom: 6px;
  color: var(--texte-doux);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.champ input,
.champ select,
.champ textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  background: var(--surface);
  color: var(--texte);
}

.champ input,
.champ select {
  height: 42px;
}

.champ textarea {
  resize: vertical;
  line-height: 1.45;
}

.grille {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.carte-spectacle {
  overflow: hidden;
  border: 1px solid var(--bordure);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.carte-spectacle:hover {
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.carte-spectacle.est-complete {
  border-color: #f0a8a1;
}

.affiche {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 159 / 239;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #fff;
}

.affiche img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.carte-spectacle:hover .affiche img {
  transform: scale(1.04);
}

.titre-affiche {
  position: absolute;
  left: 16px;
  bottom: 14px;
  max-width: calc(100% - 32px);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
}

.ruban-spectacle,
.ruban-complet {
  position: absolute;
  z-index: 2;
  left: -62px;
  top: 18px;
  width: 220px;
  padding: 5px 12px;
  transform: rotate(-30deg);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.ruban-spectacle {
  background: var(--secondaire);
  color: #fff;
}

.ruban-complet {
  top: 50%;
  left: 50%;
  width: 170%;
  padding: 9px 12px;
  transform: translate(-50%, -50%) rotate(-20deg);
  background: var(--accent);
  color: #fff;
  font-size: 13px;
}

.rubans-familles {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  display: flex;
  max-width: calc(100% - 24px);
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  pointer-events: none;
}

.rubans-familles span {
  max-width: 150px;
  overflow: hidden;
  padding: 5px 8px;
  border-radius: 4px;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.pastille-famille {
  background: #e8fff4;
  color: #12603f;
}

.carte-corps,
.panneau {
  padding: 14px;
}

.bandeau-salle {
  margin: -14px -14px 12px;
  padding: 7px 10px;
  background: linear-gradient(90deg, var(--color-nav-from), var(--color-nav-to));
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
}

.pastille {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  border: 1px solid var(--bordure);
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--texte-doux);
  font-size: 12px;
  font-weight: 700;
}

.pastille-disponible {
  border-color: #88c9a1;
  background: #eaf8ef;
  color: #17643a;
}

.pastille-complet {
  border-color: #f0a8a1;
  background: #fff1ef;
  color: #9d2419;
}

.pastille-neutre {
  border-color: #d5dbe5;
  background: #f8fafc;
  color: var(--texte-doux);
}

.pastille-avis {
  border-color: #f5c66d;
  background: #fff8df;
  color: #8a5a00;
}

.pastille-abonnement {
  border-color: #b8c7ff;
  background: #eef2ff;
  color: #3730a3;
}

.carte-spectacle h2,
.panneau h2,
.detail h2 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.15;
}

.fil-ariane-public {
  max-width: 1180px;
  margin: 0 auto 18px;
  padding: 0 4px;
}

.fil-ariane-public ol {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid var(--bordure);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  color: var(--texte-doux);
  font-size: 13px;
  list-style: none;
}

.fil-ariane-public button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 0;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.fil-ariane-public .icone-retour {
  font-size: 15px;
  line-height: 1;
}

.fil-ariane-public .libelle-court {
  display: none;
}

.fil-ariane-public .separateur {
  color: #94a3b8;
}

.fil-ariane-public .courant {
  min-width: 0;
  color: var(--texte);
  font-weight: 800;
}

.fil-ariane-public .courant span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fil-ariane-public .courant.secondaire {
  color: var(--texte-doux);
  font-weight: 700;
}

.description {
  color: var(--texte-doux);
  line-height: 1.45;
}

.liste-representations {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.ligne-representation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--bordure);
  border-radius: 12px;
  background: #fff;
}

.ligne-representation.est-complete {
  background: #fff8f7;
}

.ligne-representation strong,
.ligne-representation span {
  display: block;
}

.ligne-representation span {
  color: var(--texte-doux);
  font-size: 13px;
}

.actions-tarif-detail {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.controle-quantite-tarif {
  display: grid;
  grid-template-columns: 32px 34px 32px;
  align-items: center;
  min-width: 98px;
  height: 38px;
  overflow: hidden;
  border: 1px solid var(--bordure);
  border-radius: 10px;
  background: var(--surface-alt);
}

.controle-quantite-tarif button {
  width: 32px;
  height: 36px;
  border: 0;
  background: #fff;
  color: var(--accent);
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

.controle-quantite-tarif button:disabled {
  color: #aeb7c5;
  cursor: not-allowed;
}

.controle-quantite-tarif strong,
.quantite-fixe-tarif {
  color: var(--texte);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.quantite-fixe-tarif {
  min-width: 38px;
}

.actions-carte {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.actions-carte > span {
  color: var(--texte-doux);
  font-size: 13px;
  font-weight: 800;
}

.actions-carte .bouton {
  min-width: 104px;
}

.bloc-places {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  background: var(--surface-alt);
}

.bloc-places h2 {
  margin: 0;
}

.bloc-places label {
  color: var(--texte-doux);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.bloc-places select {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  background: var(--surface);
  color: var(--texte);
}

.retour-panier {
  width: fit-content;
  margin-bottom: 16px;
}

.bouton-detail-panier {
  width: 100%;
  margin-top: 10px;
}

.compteur-panier.compact {
  margin: 0 0 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #eef9f2;
  color: #166534;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.bloc-assurance {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #f0cf89;
  border-radius: 14px;
  background: #fff8e8;
}

.bloc-assurance h3 {
  margin: 0 0 4px;
  color: #7c4a03;
  font-size: 16px;
}

.bloc-assurance p {
  margin: 0;
  color: #8a640c;
  font-size: 13px;
  line-height: 1.45;
}

.switch-assurance {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid #f4dca6;
  border-radius: 12px;
  background: #fff;
  color: #7c4a03;
  font-weight: 800;
}

.switch-assurance input {
  width: 18px;
  height: 18px;
  accent-color: #d97706;
}

.entete-detail {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.segmente,
.filtres-dates {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--bordure);
  border-radius: 12px;
  background: var(--surface-alt);
}

.segmente button,
.filtres-dates button {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--texte-doux);
  font-weight: 800;
  cursor: pointer;
}

.segmente button[aria-current="true"],
.filtres-dates button[aria-current="true"] {
  background: linear-gradient(90deg, var(--color-nav-from), var(--color-nav-to));
  color: #fff;
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.18);
}

.infos-salle-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0;
}

.info-salle-carte {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 70px;
  padding: 12px;
  border: 1px solid var(--bordure);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.icone-info-salle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fee2e2;
  color: var(--accent);
  font-size: 21px;
  font-weight: 900;
}

.icone-info-salle.secondaire {
  background: #dbeafe;
  color: #1d4ed8;
}

.info-salle-carte small,
.info-salle-carte strong {
  display: block;
}

.info-salle-carte small {
  color: var(--texte-doux);
  font-size: 13px;
}

.info-salle-carte strong {
  margin-top: 2px;
  overflow-wrap: anywhere;
  color: var(--texte);
  font-size: 15px;
}

.detail-calendrier {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.jour-detail {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--bordure);
  border-radius: 12px;
  background: var(--surface-alt);
}

.jour-detail > strong {
  color: var(--texte);
}

.detail-liste {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.carte-representation {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--bordure);
  border-radius: 12px;
  background: #fff;
  color: var(--texte);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.carte-representation:hover,
.carte-representation.active {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.carte-representation strong {
  font-size: 16px;
}

.carte-representation span:not(.pastille) {
  color: var(--texte-doux);
  font-size: 13px;
}

.carte-representation .achat {
  justify-self: stretch;
  margin-top: 4px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: linear-gradient(90deg, var(--color-nav-from), var(--color-nav-to));
  color: #fff;
  font-weight: 800;
}

.carte-representation.est-complete {
  background: #fff8f7;
}

.carte-representation.est-complete .achat {
  background: #9d2419;
}

.calendrier {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.jour {
  min-height: 118px;
  padding: 10px;
  border: 1px solid var(--bordure);
  border-radius: 12px;
  background: var(--surface);
}

.jour strong {
  display: block;
  margin-bottom: 8px;
}

.jour button {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 6px;
  border: 0;
  border-radius: 6px;
  background: var(--surface-alt);
  color: var(--texte);
  text-align: left;
}

.detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
}

.panneau {
  border: 1px solid var(--bordure);
  border-radius: 14px;
  background: var(--surface);
}

.panier-flottant {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: min(340px, calc(100vw - 40px));
  border: 2px solid var(--accent);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--ombre);
}

.panier-flottant .panier-tete:first-child {
  background: linear-gradient(90deg, var(--color-nav-from), var(--color-nav-to));
  color: #fff;
}

.panier-flottant .panier-tete:first-child .pastille {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.panier-tete {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid var(--bordure);
}

.panier-corps {
  max-height: 48vh;
  overflow: auto;
  padding: 12px 14px;
}

.ligne-panier {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--bordure);
}

.ligne-panier:last-child {
  border-bottom: 0;
}

.actions-ligne-panier {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.controle-quantite-panier {
  display: inline-grid;
  grid-template-columns: 30px 34px 30px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--bordure);
  border-radius: 999px;
  background: var(--surface);
}

.controle-quantite-panier button {
  width: 30px;
  height: 30px;
  border: 0;
  background: var(--surface-alt);
  color: var(--texte);
  font-weight: 900;
}

.controle-quantite-panier strong,
.quantite-fixe-panier {
  min-width: 34px;
  color: var(--texte);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.quantite-fixe-panier {
  display: inline-block;
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--surface-alt);
}

.total {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--bordure);
  font-size: 20px;
  font-weight: 800;
}

.total.secondaire {
  color: var(--color-secondary);
  font-size: 15px;
}

.tunnel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
}

.checkout-retour-laravel {
  width: min(100%, 1152px);
  margin: 16px auto 12px;
}

.checkout-retour-bouton-laravel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  background: transparent;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.checkout-retour-bouton-laravel:hover {
  background: var(--color-primary);
  color: var(--color-ajouter-panier-button);
  transform: scale(1.02);
}

.checkout-laravel {
  width: min(100%, 1152px);
  margin: 0 auto 80px;
  padding: 24px;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: start;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.34);
}

.checkout-laravel > .panneau {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.checkout-laravel h2 {
  margin: 0;
  font-size: 0;
  line-height: 0;
}

.checkout-laravel .formulaire {
  gap: 12px;
  align-items: start;
}

.checkout-laravel .champ label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.checkout-laravel .champ input,
.checkout-laravel .champ select {
  min-height: 40px;
  height: 40px;
  padding: 8px 12px;
  border-color: #d1d5db;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font-size: 14px;
}

.checkout-laravel .champ input:focus,
.checkout-laravel .champ select:focus,
.checkout-laravel .ligne-promo input:focus,
.checkout-laravel .ligne-code-client input:focus {
  outline: 0;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.checkout-laravel .formulaire > label.large {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 8px;
  border-radius: 8px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.45;
}

.checkout-laravel .formulaire > label.large:first-of-type {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid color-mix(in srgb, var(--color-primary) 25%, #fff);
}

.checkout-laravel .formulaire > label.large input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--color-primary);
}

.checkout-laravel .formulaire > label.large a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-laravel .checkout-formulaire-laravel > .bouton {
  margin-top: 14px;
}

.checkout-timer-laravel {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
}

.checkout-timer-laravel::before {
  content: "◷";
  font-size: 16px;
  line-height: 1;
}

.checkout-total-laravel {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  padding: 16px;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  background: #fff;
}

.checkout-total-laravel .total {
  margin: 0;
}

.checkout-laravel .bouton-detail-panier {
  width: 100%;
  justify-content: center;
  margin: 0 0 16px;
  border-color: var(--color-primary);
  border-radius: 6px;
  color: var(--color-primary);
}

.checkout-laravel .bouton-detail-panier:hover {
  background: var(--color-primary);
  color: var(--color-ajouter-panier-button);
}

.checkout-laravel .bloc-promo {
  margin-top: 0;
  padding: 16px;
  border: 2px solid var(--color-secondary);
  border-radius: 8px;
  background: #fff;
}

.checkout-laravel .bloc-promo label {
  color: var(--color-secondary);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.checkout-laravel .ligne-promo {
  grid-template-columns: minmax(0, 1fr) auto;
}

.checkout-laravel .ligne-promo input,
.checkout-laravel .ligne-code-client input {
  border-color: #d1d5db;
  border-radius: 6px;
  background: #fff;
}

.checkout-laravel .ligne-promo .bouton-secondaire {
  border-color: var(--color-secondary);
  border-radius: 6px;
  background: #fff7ed;
  color: var(--color-secondary);
}

.checkout-laravel .bloc-verification-email,
.checkout-laravel .bloc-validation-gratuite,
.checkout-laravel .paiement-detecte,
.checkout-laravel .bloc-assurance {
  margin-top: 12px;
  border-radius: 8px;
}

.checkout-laravel .bloc-verification-email {
  padding: 12px;
  border-color: #dbeafe;
  background: #f8fbff;
}

.checkout-laravel .bloc-verification-email > strong,
.checkout-laravel .bloc-validation-gratuite > strong {
  font-size: 14px;
}

.checkout-laravel .bloc-verification-email > span,
.checkout-laravel .bloc-validation-gratuite > span {
  font-size: 13px;
}

.checkout-laravel .bloc-verification-email .ligne-code-client {
  grid-template-columns: auto minmax(120px, 1fr) auto;
}

.checkout-laravel .bloc-verification-email .ligne-code-client button,
.checkout-laravel .bloc-validation-gratuite .ligne-code-client button {
  min-height: 40px;
  border-radius: 6px;
  white-space: nowrap;
}

.checkout-laravel .bloc-validation-gratuite .ligne-code-client {
  grid-template-columns: minmax(0, 1fr) auto;
}

.tunnel-panier {
  align-items: start;
  min-height: 564px;
}

.entete-panier-page {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border-bottom: 1px solid var(--bordure);
}

.entete-panier-page h1,
.entete-panier-page h2 {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 32px;
  font-weight: 900;
}

.meta-panier {
  margin: 0 0 6px;
  color: var(--texte-doux);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.badge-expiration {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef9f2;
  color: #166534;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.panier-vide-laravel {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 56px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--bordure);
}

.bouton-deplier-panier {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: transparent;
  color: #374151;
  font-size: 12px;
  font-weight: 500;
}

.panier-vide-laravel strong {
  color: var(--texte);
  font-size: 18px;
  font-weight: 800;
}

.note-panier {
  margin: 0;
  padding: 12px 14px 0;
  color: var(--texte-doux);
  font-size: 14px;
  font-style: italic;
  line-height: 1.45;
}

.resume-panier {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 14px;
  margin: 16px 0;
  padding: 14px 0;
  border-top: 1px solid var(--bordure);
  border-bottom: 1px solid var(--bordure);
  color: var(--texte-doux);
}

.resume-panier strong {
  color: var(--texte);
}

.paiement-securise {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--bordure);
  border-radius: 14px;
  background: var(--surface-alt);
  text-align: center;
}

.paiement-securise strong {
  color: var(--texte);
}

.paiement-securise span {
  color: var(--texte-doux);
  font-size: 13px;
  line-height: 1.45;
}

.choix-paiement {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0;
}

.choix-paiement label,
.paiement-detecte {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--bordure);
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--texte);
  font-weight: 800;
}

.modale-paiement {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(4px);
}

.modale-paiement-dialog {
  width: min(100%, 430px);
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.28);
}

.modale-paiement-dialog header {
  padding: 16px 20px;
  background: var(--accent);
  color: #fff;
}

.modale-paiement-dialog h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.modale-paiement-corps {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.modale-paiement-corps p {
  margin: 0;
  line-height: 1.55;
}

.modale-paiement-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.modale-panier {
  position: fixed;
  inset: 0;
  z-index: 82;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(4px);
}

.modale-panier-dialog {
  display: grid;
  width: min(100%, 980px);
  max-height: min(760px, calc(100vh - 36px));
  overflow: hidden;
  border: 1px solid var(--bordure);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.3);
}

.modale-panier-dialog header,
.modale-panier-dialog footer {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--bordure);
  background: var(--surface);
}

.modale-panier-dialog header h2 {
  margin: 0;
  color: var(--accent);
  font-size: 20px;
}

.modale-panier-dialog footer {
  justify-content: flex-end;
  border-top: 1px solid var(--bordure);
  border-bottom: 0;
  background: var(--surface-alt);
}

.modale-panier-corps {
  overflow: auto;
  padding: 18px 20px;
}

.detail-panier-serveur {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--bordure);
}

.detail-panier-serveur h3 {
  margin: 0;
  color: var(--texte);
  font-size: 16px;
}

.detail-panier-serveur-entete {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.detail-panier-serveur-entete span {
  color: var(--muted);
  font-size: 13px;
}

.ligne-detail-serveur {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--bordure);
  border-radius: 8px;
  background: var(--surface-alt);
}

.ligne-detail-serveur div {
  display: grid;
  gap: 4px;
}

.ligne-detail-serveur span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.ligne-detail-serveur strong {
  color: var(--texte);
}

.modale-erreur-panier {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15, 23, 42, 0.44);
  backdrop-filter: blur(5px);
}

.modale-erreur-panier-dialog {
  width: min(100%, 560px);
  overflow: hidden;
  border: 1px solid rgba(196, 12, 22, 0.25);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.32);
}

.modale-erreur-panier-entete {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 16px 20px;
  background: var(--color-primary);
  color: #fff;
}

.icone-erreur-panier {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 900;
}

.modale-erreur-panier h2 {
  flex: 1 1 auto;
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.bouton-fermer-erreur {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 20px;
}

.modale-erreur-panier-corps {
  display: grid;
  gap: 20px;
  padding: 26px;
  background: linear-gradient(135deg, #fff, #f8fafc);
}

.modale-erreur-panier-corps p {
  margin: 0;
  color: var(--texte);
  font-size: 18px;
  line-height: 1.55;
}

.modale-erreur-panier-corps hr {
  width: 100%;
  margin: 0;
  border: 0;
  border-top: 1px solid var(--bordure);
}

.modale-erreur-panier-actions {
  display: flex;
  justify-content: flex-end;
}

.paiement-detecte {
  display: grid;
  gap: 2px;
  align-items: start;
  margin: 10px 0;
  border-color: #bfd8ff;
  border-radius: 14px;
  background: #f0f6ff;
}

.paiement-detecte span {
  color: var(--texte-doux);
  font-size: 13px;
  font-weight: 600;
}

.bloc-validation-gratuite {
  display: grid;
  gap: 10px;
  margin: 12px 0;
  padding: 14px;
  border: 1px solid #bfe3c8;
  border-radius: 14px;
  background: #f0fbf3;
}

.bloc-validation-gratuite > strong {
  color: #166534;
}

.bloc-validation-gratuite > span {
  color: var(--texte-doux);
  font-size: 14px;
}

.bloc-verification-email {
  display: grid;
  gap: 10px;
  margin: 2px 0 8px;
  padding: 14px;
  border: 1px solid #bfd8ff;
  border-radius: 14px;
  background: #f0f6ff;
}

.bloc-verification-email > strong {
  color: #1d4ed8;
}

.bloc-verification-email > span {
  color: var(--texte-doux);
  font-size: 14px;
}

.champ-ville-suggestions {
  position: relative;
}

.aide-ville {
  display: block;
  margin-top: 6px;
  color: var(--texte-doux);
  font-size: 12px;
}

.liste-villes {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 12;
  display: grid;
  max-height: 180px;
  overflow: auto;
  margin-top: 6px;
  border: 1px solid var(--bordure);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.liste-villes button {
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-bottom: 1px solid var(--bordure);
  background: #fff;
  color: var(--texte);
  font-size: 14px;
  text-align: left;
}

.liste-villes button:last-child {
  border-bottom: 0;
}

.liste-villes button:hover {
  background: #fff1ef;
  color: var(--accent);
}

.actions-panier {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  padding: 14px;
}

.compteur-panier {
  margin: 8px 0 0;
  color: var(--accent);
  font-size: 34px;
  font-weight: 800;
}

.formulaire {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.formulaire .large {
  grid-column: 1 / -1;
}

.bloc-promo {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  background: var(--surface-alt);
}

.bloc-promo label {
  color: var(--texte-doux);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ligne-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.ligne-promo input {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
}

.alerte {
  padding: 12px;
  border: 1px solid var(--couleur-alerte);
  border-radius: var(--rayon);
  background: color-mix(in srgb, var(--couleur-alerte) 10%, white);
  color: var(--couleur-alerte);
  line-height: 1.45;
}

.confirmation {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--couleur-succes);
  border-radius: var(--rayon);
  background: color-mix(in srgb, var(--couleur-succes) 10%, white);
  color: var(--couleur-succes);
  line-height: 1.45;
}

.etat-vide,
.chargement {
  padding: 26px;
  border: 1px dashed var(--bordure);
  border-radius: var(--rayon);
  background: var(--surface);
  color: var(--texte-doux);
  text-align: center;
}

.etat-public {
  max-width: 760px;
  margin: 42px auto;
  padding: 34px;
  border: 1px solid var(--bordure);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.etat-public h1 {
  margin: 0 0 10px;
  color: var(--texte);
  font-size: 30px;
}

.etat-public p {
  margin: 0 0 22px;
  color: var(--texte-doux);
}

.site-bloque {
  display: grid;
  min-height: calc(100vh - 170px);
  place-items: center;
  padding: 34px 16px;
  background: linear-gradient(180deg, #f1f5f9 0%, #fff 50%, #e2e8f0 100%);
}

.panneau-site-bloque {
  width: min(760px, 100%);
  overflow: hidden;
  border: 1px solid var(--bordure);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.14);
}

.liseret-site-bloque {
  height: 6px;
  background: linear-gradient(90deg, var(--color-primary), var(--accent-fonce), var(--color-secondary));
}

.contenu-site-bloque {
  display: grid;
  gap: 26px;
  padding: 34px;
}

.entete-site-bloque {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icone-site-bloque {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--color-primary);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.message-site-bloque {
  color: #475569;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}

.message-site-bloque p,
.message-site-bloque div {
  margin: 0 0 10px;
}

.etat-panier-expire {
  border-color: #f0cf89;
  background: #fffaf0;
}

.icone-expiration {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #fee2e2;
  color: #b91c1c;
  font-size: 42px;
  font-weight: 900;
}

.retour-paiement {
  max-width: 780px;
  margin: 28px auto;
  text-align: center;
}

.retour-paiement-laravel {
  display: flex;
  width: auto;
  max-width: none;
  min-height: 100vh;
  margin: 0 -64px -120px;
  padding: 64px 16px 140px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary) 18%, #fff), #fff 48%, color-mix(in srgb, var(--color-secondary) 12%, #fff));
}

.retour-paiement .panneau {
  padding: 30px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.retour-paiement-laravel .panneau {
  width: min(100%, 672px);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.32);
  backdrop-filter: blur(12px);
}

.retour-minimal-laravel .panneau {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.retour-panier-expire {
  padding: 0 16px;
  transform: translateY(104px);
}

.retour-panier-expire .panneau {
  width: min(100%, 576px);
  min-height: 428px;
  padding: 40px;
  border-color: color-mix(in srgb, var(--color-primary) 30%, #fff);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.retour-paiement h1 {
  margin: 0 0 12px;
  color: var(--texte);
  font-size: 30px;
  line-height: 1.15;
}

.icone-retour {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 42px;
  font-weight: 900;
}

.retour-paiement-laravel .icone-retour {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.18), 0 4px 6px -4px rgba(15, 23, 42, 0.18);
}

.retour-succes .icone-retour {
  background: linear-gradient(135deg, #15803d, #65a30d);
}

.retour-refuse .icone-retour,
.retour-attente .icone-retour {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

.retour-annule .icone-retour {
  background: linear-gradient(135deg, #dc2626, #991b1b);
}

.retour-redirection .panneau {
  max-width: 460px;
  margin: 0 auto;
}

.loader-paiement {
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
  border: 4px solid #dbe5f4;
  border-top-color: #2563eb;
  border-radius: 999px;
  animation: rotation-paiement 0.9s linear infinite;
}

@keyframes rotation-paiement {
  to {
    transform: rotate(360deg);
  }
}

.message-retour {
  margin: 0 0 8px;
  color: var(--texte);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.bloc-billets-retour {
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding: 16px;
  border: 1px solid var(--bordure);
  border-radius: 14px;
  background: var(--surface-alt);
  color: var(--texte-doux);
}

.bloc-billets-retour strong {
  color: var(--texte);
}

.liste-fichiers-retour {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.fichier-retour {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--bordure);
  border-radius: 999px;
  background: #fff;
  color: var(--texte);
  font-size: 14px;
  font-weight: 700;
}

.actions-retour {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.retour-paiement-laravel .actions-retour {
  gap: 16px;
}

.retour-paiement-laravel .actions-retour .bouton {
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.16);
}

.page-legale {
  max-width: 860px;
  margin: 0 auto;
}

.page-legale-laravel {
  display: flex;
  width: 100%;
  max-width: none;
  min-height: calc(90vh - 65px);
  justify-content: center;
}

.page-legale-laravel .panneau {
  width: min(100%, 860px);
  min-height: 90vh;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
}

.page-legale-standard-laravel .panneau {
  width: 704px;
  min-height: auto;
  margin-top: 112px;
  padding: 0;
  border: 0;
  background: transparent;
}

.page-legale-vide-laravel {
  min-height: calc(90vh - 120px);
}

.page-legale-espace-laravel {
  width: 32px;
  height: 32px;
}

.page-legale h1 {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.15;
}

.page-legale-laravel h1 {
  margin: 0 0 12px;
  color: var(--texte);
  font-size: 24px;
  line-height: 1.2;
}

.page-legale-standard-laravel h1 {
  margin: 0 0 32px;
  font-size: 36px;
  line-height: 1.1;
}

.page-legale-standard-laravel h2 {
  margin: 0 0 14px;
  color: var(--texte);
  font-size: 24px;
  line-height: 1.35;
}

.texte-legal {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--texte);
  line-height: 1.65;
}

.texte-legal p {
  margin: 0;
}

.page-legale-laravel .texte-legal {
  gap: 0;
  margin: 0;
}

.page-legale-laravel .texte-legal p + p {
  margin-top: 12px;
}

.page-legale-standard-laravel .texte-legal {
  gap: 0;
  line-height: 1.55;
}

.page-legale-standard-laravel .texte-legal p {
  margin: 0 0 28px;
}

.page-legale-cgu {
  min-height: 764px;
}

.page-legale-mention_legales .texte-legal p {
  margin-bottom: 19px;
}

.page-legale-politique_confidentialite .texte-legal p {
  margin-bottom: 15px;
}

.avis-publics,
.avis-saisie {
  display: grid;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.entete-avis {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
  background: linear-gradient(135deg, #fff, #eef2ff);
}

.entete-avis h1,
.panneau-avis-saisie h1 {
  margin: 0 0 10px;
  color: var(--texte);
  font-size: 34px;
  line-height: 1.12;
}

.score-avis {
  display: grid;
  min-width: 150px;
  justify-items: center;
  padding: 18px;
  border: 1px solid #ddd6fe;
  border-radius: 16px;
  background: #fff;
}

.score-avis strong {
  color: var(--accent);
  font-size: 38px;
  line-height: 1;
}

.score-avis span,
.score-avis small {
  color: var(--texte-doux);
  font-weight: 800;
}

.grille-avis {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.repartition-avis,
.liste-avis,
.panneau-avis-saisie {
  display: grid;
  gap: 10px;
}

.repartition-avis button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--bordure);
  border-radius: 10px;
  background: var(--surface-alt);
  color: var(--texte);
  text-align: left;
}

.repartition-avis button[aria-current="true"] {
  border-color: var(--accent);
  background: #fff1ef;
}

.carte-avis {
  gap: 8px;
}

.carte-avis p {
  margin: 0;
  line-height: 1.55;
}

.carte-avis span {
  color: var(--texte-doux);
  font-size: 13px;
}

.etoiles-avis,
.note-avis button[aria-checked="true"] {
  color: #b11226;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
}

.avis-saisie {
  max-width: 620px;
}

.panneau-avis-saisie {
  padding: 26px;
}

.etiquette-avis,
.libelle-note-avis {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.libelle-note-avis {
  display: block;
  margin-top: 8px;
}

.note-avis {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.note-avis button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--bordure);
  border-radius: 10px;
  background: var(--surface-alt);
  color: var(--texte-doux);
  font-size: 24px;
  font-weight: 900;
}

.note-avis span {
  color: var(--texte-doux);
  font-weight: 800;
}

.compteur-avis {
  display: block;
  margin-top: 6px;
  color: var(--texte-doux);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.lien-avis {
  margin-top: 12px;
}

.pied-page {
  width: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, var(--color-nav-from), var(--color-nav-from) 48%, var(--color-nav-to));
  color: #d1d5db;
}

.pied-page-contenu {
  display: block;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
}

.pied-page-haut {
  display: flex;
  min-height: 202px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}

.pied-page-contact,
.pied-page-droits {
  display: grid;
  align-content: start;
  gap: 14px;
}

.pied-page-marque {
  display: flex;
  min-height: 96px;
  align-items: flex-start;
  gap: 24px;
}

.pied-page-logo {
  width: 80px;
  height: 32px;
  flex: 0 0 80px;
  margin: 32px 0 0 8px;
  object-fit: contain;
}

.pied-page-marque-texte {
  display: block;
  width: 299px;
}

.pied-page-marque strong {
  display: block;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
}

.pied-page-marque span,
.pied-page-contact span,
.pied-page-droits span {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.65;
}

.pied-page-contact strong {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.pied-page-contact {
  width: 246px;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
}

.pied-page-contact button,
.pied-page-contact > span {
  width: calc(100% - 52px);
  margin-left: 52px;
}

.pied-page-contact button,
.pied-page-contact a,
.pied-page-contact span,
.pied-page-contact strong {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
}

.pied-page-contact button {
  text-align: left;
}

@media (min-width: 681px) {
  .pied-page-contact {
    transform: translateX(8px);
  }
}

.pied-page-droits {
  display: block;
  min-height: 65px;
  padding-top: 24px;
  border-top: 1px solid rgba(156, 163, 175, 0.65);
}

.pied-page-droits span {
  display: inline;
  margin-right: 12px;
}

.pied-page button {
  width: max-content;
  max-width: 100%;
  border: 0;
  background: transparent;
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.65;
  text-align: left;
  text-decoration: none;
}

.pied-page .pied-page-contact button {
  width: calc(100% - 52px);
}

.pied-page button:hover {
  color: #fff;
}

.pied-page-liens {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 0;
}

.client-login {
  max-width: 500px;
  margin: 28px auto;
}

.client-login-laravel {
  max-width: none;
  min-height: calc(100vh - 65px);
  margin: 0 -64px -120px;
  padding: 58px 16px 134px;
  background:
    linear-gradient(135deg, rgba(255, 228, 230, 0.48), rgba(255, 255, 255, 0.96) 48%, rgba(254, 243, 199, 0.36));
}

.client-login-shell-laravel {
  width: min(100%, 448px);
  margin: 0 auto;
}

.client-login-entete-laravel {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 80px;
  text-align: center;
}

.client-login-entete-laravel h1 {
  width: 448px;
  max-width: 100%;
  margin: 0;
  color: #1f2937;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
}

.client-login-entete-laravel p {
  max-width: 384px;
  margin: 0;
  color: var(--color-primary);
  font-size: 16px;
  line-height: 1.6;
}

.client-login-laravel .icone-client-laravel {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.18), 0 4px 6px -4px rgba(15, 23, 42, 0.18);
}

.client-login-laravel .icone-client-laravel svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.client-login-laravel .panneau-client-laravel {
  gap: 24px;
  padding: 32px;
  border: 1px solid transparent;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-align: left;
}

.panneau-client-laravel .formulaire-client {
  gap: 20px;
}

.panneau-client-laravel .champ label {
  margin-bottom: 8px;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: none;
}

.panneau-client-laravel .champ input {
  min-height: 58px;
  padding: 16px 16px 16px 48px;
  border-color: #e5e7eb;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  color: #111827;
  font-size: 18px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.panneau-client-laravel .champ input:focus {
  outline: 0;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 20%, transparent);
}

.panneau-client-laravel .formulaire-client .champ {
  position: relative;
}

.panneau-client-laravel .formulaire-client .champ::before {
  content: "@";
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: #9ca3af;
  font-size: 18px;
  font-weight: 800;
}

.panneau-client-laravel .formulaire-client > .bouton {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 18px 28px rgba(15, 23, 42, 0.18);
}

.panneau-client-laravel .formulaire-client > .bouton:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 34px rgba(15, 23, 42, 0.24);
}

.panneau-client-laravel .bloc-code-client {
  padding-top: 22px;
}

.panneau-client-laravel .ligne-code-client {
  grid-template-columns: minmax(0, 1fr);
}

.panneau-client-laravel .ligne-code-client input {
  min-height: 50px;
  border-radius: 14px;
}

.panneau-client-laravel .ligne-code-client .bouton {
  min-height: 50px;
  border-radius: 14px;
}

.panneau-client {
  display: grid;
  gap: 16px;
  padding: 28px;
  text-align: center;
}

.panneau-client h1 {
  margin: 0;
  font-size: 30px;
}

.icone-client {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-nav-from), var(--color-nav-to));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.16);
}

.panneau-client .icone-client {
  justify-self: center;
}

.profil-client {
  max-width: 760px;
}

.grille-profil-client {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.carte-profil-client {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid #ddd6fe;
  border-radius: 18px;
  background: linear-gradient(135deg, #f3e8ff, #eef2ff);
  text-align: left;
}

.carte-profil-client.contact {
  border-color: #bbf7d0;
  background: linear-gradient(135deg, #dcfce7, #e0f2fe);
}

.carte-profil-client span {
  color: var(--texte-doux);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carte-profil-client strong {
  overflow-wrap: anywhere;
}

.formulaire-client,
.bloc-code-client {
  display: grid;
  gap: 12px;
}

.bloc-code-client {
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--bordure);
}

.bloc-code-client.masque {
  display: none;
}

.bloc-code-client h2 {
  margin: 0;
  font-size: 20px;
}

.ligne-code-client {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.ligne-code-client input {
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
}

.historique-paiements {
  display: grid;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.entete-historique {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--bordure);
  border-radius: 14px;
  background: linear-gradient(135deg, #fff, #eef2ff);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.entete-historique h1 {
  margin: 0 0 4px;
  color: var(--texte);
  font-size: 32px;
}

.entete-historique p {
  margin: 0;
  color: var(--texte-doux);
}

.filtres-historique {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid var(--bordure);
  border-radius: 14px;
  background: var(--surface);
}

.stats-historique {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-historique {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--bordure);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.stat-historique span {
  display: block;
  margin-bottom: 8px;
  color: var(--texte-doux);
  font-size: 13px;
  font-weight: 700;
}

.stat-historique strong {
  display: block;
  color: var(--texte);
  font-size: 26px;
  line-height: 1.1;
}

.stat-historique em {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  font-style: normal;
  font-weight: 900;
}

.stat-historique.bleu em {
  background: #dbeafe;
  color: #1d4ed8;
}

.stat-historique.violet em {
  background: #ede9fe;
  color: #7c3aed;
}

.stat-historique.vert em {
  background: #dcfce7;
  color: #15803d;
}

.table-historique {
  display: grid;
  gap: 10px;
}

.ligne-historique,
.panneau-historique-vide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(220px, 0.9fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--bordure);
  border-radius: 14px;
  background: var(--surface);
}

.panneau-historique-vide {
  grid-template-columns: minmax(0, 1fr) auto;
}

.ligne-historique span,
.panneau-historique-vide span {
  display: block;
  margin-top: 4px;
  color: var(--texte-doux);
  font-size: 13px;
}

.fichiers-historique {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.configuration {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mono {
  padding: 10px;
  overflow: auto;
  border-radius: var(--rayon);
  background: #101820;
  color: #d9f5ee;
  font-family: Consolas, monospace;
  font-size: 12px;
}

.masque {
  display: none !important;
}

/* Habillage public compatible Laravel WEB3. */
:root {
  --bg-page: #f8fafc;
  --color-primary: #e11d48;
  --color-secondary: #881337;
  --color-nav-from: #e11d48;
  --color-nav-to: #881337;
  --accent: var(--color-primary);
  --accent-fonce: #be123c;
  --secondaire: var(--color-secondary);
  --bordure: #e5e7eb;
  --ombre: 0 10px 25px rgba(26, 25, 25, 0.5);
  --rayon: 0.75rem;
}

html {
  background: #f8fafc;
}

body {
  color: #000;
  background: #f8fafc;
}

.entete {
  z-index: 999;
  min-height: 65px;
  border-bottom: 1px solid rgba(239, 68, 68, 0.2);
  background: linear-gradient(to right, var(--color-nav-from), var(--color-nav-to));
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  backdrop-filter: none;
}

.barre {
  display: grid;
  grid-template-columns: 413px auto 1fr 40px 40px 123px auto;
  align-items: center;
  min-height: 64px;
  max-width: none;
  gap: 16px;
  justify-content: start;
  padding: 4px 32px;
}

.marque {
  display: flex;
  gap: 24px;
  align-items: center;
  max-width: none;
}

.marque span {
  display: none;
}

.logo {
  display: block;
  width: 141px;
  height: 56px;
  object-fit: contain;
}

.marque strong {
  display: flex;
  width: 180px;
  min-height: 40px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
}

.navigation {
  flex: 0 1 auto;
  gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.navigation button,
.bouton-theme-nav,
.bouton-panier-nav,
.navigation-client {
  min-height: 40px;
  height: 40px;
  padding: 8px 16px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.navigation button:hover,
.navigation button[aria-current="page"],
.bouton-theme-nav:hover,
.bouton-panier-nav:hover,
.navigation-client:hover,
.navigation-client[aria-current="page"] {
  color: #fff;
}

.navigation button {
  position: relative;
}

.navigation button[aria-current="page"] {
  background: transparent;
  font-weight: 600;
}

.navigation button[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 25%;
  bottom: 0;
  left: 25%;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.bouton-theme-nav,
.bouton-panier-nav {
  position: relative;
  width: 40px;
  min-width: 40px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.bouton-theme-nav {
  grid-column: 4;
}

.bouton-panier-nav {
  grid-column: 5;
}

.navigation-client {
  grid-column: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
}

.icone-nav {
  display: block;
  width: 20px;
  height: 20px;
}

.pastille-panier-nav {
  position: absolute;
  top: -8px;
  right: -8px;
  display: inline-flex;
  min-width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.bouton-menu-mobile {
  display: none;
}

.contenu {
  max-width: var(--largeur-contenu);
  padding: 0 64px 120px;
}

.contenu-billetterie-laravel {
  background: #fbeef5;
}

.bandeau-laravel {
  display: grid;
  min-height: 242px;
  margin: 0 -64px 81px;
  place-items: center;
  border-radius: 0;
  background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.34)),
    linear-gradient(135deg, #111827, #374151);
  background-position: center 42%;
  background-size: cover;
  box-shadow: none;
  font-family: Figtree, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  text-align: center;
}

.bandeau-laravel > div {
  display: grid;
  gap: 8px;
  justify-items: center;
  transform: translateY(-12px);
}

.bandeau-surtitre {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 20px;
  text-transform: uppercase;
  transform: none;
  transform-origin: center;
}

.bandeau-laravel h1 {
  margin: 0;
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  transform: none;
  transform-origin: center;
}

.bandeau-laravel p:not(.bandeau-surtitre) {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 20px;
  transform: none;
}

.web-legacy-laravel {
  position: relative;
  min-height: 720px;
  margin: 0 -64px -120px;
  background: #f8fafc;
}

.web-legacy-bouton {
  position: absolute;
  top: 40px;
  left: 790px;
  width: 363px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--color-primary), #dc2626);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.14);
}

.accueil-public-laravel {
  display: block;
  width: calc(100vw - 15px);
  margin: 0 calc(50% - 50vw + 7.5px) -120px;
  background: #fbeef5;
  font-family: Figtree, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.accueil-public-laravel .accueil-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: calc(100vh - 63px);
  padding: 0 95px;
  background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.28)),
    linear-gradient(135deg, #111827, #374151);
  background-position: center;
  background-size: cover;
}

.accueil-public-laravel .accueil-hero.avec-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4), transparent);
}

.accueil-public-laravel .accueil-hero-contenu {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 1253px;
  margin: 0 auto;
  gap: 0;
  padding: 96px 32px;
  transform: none;
}

.accueil-public-laravel .accueil-hero h1 {
  width: 100%;
  color: var(--color-primary);
  font-size: 60.192px;
  font-weight: 800;
  line-height: 75.24px;
  margin: 0 0 24px;
  overflow-wrap: anywhere;
  white-space: normal;
}

.accueil-public-laravel .accueil-hero p {
  width: min(896px, 100%);
  max-width: 100%;
  margin: 0 auto;
  color: #fff;
  font-size: 28.424px;
  font-weight: 600;
  line-height: 38.0882px;
}

.accueil-public-laravel .actions-accueil {
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

.accueil-public-laravel .actions-accueil .bouton,
.accueil-public-laravel .actions-accueil .bouton-secondaire {
  min-height: 48px;
  padding: 0 32px;
  border-radius: var(--rayon-bouton, 999px);
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
}

.accueil-public-laravel .actions-accueil .bouton {
  width: 168px;
  height: 48px;
  background: #fff;
  color: var(--color-primary);
}

.accueil-public-laravel .actions-accueil .bouton-secondaire {
  width: 190px;
  min-height: 52px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.accueil-public-laravel .spectacles-vedette {
  gap: 0;
  padding: 20px 0 24px;
  background: #fbeef5;
}

.accueil-public-laravel .entete-section-accueil {
  width: min(896px, calc(100% - 32px));
  max-width: 100%;
}

.accueil-public-laravel .entete-section-accueil span {
  display: block;
  width: 210px;
  color: #6b7280;
  font-size: 13px;
  letter-spacing: 0.18em;
}

.accueil-public-laravel .entete-section-accueil h2 {
  margin-top: 20px;
  width: 100%;
  overflow-wrap: anywhere;
  color: var(--color-primary);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.08;
}

.accueil-public-laravel .entete-section-accueil p {
  width: min(672px, 100%);
  margin-top: 14px;
  color: #4b5563;
  font-size: 20px;
  line-height: 1.6;
}

.accueil-public-laravel .accueil-rail {
  grid-template-columns: repeat(2, 290px);
  gap: 24px;
  width: 604px;
  max-width: none;
  margin: 64px auto 0;
}

.accueil-public-laravel .carte-vedette {
  width: 290px;
  border: 0;
  border-radius: var(--rayon, 16px);
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.accueil-public-laravel .carte-vedette .affiche {
  width: 290px;
  height: 430px;
  padding: 0;
  border: 0;
  background: #fff;
}

.accueil-public-laravel .carte-vedette .affiche img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.accueil-public-laravel .carte-vedette-corps {
  display: flex;
  min-height: 322px;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 12px;
  background: #fff;
}

.accueil-public-laravel .carte-vedette-corps h3 {
  width: 266px;
  min-height: 56px;
  margin: 0 0 4px;
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.accueil-public-laravel .carte-vedette-corps .meta {
  margin: 0 0 8px;
}

.accueil-public-laravel .carte-vedette-corps h3 + .description {
  margin-top: 34px;
}

.accueil-public-laravel .carte-vedette-corps .description {
  width: 100%;
  height: 68px;
  min-height: 68px;
  margin: 0 0 10px;
  overflow: hidden;
  font-size: 14px;
  line-height: 20px;
}

.accueil-public-laravel .dates-vedette {
  min-height: 80px;
  margin-top: 0;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.accueil-public-laravel .carte-vedette-corps .bouton {
  display: block;
  width: 104px;
  height: 36px;
  min-height: 36px;
  margin-top: 8px;
  border: 0;
  padding: 6px 20px;
  border-radius: 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.accueil-public-laravel .carte-vedette .rubans-familles {
  top: -32px;
  right: auto;
  left: -51px;
  display: block;
  width: 209px;
  height: 132px;
  max-width: none;
  overflow: hidden;
  transform: none;
}

.accueil-public-laravel .carte-vedette .rubans-familles span {
  position: absolute;
  top: 56px;
  display: block;
  width: 100%;
  max-width: none;
  padding: 4px 8px;
  border-radius: 0;
  background: var(--color-primary);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
  font-size: 8px;
  line-height: 12px;
  text-align: center;
  transform: rotate(-35deg);
}

.accueil-public-laravel .actions-section-accueil {
  width: 100%;
  margin-top: 49px;
}

.accueil-public-laravel .actions-section-accueil .bouton {
  width: 216px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: var(--rayon-bouton, 6px);
}

@media (max-width: 680px) {
  .accueil-public-laravel .spectacles-vedette {
    grid-template-columns: minmax(0, 1fr);
  }

  .accueil-public-laravel .entete-section-accueil {
    width: calc(100% - 32px);
    min-width: 0;
  }

  .accueil-public-laravel .entete-section-accueil span,
  .accueil-public-laravel .entete-section-accueil h2,
  .accueil-public-laravel .entete-section-accueil p {
    max-width: 100%;
  }

  .accueil-public-laravel .accueil-rail {
    width: min(290px, calc(100% - 32px));
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .accueil-public-laravel .carte-vedette,
  .accueil-public-laravel .carte-vedette .affiche,
  .accueil-public-laravel .carte-vedette-corps h3 {
    width: 100%;
  }

  .accueil-public-laravel .actions-section-accueil {
    min-width: 0;
  }

  .accueil-public-laravel .actions-section-accueil .bouton {
    max-width: calc(100% - 32px);
  }
}

.filtre-types {
  display: flex;
  width: min(100%, 576px);
  max-width: none;
  margin: 0 0 10px 141px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.filtre-types button {
  flex: 1 1 0;
  min-width: 0;
  min-height: 36px;
  padding: 8px 12px;
  border-right: 1px solid #e2e8f0;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
}

.filtre-types button:first-child {
  flex: 0.8 1 0;
  border-radius: 12px 0 0 12px;
}

.filtre-types button:last-child {
  border-radius: 0 12px 12px 0;
}

.filtre-types button[aria-current="page"] {
  background: var(--color-primary);
  color: #fff;
}

.filtre-types strong {
  display: inline-flex;
  min-width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  padding: 0 6px;
  border-radius: 999px;
  background: #f472b6;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
}

.filtre-types .bouton-categories-legacy strong {
  min-width: 0;
  height: auto;
  margin-left: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #64748b;
  font-size: 12px;
  line-height: 1;
}

.filtres-laravel-legacy {
  width: min(100%, 576px);
  min-height: 322px;
  margin: 0 0 15px 141px;
  color: #334155;
}

.ligne-filtres-legacy {
  display: flex;
  width: 576px;
  margin: 0 0 18px;
}

.ligne-filtres-legacy button {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: stretch;
  gap: 8px;
  height: 36px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #e2e8f0;
  border-radius: 0;
  background: #fff;
  color: #334155;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.ligne-filtres-legacy button:first-child {
  display: flex;
  border-radius: 12px 0 0 12px;
}

.ligne-filtres-legacy button:last-child {
  border-left: 0;
  border-radius: 0 12px 12px 0;
}

.ligne-filtres-legacy button span,
.ligne-filtres-legacy button strong {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.ligne-filtres-legacy button strong {
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
}

.ligne-filtres-legacy button em {
  margin-left: auto;
  color: #64748b;
  font-style: normal;
}

.calendrier-legacy {
  display: grid;
  width: 576px;
  box-sizing: border-box;
  gap: 8px;
  padding: 14px 12px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fbff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.calendrier-legacy-entete {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto auto;
  gap: 8px;
  align-items: center;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.calendrier-legacy-entete span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.calendrier-legacy-entete span i {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: inset 0 0 0 6px var(--color-primary);
}

.calendrier-legacy-entete strong {
  min-height: 28px;
  padding: 4px 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--color-primary), #9f1239);
  color: #fff;
  line-height: 20px;
  text-transform: capitalize;
}

.calendrier-legacy-entete button {
  min-height: 28px;
  padding: 0 8px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.calendrier-legacy-entete button[data-sens] {
  position: relative;
  z-index: 1;
  width: 24px;
  min-width: 24px;
  min-height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), #9f1239);
  color: #fff;
  line-height: 24px;
}

.calendrier-legacy-entete button[data-sens="-1"] {
  margin-right: -20px;
}

.calendrier-legacy-entete button[data-sens="1"] {
  margin-left: -20px;
}

.calendrier-legacy-entete button:last-child {
  width: 84px;
  padding: 0 10px;
}

.calendrier-legacy-semaines,
.calendrier-legacy-jours {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px 14px;
}

.calendrier-legacy-semaines span {
  color: #64748b;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.calendrier-legacy-jours button {
  position: relative;
  min-width: 0;
  height: 28px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #fff;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
}

.calendrier-legacy-jours button.hors-mois {
  border-color: transparent;
  background: transparent;
  color: #94a3b8;
}

.calendrier-legacy-jours button[aria-current="date"] {
  border-color: transparent;
  background: linear-gradient(90deg, var(--color-primary), #9f1239);
  color: #fff;
  box-shadow: 0 8px 12px rgba(225, 29, 72, 0.22);
}

.calendrier-legacy-jours button i {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
}

.calendrier-legacy-jours button[aria-current="date"] i {
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: transparent;
}

.filtres {
  display: none;
}

.grille {
  grid-template-columns: repeat(3, minmax(0, 243px));
  gap: 32px;
  max-width: 793px;
  margin: 15px 0 95px;
}

.carte-spectacle {
  display: flex;
  flex-direction: column;
  min-height: 513px;
  max-height: none;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(26, 25, 25, 0.5);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.carte-spectacle:hover {
  box-shadow: 0 25px 50px -12px rgba(26, 25, 25, 0.55);
  transform: translateY(-1px);
}

.carte-spectacle.sans-affiche {
  min-height: 544px;
}

.carte-spectacle .affiche {
  flex: 0 0 auto;
  width: 100%;
  padding: 0;
  aspect-ratio: 159 / 239;
  background: #f1f5f9;
}

.carte-spectacle .affiche img {
  object-fit: cover;
}

.carte-corps {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  min-height: 0;
  padding: 0 0 13px;
  text-align: center;
}

.categorie-spectacle {
  min-height: 20px;
  margin: 10px 0 0;
  padding: 0 12px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.carte-spectacle h2 {
  margin: 8px 0 4px;
  padding: 0 12px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.dates-carte {
  margin: 0;
  padding: 0 12px;
  color: #4b5563;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.38;
}

.avis-carte {
  margin: 8px 0 0;
  padding: 0 12px;
  color: #4b5563;
  font-size: 12px;
  font-weight: 600;
}

.actions-carte {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding: 10px 12px 0;
}

.actions-carte .bouton {
  display: block;
  width: 96px;
  min-width: 96px;
  height: 36px;
  min-height: 36px;
  padding: 8px 0;
  border-radius: 6px;
  line-height: 20px;
}

@media (min-width: 681px) and (max-width: 1160px) {
  .filtre-types {
    margin-left: 68px;
  }

  .filtres-laravel-legacy {
    margin-left: 103px;
  }

  .ligne-filtres-legacy {
    margin-left: 0;
  }

  .grille {
    grid-template-columns: repeat(3, minmax(0, 216px));
    max-width: 712px;
    margin-bottom: 125px;
  }

  .carte-spectacle,
  .carte-spectacle.sans-affiche {
    min-height: 472px;
  }

  .actions-carte .bouton {
    width: 96px;
    min-width: 96px;
    height: 36px;
    min-height: 36px;
    padding: 8px 0;
    line-height: 20px;
  }
}

.bouton {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.bouton:hover {
  background: var(--accent-fonce);
}

.panier-raccourci {
  position: fixed;
  right: 9px;
  top: 47.5%;
  z-index: 50;
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 229px;
  min-height: 56px;
  padding: 12px;
  border: 4px solid var(--color-primary);
  border-radius: 6px;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-50%);
  white-space: nowrap;
}

.panier-raccourci strong {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--color-primary);
  font-size: 13px;
}

.panier-flottant {
  right: 24px;
  top: 50%;
  bottom: auto;
  width: min(320px, calc(100vw - 48px));
  max-height: 80vh;
  overflow-y: auto;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 10px 15px rgba(156, 163, 175, 0.9);
  transform: translateY(-50%);
}

.panier-flottant .panier-tete:first-child {
  background: transparent;
}

.panier-timer-laravel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #2563eb;
  border-radius: 3px;
  background: #bfdbfe;
  color: #4b5563;
  text-align: center;
}

.panier-timer-laravel p {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
}

.panier-timer-laravel strong {
  font-weight: 700;
}

.panier-reduire-laravel {
  display: inline-flex;
  width: 100%;
  min-height: 32px;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border: 2px solid var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  text-align: left;
}

.panier-flottant .panier-tete {
  min-height: 56px;
  padding: 8px 24px;
  color: #4b5563;
}

.panier-flottant .panier-tete strong {
  font-size: 20px;
  font-weight: 500;
}

.bouton-vider-laravel {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 700;
}

.panier-flottant .panier-corps {
  min-height: 86px;
  padding: 24px;
}

.panier-flottant .total {
  margin: 0 24px;
  padding: 16px 0 0;
  border-top: 1px solid #e5e7eb;
  color: #4b5563;
  font-size: 20px;
  font-weight: 500;
}

.actions-validation-panier-laravel {
  padding: 16px 24px 24px;
}

.actions-validation-panier-laravel .bouton {
  width: 100%;
  min-height: 48px;
  border-radius: 6px;
  font-weight: 800;
}

.contenu-detail-laravel {
  padding-top: 40px;
  padding-right: 0;
  padding-left: 0;
}

.detail-laravel {
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  max-width: none;
  margin: 40px 24rem 56px 0;
  padding: 0 32px;
}

.detail-affiche-laravel,
.detail-achat-laravel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.preview-affiche-laravel {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  background: #fff;
}

.preview-affiche-laravel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
  pointer-events: none;
}

.preview-affiche-laravel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.preview-affiche-laravel > span {
  display: none;
}

.retour-affiche-laravel {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.18);
}

.titre-affiche-detail {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.titre-affiche-detail h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

.titre-affiche-detail p {
  margin: 8px 0 0;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.meta-detail-laravel {
  margin: 16px 0 12px;
}

.description-detail-laravel {
  margin-top: 8px;
  padding: 20px;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.description-detail-laravel .description {
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.5;
}

.detail-achat-laravel {
  padding: 24px 0 0;
}

.detail-achat-laravel .entete-detail h2,
.detail-achat-laravel > h2 {
  color: #1f2937;
  font-size: 22px;
  font-weight: 800;
}

.detail-achat-laravel .segmente,
.detail-achat-laravel .filtres-dates {
  background: #fff;
}

.detail-achat-laravel .infos-salle-detail {
  display: none;
}

.detail-achat-laravel .detail-calendrier,
.detail-achat-laravel .liste-representations {
  gap: 10px;
}

.detail-achat-laravel .jour-detail {
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.detail-achat-laravel .carte-representation,
.detail-achat-laravel .ligne-representation {
  border-color: #e5e7eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.detail-achat-laravel .carte-representation.active {
  border-color: #c7d2fe;
  color: var(--color-primary);
}

.detail-laravel-compact {
  position: relative;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 24px;
  max-width: none;
  min-height: 796px;
  margin: 0 24px;
  padding: 0;
}

.detail-laravel-colonne {
  min-width: 0;
}

.detail-affiche-compact {
  position: relative;
  height: 510px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  background: #fff;
}

.detail-affiche-compact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
  pointer-events: none;
}

.detail-affiche-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.titre-affiche-detail-compact {
  bottom: 35px;
}

.detail-laravel-principale h2 {
  margin: 0 0 10px;
  color: #1f2937;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}

.detail-laravel-principale {
  padding-top: 8px;
}

.detail-laravel-principale > h2,
.detail-laravel-principale > .description,
.meta-detail-compact,
.detail-laravel-principale .avis-detail-laravel {
  display: none;
}

.meta-detail-compact {
  margin: 0 0 12px;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
}

.avis-detail-laravel {
  margin: 12px 0 20px;
  color: #374151;
  font-size: 13px;
}

.avis-detail-laravel p {
  margin: 4px 0;
}

.avis-detail-laravel strong,
.avis-detail-laravel span {
  color: #111827;
}

.titre-avis-detail {
  color: #6b7280;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.avis-detail-laravel a {
  display: inline-block;
  margin-top: 4px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
}

.calendrier-detail-laravel {
  width: min(100%, 576px);
  margin: 0 auto 18px;
}

.calendrier-detail-laravel > strong {
  display: block;
  margin: 0 0 10px;
  color: #1f2937;
  font-size: 15px;
  text-transform: capitalize;
}

.calendrier-detail-semaines,
.calendrier-detail-jours {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendrier-detail-semaines span {
  color: #6b7280;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.calendrier-detail-jours button {
  height: 28px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #374151;
  font-size: 13px;
  font-weight: 700;
}

.calendrier-detail-jours button:not(:disabled) {
  background: #f3f4f6;
  color: var(--color-primary);
}

.calendrier-detail-jours button.hors-mois {
  color: #9ca3af;
}

.selection-date-detail {
  margin: 12px 0 24px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
}

.detail-laravel-principale .description {
  max-width: 620px;
  color: #374151;
  font-size: 14px;
  line-height: 1.55;
}

.detail-laravel-achat {
  position: absolute;
  right: 74px;
  top: 500px;
  width: 320px;
  padding-top: 0;
}

.plus-places-detail {
  color: #374151;
  font-size: 22px;
  font-weight: 800;
}

.detail-description-bas {
  grid-column: 1 / -1;
  margin-top: 72px;
  padding: 20px;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  background: #fff;
}

.detail-description-bas .description {
  margin: 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.55;
}

.interdit-laravel {
  display: flex;
  min-height: 720px;
  margin: 0 -64px -120px;
  padding: 0 16px 120px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(85px);
}

.interdit-laravel h1 {
  margin: 0 0 8px;
  color: #ef4444;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
}

.interdit-laravel strong {
  color: #111827;
  font-size: 24px;
}

.interdit-laravel p {
  margin: 10px 0 18px;
  color: #4b5563;
}

.contenu-sans-chrome {
  min-height: 0;
  padding: 0;
}

.contenu-sans-chrome .avis-saisie {
  margin: 0;
  padding-top: 80px;
  display: flex;
  justify-content: center;
  max-width: none;
}

.contenu-sans-chrome .panneau-avis-saisie {
  position: relative;
  width: 606px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.logo-avis-standalone {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 0 73px 21px;
  object-fit: contain;
}

.panneau-avis-saisie .etiquette-avis {
  display: none;
}

.panneau-avis-saisie .meta-avis-standalone {
  position: absolute;
  top: 10px;
  left: 109px;
  display: grid;
  width: 214px;
  justify-items: start;
  text-align: left;
}

.panneau-avis-saisie .meta-avis-standalone strong {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panneau-avis-saisie .meta-avis-standalone span {
  color: var(--texte);
  font-size: 16px;
  font-weight: 700;
}

.contenu-sans-chrome .panneau-avis-saisie .description {
  width: 448px;
  max-width: 100%;
  line-height: 1.5;
}

.contenu-sans-chrome .panneau-avis-saisie h1 {
  margin-bottom: -12px;
}

.contenu-sans-chrome .note-avis button {
  width: 36px;
  height: 45px;
  border: 0;
  background: transparent;
}

.contenu-sans-chrome .note-avis span {
  display: none;
}

.contenu-sans-chrome .panneau-avis-saisie textarea {
  height: 106px;
  min-height: 106px;
}

.contenu-sans-chrome .panneau-avis-saisie .bouton {
  min-height: 60px;
  margin-top: -4px;
}

.meta-avis-standalone {
  display: grid;
  gap: 2px;
  justify-items: center;
}

@media (max-width: 980px) {
  .barre,
  .bandeau,
  .detail,
  .tunnel {
    grid-template-columns: 1fr;
  }

  .checkout-retour-laravel,
  .checkout-laravel {
    width: 100%;
  }

  .checkout-retour-laravel {
    margin: 14px auto 10px;
  }

  .checkout-laravel {
    padding: 18px;
    gap: 20px;
  }

  .navigation {
    flex-wrap: wrap;
    justify-content: stretch;
    overflow: visible;
  }

  .navigation button {
    flex: 1 1 120px;
  }

  .detail-liste {
    grid-template-columns: 1fr;
  }

  .filtres,
  .grille,
  .accueil-rail,
  .grille-avis,
  .filtres-historique,
  .stats-historique,
  .configuration {
    grid-template-columns: 1fr 1fr;
  }

  .ligne-historique {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .fichiers-historique {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .pied-page-haut {
    min-height: auto;
    flex-direction: column;
    gap: 34px;
  }
}

@media (max-width: 680px) {
  .barre {
    padding: 10px;
  }

  .contenu {
    padding: 8px 10px 150px;
  }

  .pied-page {
    padding: 0;
  }

  .pied-page-contenu {
    padding: 46px 28px 40px;
  }

  .pied-page-haut {
    gap: 71px;
  }

  .pied-page-marque {
    width: 100%;
  }

  .pied-page-marque-texte {
    width: calc(100% - 104px);
  }

  .pied-page-contact {
    width: 100%;
  }

  .pied-page-logo {
    margin-left: 4px;
  }

  .bandeau {
    padding: 18px;
  }

  .filtres,
  .grille,
  .accueil-rail,
  .calendrier,
  .formulaire,
  .checkout-laravel .formulaire,
  .infos-salle-detail,
  .grille-avis,
  .filtres-historique,
  .stats-historique,
  .configuration {
    grid-template-columns: 1fr;
  }

  .accueil-public {
    margin-right: -10px;
    margin-left: -10px;
  }

  .checkout-retour-laravel {
    padding: 0 2px;
  }

  .checkout-retour-bouton-laravel {
    width: 100%;
    justify-content: center;
  }

  .checkout-laravel {
    padding: 16px;
    border-radius: 12px;
  }

  .checkout-laravel .bloc-verification-email .ligne-code-client,
  .checkout-laravel .bloc-validation-gratuite .ligne-code-client,
  .checkout-laravel .ligne-promo {
    grid-template-columns: 1fr;
  }

  .client-login-laravel {
    margin: -14px -10px -150px;
    padding: 36px 14px 150px;
  }

  .retour-paiement-laravel {
    margin: -14px -10px -150px;
    padding: 42px 14px 150px;
    align-items: flex-start;
  }

  .retour-paiement-laravel .panneau {
    padding: 24px;
  }

  .page-legale-laravel {
    margin: -14px 0 0;
    min-height: calc(90vh - 40px);
  }

  .page-legale-laravel .panneau {
    min-height: calc(90vh - 40px);
    padding: 20px;
  }

  .client-login-entete-laravel {
    margin-bottom: 32px;
  }

  .panneau-client-laravel {
    padding: 24px;
  }

  .accueil-hero {
    min-height: 560px;
    padding: 74px 18px 88px;
  }

  .actions-accueil {
    display: grid;
    width: min(100%, 320px);
  }

  .fil-ariane-public ol {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
  }

  .fil-ariane-public .libelle-long,
  .fil-ariane-public .separateur.secondaire,
  .fil-ariane-public .courant.secondaire {
    display: none;
  }

  .fil-ariane-public .libelle-court {
    display: inline;
  }

  .entete-avis {
    display: grid;
  }

  .contenu-sans-chrome .avis-saisie {
    padding-top: 215px;
  }

  .contenu-sans-chrome {
    padding: 0;
  }

  .contenu-sans-chrome .panneau-avis-saisie {
    width: calc(100vw - 34px);
    padding: 0;
  }

  .logo-avis-standalone {
    width: 44px;
    height: 44px;
    margin: 0 0 50px 15px;
  }

  .panneau-avis-saisie .meta-avis-standalone {
    top: 2px;
    left: 77px;
    width: 187px;
  }

  .panneau-avis-saisie .meta-avis-standalone strong {
    font-size: 10px;
  }

  .panneau-avis-saisie .meta-avis-standalone span {
    font-size: 14px;
  }

  .panneau-avis-saisie h1 {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 16px;
    white-space: nowrap;
  }

  .contenu-sans-chrome .panneau-avis-saisie .description {
    display: none;
  }

  .contenu-sans-chrome .libelle-note-avis {
    margin-top: 19px;
  }

  .contenu-sans-chrome .note-avis {
    gap: 4px;
    margin-top: 3px;
  }

  .contenu-sans-chrome .note-avis button {
    flex: 1 1 0;
    width: auto;
    height: 41px;
  }

  .contenu-sans-chrome .panneau-avis-saisie .champ.pleine {
    margin-top: 24px;
  }

  .contenu-sans-chrome .panneau-avis-saisie textarea {
    height: 86px;
    min-height: 86px;
  }

  .contenu-sans-chrome .panneau-avis-saisie .bouton {
    min-height: 52px;
    margin-top: -13px;
  }

  .score-avis {
    justify-items: start;
  }

  .entete-historique,
  .ligne-historique,
  .panneau-historique-vide,
  .grille-profil-client {
    grid-template-columns: 1fr;
  }

  .entete-historique {
    display: grid;
    text-align: center;
  }

  .entete-historique .icone-client {
    justify-self: center;
  }

  .ligne-code-client {
    grid-template-columns: 1fr;
  }

  .ligne-promo {
    grid-template-columns: 1fr;
  }

  .entete-panier-page {
    display: grid;
  }

  .badge-expiration {
    justify-content: center;
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .segmente,
  .filtres-dates {
    width: 100%;
  }

  .segmente button,
  .filtres-dates button {
    flex: 1;
    padding: 0 8px;
  }

  .ligne-representation {
    grid-template-columns: 1fr;
  }

  .actions-tarif-detail {
    justify-content: space-between;
  }

  .jour {
    min-height: auto;
  }

  .panier-flottant {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    max-width: none;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    transform: none;
  }

  .barre {
    display: flex;
    min-height: 64px;
    gap: 10px;
    align-items: center;
    padding: 0 12px;
  }

  .marque {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .logo {
    width: 80px;
    height: 48px;
  }

  .navigation,
  .navigation-client {
    display: none;
  }

  .bouton-panier-nav {
    flex: 0 0 40px;
  }

  .bouton-menu-mobile {
    display: inline-flex;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    min-height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #fff;
  }

  .bouton-menu-mobile span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
  }

  .bandeau-laravel {
    display: none;
  }

  .bandeau-laravel h1 {
    font-size: 34px;
  }

  .filtre-types {
    width: calc(100% - 4px);
    min-height: 33px;
    margin: 0 0 10px;
    margin-left: 2px;
  }

  .filtre-types button {
    min-height: 31px;
    padding: 8px 6px;
    font-size: 10px;
  }

  .filtre-types button:first-child {
    flex: 0 0 64px;
  }

  .filtre-types button:not(:first-child):not(:last-child) {
    flex: 1 1 0;
  }

  .filtre-types button:last-child {
    flex: 0 0 82px;
  }

  .grille {
    max-width: none;
    margin-right: -2px;
    margin-left: -2px;
  }

  .filtres-laravel-legacy {
    width: 100%;
    min-height: 0;
    margin: 0 0 4px;
  }

  .ligne-filtres-legacy {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin: 0 0 10px;
  }

  .ligne-filtres-legacy button:first-child {
    display: none;
  }

  .ligne-filtres-legacy button {
    width: 148px;
    height: 31px;
    min-height: 31px;
    padding: 5px 8px;
    border-radius: 8px;
    font-size: 11px;
  }

  .ligne-filtres-legacy button span {
    display: none;
  }

  .ligne-filtres-legacy button strong {
    font-size: 10px;
  }

  .calendrier-legacy {
    width: 100%;
    max-width: 100%;
    padding: 8px 10px 10px;
  }

  .calendrier-legacy-entete {
    grid-template-columns: auto auto auto auto auto;
    gap: 6px;
    font-size: 12px;
  }

  .calendrier-legacy-entete span {
    display: none;
  }

  .calendrier-legacy-entete button {
    min-height: 20px;
    padding: 0 6px;
    border: 0;
    font-size: 12px;
  }

  .calendrier-legacy-jours button {
    height: 25px;
  }

  .panier-raccourci {
    right: 12px;
    top: auto;
    bottom: 16px;
    max-width: calc(100vw - 24px);
    transform: none;
  }

  .detail-laravel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: none;
    margin: 0;
    padding: 0 10px 96px;
  }

  .preview-affiche-laravel {
    height: 360px;
  }

  .titre-affiche-detail h2 {
    font-size: 24px;
  }

  .titre-affiche-detail p {
    font-size: 13px;
  }

  .detail-laravel-compact {
    grid-template-columns: 114px minmax(0, 1fr);
    gap: 0;
    min-height: 686px;
    margin: 0;
    padding: 4px 8px 48px;
    column-gap: 12px;
  }

  .detail-affiche-compact {
    width: 114px;
    height: 171px;
    border: 0;
  }

  .titre-affiche-detail-compact {
    bottom: 14px;
    right: auto;
    left: 6px;
    width: calc(100% - 12px);
    text-align: left;
  }

  .titre-affiche-detail-compact h2 {
    font-size: 16px;
    line-height: 1.15;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .titre-affiche-detail-compact p {
    display: none;
  }

  .detail-laravel-principale h2 {
    font-size: 22px;
  }

  .calendrier-detail-laravel {
    width: 100%;
    max-width: 280px;
    margin-right: auto;
    margin-left: auto;
  }

  .detail-laravel-achat {
    position: static;
    width: auto;
    padding-top: 12px;
  }

  .detail-description-bas {
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .detail-description-bas .description {
    line-height: 1.42;
  }

  .plus-places-detail {
    font-size: 20px;
  }

  .grille {
    gap: 8px;
    margin-top: 19px;
    margin-bottom: 8px;
  }

  .carte-spectacle,
  .carte-spectacle.sans-affiche {
    min-height: 168px;
    height: 168px;
    max-height: 168px;
    flex-direction: row;
  }

  .carte-spectacle .affiche {
    flex: 0 0 112px;
    width: 112px;
    height: 168px;
    aspect-ratio: auto;
  }

  .carte-corps {
    min-width: 0;
    align-items: flex-start;
    padding-bottom: 8px;
  }

  .carte-spectacle h2 {
    font-size: 16px;
    line-height: 20px;
    margin-top: 8px;
    text-align: left;
  }

  .dates-carte {
    width: 100%;
    margin-top: 4px;
    padding: 0 12px;
    font-size: 12px;
    font-style: italic;
    line-height: 15px;
    text-align: left;
  }

  .actions-carte {
    width: calc(100% - 24px);
    justify-content: flex-start;
    margin: auto 0 4px 12px;
    padding: 8px 0 0;
  }

  .actions-carte .bouton {
    width: 80px;
    min-width: 80px;
    height: 32px;
    min-height: 32px;
    padding: 8px 0;
    font-size: 12px;
    line-height: 16px;
  }

  .carte-spectacle.sans-affiche .categorie-spectacle {
    display: none;
  }

  .interdit-laravel {
    min-height: 720px;
    margin: -14px -10px -150px;
    padding-bottom: 150px;
  }
}
.tarif-prix-barre {
  color: var(--muted, #6b7280);
  font-size: 0.9em;
  text-decoration-thickness: 1px;
}
.page-ebillet {
  display: grid;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 32px auto 64px;
}

.entete-ebillet,
.qr-groupe-ebillet,
.carte-ebillet-individuel {
  padding: 24px;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #d9dee7);
  border-radius: 18px;
}

.entete-ebillet {
  display: grid;
  gap: 8px;
}

.entete-ebillet h1,
.qr-groupe-ebillet h2 {
  margin: 0;
}

.badge-securise {
  width: fit-content;
  padding: 5px 10px;
  color: #14532d;
  font-size: 0.82rem;
  font-weight: 800;
  background: #dcfce7;
  border-radius: 999px;
}

.onglets-ebillet {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.onglets-representations-ebillet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.onglets-representations-ebillet a {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--bordure, #d9dee7);
  border-radius: var(--rayon-bouton, 12px);
  background: var(--surface, #fff);
  color: var(--texte, #111827);
  text-decoration: none;
}

.onglets-representations-ebillet a[aria-current="page"] {
  border-color: var(--color-primary, #2563eb);
  background: color-mix(in srgb, var(--color-primary, #2563eb) 10%, #fff);
}

.onglets-representations-ebillet span,
.onglets-representations-ebillet small,
.onglets-representations-ebillet strong {
  overflow-wrap: anywhere;
}

.onglets-representations-ebillet span,
.onglets-representations-ebillet small {
  color: var(--texte-doux, #5f6673);
}

.qr-groupe-ebillet {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.qr-groupe-ebillet img {
  width: 220px;
  height: 220px;
  background: #fff;
}

.grille-ebillets-individuels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.carte-ebillet-individuel {
  display: grid;
  gap: 12px;
}

.carte-ebillet-individuel header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.carte-ebillet-individuel img {
  width: 100%;
  height: auto;
  border: 1px solid #d9dee7;
}

.expiration-ebillet {
  color: var(--muted, #5f6673);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .page-ebillet {
    width: min(100% - 20px, 1120px);
    margin-top: 16px;
  }

  .qr-groupe-ebillet {
    grid-template-columns: 1fr;
  }

  .qr-groupe-ebillet img {
    justify-self: center;
  }
}
