/* =============================================================================
   Wacdo — borne de commande (front Bloc 1)
   Design importe depuis Claude Design ("Borne Wacdo.dc.html").
   Canvas de reference : 1920 x 1080, mis a l'echelle pour tenir dans l'ecran.
   ============================================================================= */

:root {
    --bg:        #0B1220;
    --bg-header: #111C2E;
    --bg-nav:    #0F1A2B;
    --bg-card:   #131F33;
    --surface:   #1E293B;
    --border:    #1E293B;
    --border-2:  #334155;
    --accent:    #FBBF24;
    --accent-2:  #FCD34D;
    --ink:       #F8FAFC;
    --ink-dark:  #111827;
    --muted:     #94A3B8;
    --muted-2:   #CBD5E1;
    --muted-3:   #64748B;
    --danger:    #FCA5A5;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    height: 100%;
    overflow: hidden;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

:focus-visible {
    outline: 4px solid var(--accent);
    outline-offset: 3px;
}

a { color: var(--accent); }
a:hover { color: var(--accent-2); }

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 8px; }

@keyframes pop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.18); }
    100% { transform: scale(1); }
}

/* -----------------------------------------------------------------------------
   Canvas : la borne est dessinee dans un repere de 1080px de haut (reference
   1920x1080). Le JS calcule une echelle UNIFORME a partir de la hauteur, puis
   donne au canvas la largeur/hauteur de design qui remplit exactement l'ecran.
   Resultat : plein ecran sur tous les formats, sans bande noire ni deformation.
   -------------------------------------------------------------------------- */
.kiosk-viewport {
    position: fixed;
    inset: 0;
    overflow: hidden;
    background: var(--bg);
}

.kiosk {
    /* Dimensions posees par fitKiosk() ; ces valeurs ne sont que le repli. */
    width: 1920px;
    height: 1080px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    background: var(--bg);
    color: var(--ink);
    font-family: Archivo, system-ui, -apple-system, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    transform-origin: top left;
}

.screen { position: absolute; inset: 0; }
.screen[hidden] { display: none; }

/* -----------------------------------------------------------------------------
   Ecran 1 — attente (attract)
   -------------------------------------------------------------------------- */
.attract {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #111C2E 0%, #0B1220 100%);
    color: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    text-align: center;
}

.attract__logo {
    font-size: 132px;
    font-weight: 900;
    letter-spacing: -4px;
    color: var(--accent);
    line-height: 1;
}

.attract__baseline {
    font-size: 34px;
    font-weight: 500;
    color: var(--muted);
    max-width: 900px;
    line-height: 1.4;
}

.attract__cta {
    margin-top: 40px;
    padding: 34px 72px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--ink-dark);
    font-size: 40px;
    font-weight: 800;
    animation: pop 2.4s ease-in-out infinite;
}

/* -----------------------------------------------------------------------------
   Confirmation d'annulation — "Annuler" vide tout le panier, on demande d'abord.
   -------------------------------------------------------------------------- */
.modal {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: rgba(2, 6, 15, 0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.modal__panel {
    width: 980px;
    max-width: 100%;
    padding: 64px;
    border-radius: 32px;
    background: var(--bg-header);
    border: 1px solid var(--border-2);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.modal__title {
    margin: 0;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -1px;
}

.modal__text {
    margin: 0;
    font-size: 28px;
    font-weight: 500;
    color: var(--muted-2);
    line-height: 1.4;
}

.modal__actions {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}

.modal__btn {
    flex: 1;
    min-height: 118px;
    padding: 0 32px;
    border-radius: 22px;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

/* Option sure a gauche, mise en avant : c'est elle qui recoit le focus. */
.modal__btn--keep { background: var(--accent); color: var(--ink-dark); }

.modal__btn--danger {
    background: transparent;
    color: var(--danger);
    border: 3px solid #7F1D1D;
}

/* -----------------------------------------------------------------------------
   Ecran 2 — sur place / a emporter
   -------------------------------------------------------------------------- */
.mode {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 72px;
    padding: 80px;
}

.mode__title {
    margin: 0;
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -2px;
}

.mode__choices { display: flex; gap: 48px; }

.mode__btn {
    width: 480px;
    height: 420px;
    border-radius: 32px;
    font-size: 44px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.mode__btn--primary { background: var(--accent); color: var(--ink-dark); }
.mode__btn--primary span { font-size: 30px; font-weight: 600; opacity: 0.7; }

.mode__btn--secondary {
    background: var(--surface);
    color: var(--ink);
    border: 3px solid var(--border-2);
}
.mode__btn--secondary span { font-size: 30px; font-weight: 600; color: var(--muted); }

/* -----------------------------------------------------------------------------
   Chrome commun : en-tete, bandeau hors-ligne
   -------------------------------------------------------------------------- */
.layout {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
}

.topbar {
    height: 104px;
    flex: none;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 40px;
    background: var(--bg-header);
    border-bottom: 1px solid var(--border);
}

.topbar--catalogue { gap: 32px; }

.topbar__logo {
    font-size: 40px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -1px;
}

.topbar__mode {
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.14);
    color: var(--accent);
    font-size: 20px;
    font-weight: 700;
}

.topbar__title { font-size: 30px; font-weight: 800; }
.topbar__title--lg { font-size: 34px; font-weight: 800; }

.spacer { flex: 1; }

.btn-back,
.btn-ghost-dark {
    height: 64px;
    padding: 0 30px;
    border-radius: 16px;
    background: var(--surface);
    color: var(--ink);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-outline {
    height: 64px;
    padding: 0 26px;
    border-radius: 16px;
    background: transparent;
    color: var(--muted);
    font-size: 20px;
    font-weight: 600;
    border: 2px solid var(--border-2);
}

.offline-banner {
    flex: none;
    padding: 18px 40px;
    background: #7C2D12;
    color: #FED7AA;
    font-size: 22px;
    font-weight: 700;
}

/* -----------------------------------------------------------------------------
   Ecran 3 — catalogue
   -------------------------------------------------------------------------- */
.catalogue__body { flex: 1; display: flex; min-height: 0; }

.catnav {
    width: 344px;
    flex: none;
    padding: 28px 20px;
    background: var(--bg-nav);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow-y: auto;
}

.catnav__btn {
    min-height: 84px;
    padding: 0 24px;
    border-radius: 18px;
    font-size: 24px;
    font-weight: 800;
    text-align: left;
    display: flex;
    align-items: center;
    background: transparent;
    color: var(--muted-2);
    border: 2px solid var(--border);
}

.catnav__btn[aria-current="true"] {
    background: var(--accent);
    color: var(--ink-dark);
    border-color: var(--accent);
}

.catalogue__main {
    flex: 1;
    min-width: 0;
    overflow-y: auto;
    padding: 36px 40px 40px;
}

.catalogue__title {
    margin: 0 0 28px;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
}

/* 4 colonnes a la largeur de reference ; une de plus si l'ecran est plus large,
   une de moins s'il est plus etroit. Les cartes gardent une taille lisible. */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 26px;
}

.card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    text-align: left;
    color: #0F172A;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.card__media {
    height: 190px;
    background: #E2E8F0;
    position: relative;
    flex: none;
}

.card__body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.card__name { font-size: 26px; font-weight: 800; line-height: 1.15; }

.card__desc {
    font-size: 17px;
    font-weight: 500;
    color: #64748B;
    line-height: 1.35;
    flex: 1;
}

.card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.card__price { font-size: 28px; font-weight: 800; }

.card__add {
    height: 52px;
    min-width: 120px;
    padding: 0 22px;
    border-radius: 14px;
    background: var(--accent);
    color: var(--ink-dark);
    font-size: 21px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.empty-state {
    padding: 120px 0;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: var(--muted-3);
}

/* Barre panier (bas du catalogue) */
.cartbar {
    height: 140px;
    flex: none;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0 44px;
    background: var(--accent);
    color: var(--ink-dark);
    text-align: left;
    width: 100%;
}

.cartbar__count {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--ink-dark);
    color: var(--accent);
    font-size: 30px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cartbar__label { font-size: 30px; font-weight: 800; }
.cartbar__points { font-size: 24px; font-weight: 700; opacity: 0.7; }
.cartbar__total { font-size: 44px; font-weight: 900; }

/* -----------------------------------------------------------------------------
   Images produits / menus (remplace <image-slot> du design)
   -------------------------------------------------------------------------- */
.media {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    background: #E2E8F0;
    color: #94A3B8;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.media--placeholder-dark {
    background: var(--surface);
    color: var(--muted-3);
}

/* -----------------------------------------------------------------------------
   Ecran 4 — detail produit / composition menu
   -------------------------------------------------------------------------- */
.detail__body { flex: 1; min-height: 0; display: flex; }

.detail__left { width: 640px; flex: none; padding: 40px; }

.detail__media {
    width: 100%;
    height: 420px;
    border-radius: 28px;
    overflow: hidden;
    background: var(--surface);
}

.detail__desc {
    margin: 28px 4px 0;
    font-size: 24px;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.5;
}

.detail__right {
    flex: 1;
    min-width: 0;
    overflow-y: auto;
    padding: 40px 40px 40px 0;
}

.detail__slots {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.field { border: none; margin: 0 0 32px; padding: 0; }
.field--slot { margin: 0; }
.field--last { margin: 0 0 40px; }

.field legend {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    padding: 0 0 14px;
}

.chips { display: flex; flex-wrap: wrap; gap: 14px; }
.chips--row { flex-wrap: nowrap; gap: 16px; }

.chip {
    min-height: 72px;
    padding: 0 28px;
    border-radius: 16px;
    font-size: 22px;
    font-weight: 700;
    background: var(--bg-card);
    color: var(--muted-2);
    border: 2px solid var(--border-2);
}

/* Taille d'un emplacement de menu : sous-choix, visuellement plus discret. */
.slot-size__label {
    margin: 18px 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--muted);
}

.chip--size { min-height: 62px; font-size: 20px; }

.chip[aria-pressed="true"] {
    background: var(--accent);
    color: var(--ink-dark);
    border-color: var(--accent);
}

.qty { display: flex; align-items: center; gap: 20px; }

.qty__btn {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: var(--surface);
    color: var(--ink);
    font-size: 36px;
    font-weight: 800;
}

.qty__value {
    min-width: 90px;
    text-align: center;
    font-size: 44px;
    font-weight: 900;
}

.btn-primary-xl {
    width: 100%;
    height: 108px;
    border-radius: 22px;
    background: var(--accent);
    color: var(--ink-dark);
    font-size: 32px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

/* -----------------------------------------------------------------------------
   Ecran 5 — panier
   -------------------------------------------------------------------------- */
.cart__body { flex: 1; min-height: 0; display: flex; }

.cart__lines {
    flex: 1;
    min-width: 0;
    overflow-y: auto;
    padding: 36px 40px;
}

.cart__list { display: flex; flex-direction: column; gap: 18px; }

.line {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    border-radius: 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.line__media {
    width: 96px;
    height: 96px;
    flex: none;
    border-radius: 18px;
    overflow: hidden;
    background: var(--surface);
}

.line__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.line__name { font-size: 26px; font-weight: 800; }

.line__meta {
    font-size: 19px;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.35;
}

.badge-free {
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--ink-dark);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
}

.line__qty { display: flex; align-items: center; gap: 14px; }

.line__btn {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--surface);
    color: var(--ink);
    font-size: 30px;
    font-weight: 800;
}

.line__qty-value {
    min-width: 52px;
    text-align: center;
    font-size: 30px;
    font-weight: 800;
}

.line__price {
    width: 160px;
    text-align: right;
    font-size: 30px;
    font-weight: 900;
}

.line__remove {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: transparent;
    border: 2px solid var(--border-2);
    color: var(--muted);
    font-size: 22px;
    font-weight: 800;
}

.summary {
    width: 560px;
    flex: none;
    padding: 36px 40px;
    background: var(--bg-header);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.summary__row {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 600;
    color: var(--muted);
}

.summary__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.summary__total-label { font-size: 30px; font-weight: 800; }
.summary__total-value { font-size: 48px; font-weight: 900; color: var(--accent); }

.summary__points {
    padding: 20px 24px;
    border-radius: 18px;
    background: rgba(251, 191, 36, 0.10);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-2);
}

.summary__loyalty {
    height: 84px;
    border-radius: 18px;
    background: var(--surface);
    color: var(--ink);
    font-size: 24px;
    font-weight: 700;
}

.summary__checkout {
    height: 104px;
    border-radius: 20px;
    background: var(--accent);
    color: var(--ink-dark);
    font-size: 30px;
    font-weight: 900;
}

.summary__checkout[disabled],
.summary__loyalty[disabled] {
    background: var(--surface);
    color: #475569;
    cursor: not-allowed;
}

/* -----------------------------------------------------------------------------
   Ecran 6 — fidelite
   -------------------------------------------------------------------------- */
.loyalty__body { flex: 1; min-height: 0; display: flex; }

.loyalty__left {
    width: 720px;
    flex: none;
    padding: 44px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.keypad-block { display: flex; flex-direction: column; gap: 26px; }

.keypad-block__label { font-size: 28px; font-weight: 700; color: var(--muted); }

.keypad-display {
    height: 108px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 2px solid var(--border-2);
    display: flex;
    align-items: center;
    padding: 0 30px;
    font-size: 46px;
    font-weight: 800;
    letter-spacing: 4px;
}

.keypad-display--lg {
    height: 120px;
    padding: 0 32px;
    font-size: 52px;
    font-weight: 900;
    letter-spacing: 3px;
}

.keypad-error {
    min-height: 34px;
    font-size: 22px;
    font-weight: 700;
    color: var(--danger);
}

.keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 560px;
}

.keypad--wide { max-width: 620px; }

.key {
    height: 96px;
    border-radius: 18px;
    font-size: 34px;
    font-weight: 800;
    background: var(--bg-card);
    color: var(--ink);
    border: 2px solid var(--border);
}

.key--del { background: var(--surface); color: var(--muted); border: none; }
.key--ok { background: var(--accent); color: var(--ink-dark); border: none; }

/* Actions de l'etape fidelite en entree de commande. */
.loyalty__flow {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.loyalty__skip {
    min-height: 84px;
    padding: 0 30px;
    border-radius: 18px;
    background: transparent;
    border: 2px solid var(--border-2);
    color: var(--muted-2);
    font-size: 24px;
    font-weight: 700;
}

.loyalty__continue {
    min-height: 104px;
    padding: 0 30px;
    border-radius: 20px;
    background: var(--accent);
    color: var(--ink-dark);
    font-size: 28px;
    font-weight: 900;
}

.customer-card {
    padding: 36px;
    border-radius: 26px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.customer-card__hello { font-size: 22px; font-weight: 700; color: var(--muted); }
.customer-card__name { font-size: 46px; font-weight: 900; }
.customer-card__points { font-size: 30px; font-weight: 800; color: var(--accent); }
.customer-card__preview { font-size: 22px; font-weight: 600; color: var(--muted); }

.customer-card__logout {
    align-self: flex-start;
    margin-top: 8px;
    height: 60px;
    padding: 0 26px;
    border-radius: 14px;
    background: transparent;
    border: 2px solid var(--border-2);
    color: var(--muted);
    font-size: 20px;
    font-weight: 700;
}

.loyalty__right {
    flex: 1;
    min-width: 0;
    overflow-y: auto;
    padding: 44px 44px 44px 0;
}

.loyalty__title { margin: 0 0 24px; font-size: 34px; font-weight: 800; }

.rewards { display: flex; flex-direction: column; gap: 18px; }

.reward {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 26px 30px;
    border-radius: 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.reward__cost {
    width: 96px;
    flex: none;
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    color: var(--accent);
}

.reward__text { flex: 1; min-width: 0; }
.reward__name { font-size: 26px; font-weight: 800; }
.reward__desc { font-size: 19px; font-weight: 500; color: var(--muted); }

.reward__badge {
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 800;
    background: var(--surface);
    color: var(--muted-3);
}

.reward__badge--ok { background: rgba(251, 191, 36, 0.16); color: var(--accent); }
.reward__badge--taken { background: #14532D; color: #BBF7D0; }

.reward__btn {
    height: 64px;
    padding: 0 30px;
    border-radius: 16px;
    font-size: 22px;
    font-weight: 800;
    background: var(--accent);
    color: var(--ink-dark);
}

.reward__btn[disabled] {
    background: var(--surface);
    color: #475569;
    cursor: not-allowed;
}

/* -----------------------------------------------------------------------------
   Ecran 7 — numero de commande / recapitulatif
   -------------------------------------------------------------------------- */
.checkout__body { flex: 1; min-height: 0; display: flex; }

.checkout__left {
    width: 760px;
    flex: none;
    padding: 44px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout__hint { font-size: 26px; font-weight: 600; color: var(--muted); }

.checkout__right {
    flex: 1;
    min-width: 0;
    padding: 44px 44px 44px 0;
    display: flex;
    flex-direction: column;
}

.recap {
    flex: 1;
    min-height: 0;
    padding: 32px;
    border-radius: 26px;
    background: var(--bg-header);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
}

.recap__title { font-size: 28px; font-weight: 800; }

.recap__row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 22px;
    font-weight: 600;
    color: var(--muted-2);
}

.recap__sep { height: 1px; background: var(--border); margin: 10px 0; }

.recap__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.recap__total-label { font-size: 30px; font-weight: 800; }
.recap__total-value { font-size: 48px; font-weight: 900; color: var(--accent); }

.recap__loyalty { font-size: 22px; font-weight: 600; color: var(--muted); }

.checkout__submit {
    margin-top: 24px;
    height: 116px;
    border-radius: 22px;
    background: var(--accent);
    color: var(--ink-dark);
    font-size: 32px;
    font-weight: 900;
}

.checkout__submit[disabled] {
    background: var(--surface);
    color: #475569;
    cursor: not-allowed;
}

/* -----------------------------------------------------------------------------
   Ecran 8 — confirmation
   -------------------------------------------------------------------------- */
.confirm {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    padding: 80px;
    text-align: center;
}

.confirm__label { font-size: 30px; font-weight: 700; color: var(--muted); }

.confirm__number {
    font-size: 128px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -4px;
    line-height: 1;
}

.confirm__total { font-size: 34px; font-weight: 700; }

.confirm__points {
    font-size: 26px;
    font-weight: 600;
    color: var(--muted);
    max-width: 900px;
    line-height: 1.5;
}

.confirm__restart {
    margin-top: 30px;
    height: 104px;
    padding: 0 64px;
    border-radius: 22px;
    background: var(--accent);
    color: var(--ink-dark);
    font-size: 30px;
    font-weight: 900;
}

/* Utilitaires ---------------------------------------------------------------- */
[hidden] { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
