/* ═══════════════════════════════════════════════════════════════
   ELITE LOUNGE · DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════════
   Version  : 1.0
   Stack    : CodeIgniter 4 + UIKit
   Prefix   : .el-*  (no UIKit class collisions)
   Theme    : Luxury Dark — noir mat, accents dorés, premium
   Author   : Elite Lounge design team — 2026
   ═══════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════
   1. DESIGN TOKENS (Custom Properties)
   ═══════════════════════════════════════════════════════════════ */

:root {

  /* ── Brand colors ─────────────────────────────────────────── */
  --el-bg:              #0D0D0D;   /* page background — noir profond */
  --el-bg-2:            #141414;   /* surface elevated */
  --el-bg-3:            #1A1A1A;   /* card hover, dropdown */
  --el-surface:         #161616;   /* products, KPI cards */
  --el-bg-overlay:      rgba(13,13,13,0.92);

  --el-gold:            #EEC88B;   /* primary gold — boutons, accents */
  --el-gold-dark:       #C8A96A;   /* gradient pair pour les boutons */
  --el-gold-dim:        #8A744A;   /* libellés discrets dorés */
  --el-gold-glow:       rgba(238,200,139,0.15);
  --el-gold-faint:      rgba(238,200,139,0.06);

  /* ── Text ─────────────────────────────────────────────────── */
  --el-text:            #FFFFFF;
  --el-text-muted:      #AAAAAA;
  --el-text-dim:        #6E6E6E;
  --el-text-disabled:   #4A4A4A;

  /* ── Dividers ─────────────────────────────────────────────── */
  --el-hairline:        #2A2A2A;
  --el-hairline-soft:   rgba(255,255,255,0.05);
  --el-hairline-gold:   rgba(238,200,139,0.22);

  /* ── Status (état commandes) ──────────────────────────────── */
  --el-status-new:        #E66B5A;   /* nouvelle commande */
  --el-status-preparing:  #E8B259;   /* en préparation */
  --el-status-delivered:  #7FCBA8;   /* livrée / payée */
  --el-status-waiting:    #AAAAAA;   /* en attente */

  --el-status-new-bg:        rgba(230,107,90,0.14);
  --el-status-preparing-bg:  rgba(232,178,89,0.14);
  --el-status-delivered-bg:  rgba(127,203,168,0.14);
  --el-status-waiting-bg:    rgba(170,170,170,0.12);

  /* ── Tables ───────────────────────────────────────────────── */
  --el-table-free:       #7FCBA8;
  --el-table-occupied:   #FFFFFF;
  --el-table-ordering:   var(--el-gold);
  --el-table-inactive:   #555555;

  /* ── Semantic (UIKit-compatible aliases) ─────────────────── */
  --el-primary:         var(--el-gold);
  --el-success:         var(--el-status-delivered);
  --el-warning:         var(--el-status-preparing);
  --el-danger:          var(--el-status-new);

  /* ── Spacing scale (4-pt grid) ────────────────────────────── */
  --el-space-0:    0;
  --el-space-1:    4px;
  --el-space-2:    8px;
  --el-space-3:    12px;
  --el-space-4:    16px;
  --el-space-5:    20px;
  --el-space-6:    24px;
  --el-space-7:    28px;
  --el-space-8:    32px;
  --el-space-10:   40px;
  --el-space-12:   48px;
  --el-space-14:   56px;
  --el-space-16:   64px;
  --el-space-20:   80px;

  /* ── Radius ───────────────────────────────────────────────── */
  --el-radius-sm:   6px;
  --el-radius-md:   10px;
  --el-radius-lg:   12px;   /* cards, buttons */
  --el-radius-xl:   14px;   /* KPI, buttons hero */
  --el-radius-2xl:  16px;   /* large cards */
  --el-radius-3xl:  22px;
  --el-radius-pill: 9999px;

  /* ── Shadows (ombres dorées légères) ──────────────────────── */
  --el-shadow-sm:   0 1px 3px rgba(0,0,0,0.4);
  --el-shadow-md:   0 4px 12px rgba(0,0,0,0.4);
  --el-shadow-lg:   0 8px 24px rgba(0,0,0,0.5);
  --el-shadow-xl:   0 24px 60px rgba(0,0,0,0.45);

  --el-shadow-gold:    0 4px 20px rgba(238,200,139,0.15);
  --el-shadow-gold-lg: 0 8px 28px rgba(238,200,139,0.30), 0 2px 6px rgba(0,0,0,0.4);
  --el-shadow-gold-fab:0 12px 28px rgba(238,200,139,0.35), 0 4px 8px rgba(0,0,0,0.5);

  /* ── Gradients ────────────────────────────────────────────── */
  --el-grad-gold:        linear-gradient(180deg, #EEC88B 0%, #C8A96A 100%);
  --el-grad-gold-soft:   linear-gradient(160deg, rgba(238,200,139,0.18) 0%, rgba(238,200,139,0.04) 60%, #141414 100%);
  --el-grad-surface:     linear-gradient(135deg, #161616 0%, #0F0F0F 100%);
  --el-grad-hero:        linear-gradient(160deg, #1a1305 0%, #0D0D0D 60%);

  /* ── Typography ───────────────────────────────────────────── */
  --el-font-display:   "DINPro-Bold", "Barlow Condensed", "Barlow", "Helvetica Neue", sans-serif;
  --el-font-body:      "DINPro", "Inter", "Helvetica Neue", system-ui, sans-serif;
  --el-font-mono:      ui-monospace, "SF Mono", Menlo, Monaco, monospace;

  /* sizes (rem) */
  --el-fs-xs:    11px;
  --el-fs-sm:    12px;
  --el-fs-base:  14px;
  --el-fs-md:    16px;
  --el-fs-lg:    18px;
  --el-fs-xl:    22px;
  --el-fs-2xl:   28px;
  --el-fs-3xl:   34px;
  --el-fs-4xl:   46px;
  --el-fs-display: 64px;

  /* letter-spacing — esprit lounge */
  --el-ls-tight:    -0.01em;
  --el-ls-normal:    0;
  --el-ls-wide:      0.06em;
  --el-ls-wider:     0.12em;   /* sous-titres */
  --el-ls-widest:    0.18em;   /* badges */
  --el-ls-luxury:    0.32em;   /* eyebrows, captions luxe */

  --el-lh-tight:    1.1;
  --el-lh-normal:   1.4;
  --el-lh-loose:    1.6;

  /* ── Transitions ──────────────────────────────────────────── */
  --el-ease:         cubic-bezier(.2,.7,.3,1);
  --el-ease-in:      cubic-bezier(.6,.1,.2,1);

  --el-dur-fast:     150ms;
  --el-dur-base:     250ms;
  --el-dur-slow:     300ms;

  --el-transition:   all var(--el-dur-slow) var(--el-ease);

  /* ── Z-index scale ────────────────────────────────────────── */
  --el-z-base:       1;
  --el-z-sticky:     10;
  --el-z-overlay:    20;
  --el-z-modal:      30;
  --el-z-toast:      40;
  --el-z-tooltip:    50;

  /* ── Safe areas (iOS) ─────────────────────────────────────── */
  --el-safe-top:     env(safe-area-inset-top, 0);
  --el-safe-bottom:  env(safe-area-inset-bottom, 0);
}


/* ═══════════════════════════════════════════════════════════════
   2. FONT FACES & TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════ */

/* DIN Pro — primary brand family (à fournir dans /assets/fonts/) */
@font-face {
  font-family: "DINPro";
  src: url("../fonts/DINPro-Regular.woff2") format("woff2"),
       url("../fonts/DINPro-Regular.woff")  format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DINPro";
  src: url("../fonts/DINPro-Medium.woff2") format("woff2"),
       url("../fonts/DINPro-Medium.woff")  format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DINPro-Bold";
  src: url("../fonts/DINPro-Bold.woff2") format("woff2"),
       url("../fonts/DINPro-Bold.woff")  format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* American Desktop — display alternate (optional) */
@font-face {
  font-family: "American Desktop";
  src: url("../fonts/AmericanDesktop.woff2") format("woff2"),
       url("../fonts/AmericanDesktop.woff")  format("woff");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* Web fallback — import Barlow + Inter via <link> in <head> if no DIN Pro available
   <link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet"> */


/* ── Type utilities ─────────────────────────────────────────── */

.el-title,
.el-h1 {
  font-family: var(--el-font-display);
  font-weight: 700;
  font-size: var(--el-fs-3xl);
  line-height: var(--el-lh-tight);
  letter-spacing: var(--el-ls-wider);
  text-transform: uppercase;
  color: var(--el-text);
  margin: 0;
}

.el-title--display {
  font-size: var(--el-fs-display);
  letter-spacing: var(--el-ls-wide);
}

.el-title--xl { font-size: var(--el-fs-4xl); }
.el-title--lg { font-size: var(--el-fs-3xl); }
.el-title--md { font-size: var(--el-fs-2xl); }
.el-title--sm { font-size: var(--el-fs-xl); }

.el-subtitle {
  font-family: var(--el-font-display);
  font-weight: 600;
  font-size: var(--el-fs-md);
  line-height: var(--el-lh-normal);
  letter-spacing: var(--el-ls-widest);
  text-transform: uppercase;
  color: var(--el-text);
  margin: 0;
}

.el-eyebrow {
  font-family: var(--el-font-display);
  font-weight: 600;
  font-size: var(--el-fs-xs);
  letter-spacing: var(--el-ls-luxury);
  text-transform: uppercase;
  color: var(--el-gold);
  margin: 0;
}

.el-eyebrow--muted { color: var(--el-gold-dim); }

.el-body {
  font-family: var(--el-font-body);
  font-weight: 400;
  font-size: var(--el-fs-base);
  line-height: var(--el-lh-loose);
  color: var(--el-text);
}

.el-body--muted { color: var(--el-text-muted); }

.el-caption {
  font-family: var(--el-font-body);
  font-size: var(--el-fs-xs);
  line-height: var(--el-lh-normal);
  color: var(--el-text-muted);
  letter-spacing: var(--el-ls-wide);
  text-transform: uppercase;
}

.el-price {
  font-family: var(--el-font-display);
  font-weight: 700;
  font-size: var(--el-fs-xl);
  color: var(--el-gold);
  letter-spacing: var(--el-ls-wide);
}

.el-price--xl { font-size: var(--el-fs-2xl); }
.el-price--sm { font-size: var(--el-fs-base); }


/* ═══════════════════════════════════════════════════════════════
   3. BASE / RESET (scope to .el-app to avoid UIKit conflicts)
   ═══════════════════════════════════════════════════════════════ */

.el-app,
.el-app * ,
.el-app *::before,
.el-app *::after {
  box-sizing: border-box;
}

.el-app {
  background: var(--el-bg);
  color: var(--el-text);
  font-family: var(--el-font-body);
  font-size: var(--el-fs-base);
  line-height: var(--el-lh-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.el-app a { color: var(--el-gold); text-decoration: none; }
.el-app a:hover { text-decoration: underline; text-underline-offset: 3px; }


/* ═══════════════════════════════════════════════════════════════
   4. BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.el-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  border: none;
  border-radius: var(--el-radius-xl);
  cursor: pointer;
  font-family: var(--el-font-display);
  font-weight: 700;
  font-size: var(--el-fs-base);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
  transition: transform var(--el-dur-fast) var(--el-ease),
              box-shadow var(--el-dur-base) var(--el-ease),
              background var(--el-dur-base) var(--el-ease);
}

.el-btn:active { transform: translateY(1px); }
.el-btn[disabled],
.el-btn.uk-disabled { opacity: 0.4; pointer-events: none; }

.el-btn--block,
.el-btn--full { width: 100%; }

.el-btn--sm { height: 40px; font-size: 12px; padding: 0 18px; }
.el-btn--lg { height: 58px; font-size: 15px; padding: 0 28px; }

/* Primary gold (filled) */
.el-btn-gold {
  background: var(--el-grad-gold);
  color: var(--el-bg);
  box-shadow: var(--el-shadow-gold);
}
.el-btn-gold:hover {
  box-shadow: var(--el-shadow-gold-lg);
  filter: brightness(1.05);
}

/* Outline gold */
.el-btn-outline-gold {
  background: transparent;
  color: var(--el-gold);
  border: 1px solid var(--el-gold-dark);
}
.el-btn-outline-gold:hover {
  background: var(--el-gold-faint);
  border-color: var(--el-gold);
}

/* Ghost — text only */
.el-btn-ghost {
  background: transparent;
  color: var(--el-text-muted);
}
.el-btn-ghost:hover { color: var(--el-gold); background: var(--el-gold-faint); }

/* Danger */
.el-btn-danger {
  background: var(--el-status-new);
  color: #fff;
}

/* FAB — floating action button */
.el-fab {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--el-grad-gold);
  color: var(--el-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--el-shadow-gold-fab);
  border: none;
  cursor: pointer;
  transition: var(--el-transition);
}
.el-fab:hover { transform: translateY(-2px); }


/* ═══════════════════════════════════════════════════════════════
   5. BADGES (statut commande)
   ═══════════════════════════════════════════════════════════════ */

.el-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: var(--el-radius-pill);
  font-family: var(--el-font-display);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.el-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.el-badge-new {
  color: var(--el-status-new);
  background: var(--el-status-new-bg);
  border: 0.5px solid rgba(230,107,90,0.3);
}
.el-badge-new::before { animation: el-pulse 1.6s infinite; }

.el-badge-preparing {
  color: var(--el-status-preparing);
  background: var(--el-status-preparing-bg);
  border: 0.5px solid rgba(232,178,89,0.3);
}

.el-badge-delivered {
  color: var(--el-status-delivered);
  background: var(--el-status-delivered-bg);
  border: 0.5px solid rgba(127,203,168,0.3);
}

.el-badge-modified {
  color: var(--el-gold);
  background: var(--el-gold-faint);
  border: 0.5px solid var(--el-hairline-gold);
}

.el-badge-waiting {
  color: var(--el-status-waiting);
  background: var(--el-status-waiting-bg);
  border: 0.5px solid rgba(170,170,170,0.2);
}

/* Mention "propriétaire" — distingue les établissements possédés (user_id)
   de ceux simplement gérés (délégation via la table manage). */
.el-badge-owner {
  color: var(--el-gold);
  background: var(--el-gold-faint);
  border: 0.5px solid var(--el-hairline-gold);
}
.el-badge-owner::before { display: none; }

/* Plain count badge — for cart, nav, etc. */
.el-badge-count {
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: var(--el-radius-pill);
  background: var(--el-gold);
  color: var(--el-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--el-font-display);
}

.el-badge-count--danger { background: var(--el-status-new); color: #fff; }


/* ═══════════════════════════════════════════════════════════════
   6. CARDS
   ═══════════════════════════════════════════════════════════════ */

.el-card {
  background: var(--el-bg-2);
  border: 0.5px solid var(--el-hairline);
  border-radius: var(--el-radius-xl);
  padding: var(--el-space-4);
  position: relative;
  transition: var(--el-transition);
}

.el-card--surface  { background: var(--el-grad-surface); }
.el-card--elevated { box-shadow: var(--el-shadow-md); }
.el-card--gold     { border-color: var(--el-hairline-gold); background: var(--el-grad-gold-soft); }

/* KPI card */
.el-card-kpi {
  background: var(--el-bg-2);
  border: 0.5px solid var(--el-hairline);
  border-radius: var(--el-radius-xl);
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
}
.el-card-kpi--accent {
  background: var(--el-grad-gold-soft);
  border-color: var(--el-hairline-gold);
}
.el-card-kpi .el-kpi-label {
  font-size: 10px;
  color: var(--el-text-muted);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.el-card-kpi .el-kpi-value {
  font-family: var(--el-font-display);
  font-weight: 700;
  font-size: 42px;
  letter-spacing: 0.04em;
  color: var(--el-text);
  margin-top: 6px;
  line-height: 1;
}
.el-card-kpi--accent .el-kpi-value { color: var(--el-gold); }
.el-card-kpi .el-kpi-delta {
  font-size: 11.5px;
  margin-top: 8px;
  color: var(--el-text-muted);
}
.el-card-kpi .el-kpi-delta--up   { color: var(--el-success); }
.el-card-kpi .el-kpi-delta--warn { color: var(--el-warning); }
.el-card-kpi .el-kpi-delta--down { color: var(--el-danger); }

/* Product card (menu client) */
.el-card-product {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  align-items: center;
  border-bottom: 0.5px solid var(--el-hairline);
}
.el-card-product__photo {
  width: 66px;
  height: 66px;
  border-radius: var(--el-radius-md);
  flex-shrink: 0;
  background: radial-gradient(circle at 30% 30%, rgba(238,200,139,0.18) 0%, rgba(238,200,139,0.04) 50%, rgba(0,0,0,0.4) 100%), #161616;
  border: 0.5px solid var(--el-hairline-gold);
  position: relative;
  overflow: hidden;
}
.el-card-product__photo--sm { width: 52px; height: 52px; }
.el-card-product__body { flex: 1; min-width: 0; }
.el-card-product__name {
  font-family: var(--el-font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--el-text);
  text-transform: uppercase;
}
.el-card-product__desc {
  font-size: 11.5px;
  color: var(--el-text-muted);
  line-height: 1.35;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.el-card-product__price {
  margin-top: 6px;
  font-family: var(--el-font-display);
  font-weight: 700;
  font-size: var(--el-fs-base);
  color: var(--el-gold);
  letter-spacing: 0.06em;
}
.el-card-product__add {
  width: 38px; height: 38px; border-radius: var(--el-radius-md);
  border: none; cursor: pointer;
  background: var(--el-grad-gold);
  color: var(--el-bg);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(238,200,139,0.25);
}

/* Order card */
.el-card-order {
  background: var(--el-bg-2);
  border: 0.5px solid var(--el-hairline);
  border-radius: var(--el-radius-xl);
  padding: 12px 14px;
  position: relative;
  overflow: hidden;
  transition: var(--el-transition);
}
.el-card-order--new {
  background: linear-gradient(135deg, rgba(230,107,90,0.10), #141414 60%);
  border-color: rgba(230,107,90,0.4);
}
.el-card-order--new::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0; width: 2px;
  background: var(--el-status-new);
  box-shadow: 0 0 8px var(--el-status-new);
  animation: el-pulse 1.6s infinite;
}
.el-card-order--selected {
  background: linear-gradient(135deg, rgba(238,200,139,0.16), rgba(238,200,139,0.04));
  border-color: var(--el-gold);
}

.el-card-order__head {
  display: flex; align-items: center; justify-content: space-between;
}
.el-card-order__table {
  width: 44px; height: 44px;
  border-radius: var(--el-radius-md);
  border: 0.5px solid var(--el-hairline-gold);
  background: var(--el-gold-faint);
  color: var(--el-gold);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.el-card-order__table small {
  font-size: 8.5px; letter-spacing: 0.18em;
}
.el-card-order__table strong {
  font-family: var(--el-font-display);
  font-weight: 700; font-size: 16px; line-height: 1;
}
.el-card-order__id {
  font-family: var(--el-font-display);
  font-weight: 700; font-size: 16px;
  color: var(--el-text);
  letter-spacing: 0.08em;
}
.el-card-order__amount {
  font-family: var(--el-font-display);
  font-weight: 700; font-size: 14px;
  color: var(--el-gold);
  letter-spacing: 0.04em;
}
.el-card-order__meta {
  font-size: 10.5px;
  color: var(--el-text-muted);
  margin-top: 2px;
}
.el-card-order__foot {
  margin-top: 9px;
  padding-top: 9px;
  border-top: 0.5px solid var(--el-hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--el-text-muted);
}

/* Table grid item (plan de salle) */
.el-card-table {
  background: var(--el-bg-2);
  border: 0.5px solid var(--el-hairline);
  border-radius: var(--el-radius-xl);
  padding: 12px;
  position: relative;
  min-height: 112px;
  transition: var(--el-transition);
}
.el-card-table--free {
  background: rgba(127,203,168,0.08);
  border-color: rgba(127,203,168,0.3);
}
.el-card-table--occupied {
  background: var(--el-bg-2);
  border-color: var(--el-hairline);
}
.el-card-table--ordering {
  background: rgba(232,178,89,0.10);
  border-color: rgba(232,178,89,0.45);
}
.el-card-table--inactive { opacity: 0.55; }

.el-card-table__num {
  font-family: var(--el-font-display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--el-text);
}
.el-card-table--ordering .el-card-table__num { color: var(--el-gold); }
.el-card-table__label {
  font-size: 9px;
  color: var(--el-text-muted);
  letter-spacing: 0.22em;
}


/* ═══════════════════════════════════════════════════════════════
   7. FORMS (dark inputs)
   ═══════════════════════════════════════════════════════════════ */

.el-field {
  display: block;
  margin-bottom: var(--el-space-4);
}

.el-label {
  display: block;
  font-size: 10px;
  color: var(--el-gold-dim);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.el-input,
.el-select,
.el-textarea {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  background: var(--el-bg-2);
  border: 0.5px solid var(--el-hairline);
  border-radius: var(--el-radius-lg);
  color: var(--el-text);
  font-family: var(--el-font-body);
  font-size: 14px;
  transition: border-color var(--el-dur-base) var(--el-ease),
              box-shadow var(--el-dur-base) var(--el-ease);
  outline: none;
}

.el-input::placeholder,
.el-textarea::placeholder { color: var(--el-text-dim); }

.el-input:focus,
.el-select:focus,
.el-textarea:focus {
  border-color: var(--el-gold);
  box-shadow: 0 0 0 3px rgba(238,200,139,0.08);
}

.el-textarea {
  height: auto;
  min-height: 96px;
  padding: 12px 16px;
  resize: vertical;
  line-height: 1.5;
}

.el-input--error {
  border-color: var(--el-danger);
  box-shadow: 0 0 0 3px rgba(230,107,90,0.10);
}

/* Search input (with leading icon, use flex wrapper) */
.el-input-search {
  height: 42px;
  border-radius: var(--el-radius-lg);
  background: var(--el-bg-2);
  display: flex; align-items: center;
  padding: 0 14px; gap: 10px;
  border: 0.5px solid var(--el-hairline);
}
.el-input-search input {
  flex: 1; background: transparent; border: 0; outline: 0;
  color: var(--el-text); font-size: 13px;
}

/* Toggle switch */
.el-toggle {
  position: relative;
  width: 40px; height: 24px;
  border-radius: 12px;
  background: var(--el-hairline);
  cursor: pointer;
  transition: background var(--el-dur-base) var(--el-ease);
}
.el-toggle::after {
  content: "";
  position: absolute; top: 2px; left: 2px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #6e6e6e;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  transition: transform var(--el-dur-base) var(--el-ease),
              background var(--el-dur-base) var(--el-ease);
}
.el-toggle.el-is-on,
.el-toggle[aria-checked="true"] {
  background: var(--el-grad-gold);
}
.el-toggle.el-is-on::after,
.el-toggle[aria-checked="true"]::after {
  transform: translateX(16px);
  background: var(--el-bg);
}

/* Checkbox */
.el-checkbox {
  width: 18px; height: 18px;
  border-radius: 5px;
  border: 1px solid var(--el-hairline);
  background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.el-checkbox.el-is-on {
  background: var(--el-gold);
  border-color: var(--el-gold-dark);
  color: var(--el-bg);
}


/* ═══════════════════════════════════════════════════════════════
   8. NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

/* Top header (mobile / web) */
.el-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 0.5px solid var(--el-hairline);
  background: var(--el-bg);
}

/* Bottom nav (mobile) */
.el-bottom-nav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: calc(70px + var(--el-safe-bottom));
  padding: 10px 14px var(--el-safe-bottom);
  background: var(--el-bg-overlay);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 0.5px solid var(--el-hairline);
  display: flex;
  align-items: flex-start;
  z-index: var(--el-z-sticky);
}

.el-bottom-nav__item {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  color: var(--el-text-dim);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  padding-top: 6px;
}
.el-bottom-nav__item.el-is-active { color: var(--el-gold); }
.el-bottom-nav__item.el-is-active::before {
  content: "";
  position: absolute;
  top: -2px; left: 50%; transform: translateX(-50%);
  width: 14px; height: 2px; background: var(--el-gold); border-radius: 1px;
}
.el-bottom-nav__label {
  font-size: 9.5px;
  font-family: var(--el-font-display);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Sidebar (tablet / desktop) */
.el-sidebar {
  width: 230px;
  background: #0A0A0A;
  border-right: 0.5px solid var(--el-hairline);
  padding: 40px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.el-sidebar__group-label {
  padding: 0 16px 6px;
  font-size: 9.5px;
  color: var(--el-text-dim);
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.el-sidebar__item {
  height: 46px;
  padding: 0 16px;
  border-radius: var(--el-radius-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--el-text-muted);
  position: relative;
  cursor: pointer;
  border: 0.5px solid transparent;
  text-decoration: none;
  transition: var(--el-transition);
}
.el-sidebar__item:hover { color: var(--el-text); }
.el-sidebar__item.el-is-active {
  background: rgba(238,200,139,0.10);
  border-color: var(--el-hairline-gold);
  color: var(--el-gold);
}
.el-sidebar__item.el-is-active::before {
  content: "";
  position: absolute; left: -16px; top: 10px; bottom: 10px; width: 3px;
  background: var(--el-gold); border-radius: 2px;
  box-shadow: 0 0 8px var(--el-gold);
}
.el-sidebar__label {
  flex: 1;
  font-family: var(--el-font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Tabs (filter chips) */
.el-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.el-tabs::-webkit-scrollbar { display: none; }

.el-tab {
  padding: 7px 12px;
  border-radius: var(--el-radius-pill);
  background: transparent;
  border: 0.5px solid var(--el-hairline);
  color: var(--el-text-muted);
  font-family: var(--el-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--el-transition);
}
.el-tab:hover { color: var(--el-text); border-color: var(--el-gold-dim); }
.el-tab.el-is-active {
  background: var(--el-gold);
  color: var(--el-bg);
  border-color: var(--el-gold);
}


/* ═══════════════════════════════════════════════════════════════
   9. BUSINESS COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

/* Cart item (ligne panier) */
.el-cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  align-items: center;
  border-bottom: 0.5px solid var(--el-hairline);
}
.el-cart-item__photo {
  width: 52px; height: 52px;
  border-radius: 9px;
  flex-shrink: 0;
  background: var(--el-grad-surface);
  border: 0.5px solid var(--el-hairline-gold);
}
.el-cart-item__body { flex: 1; min-width: 0; }
.el-cart-item__name {
  font-family: var(--el-font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--el-text);
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.el-cart-item__unit {
  font-size: 11px;
  color: var(--el-text-muted);
  margin-top: 2px;
}
.el-cart-item__total {
  font-family: var(--el-font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--el-gold);
  letter-spacing: 0.04em;
}

/* Quantity selector  - / n / + */
.el-qty {
  display: inline-flex;
  align-items: center;
  height: 52px;
  border: 0.5px solid var(--el-hairline-gold);
  border-radius: var(--el-radius-xl);
  padding: 0 6px;
  background: var(--el-bg-2);
}
.el-qty--sm {
  height: 26px;
  padding: 0;
  border-radius: 8px;
  border-color: var(--el-hairline);
}
.el-qty__btn {
  width: 36px; height: 36px;
  border-radius: var(--el-radius-md);
  border: none;
  background: transparent;
  color: var(--el-gold);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: var(--el-transition);
}
.el-qty--sm .el-qty__btn { width: 26px; height: 26px; border-radius: 6px; }

.el-qty__btn:hover { background: var(--el-gold-faint); }
.el-qty__btn--plus {
  background: var(--el-grad-gold);
  color: var(--el-bg);
}
.el-qty__value {
  width: 32px;
  text-align: center;
  font-family: var(--el-font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--el-text);
  letter-spacing: 0.04em;
}
.el-qty--sm .el-qty__value { width: 24px; font-size: 12px; }

/* Status timeline (commande pipeline) */
.el-status-timeline {
  display: flex;
  align-items: center;
  gap: 4px;
}
.el-status-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.el-status-step__dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--el-hairline);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--el-text-dim);
  transition: var(--el-transition);
}
.el-status-step--done .el-status-step__dot {
  background: rgba(238,200,139,0.18);
  border-color: var(--el-gold);
  color: var(--el-gold);
}
.el-status-step--active .el-status-step__dot {
  background: var(--el-gold);
  border-color: var(--el-gold);
  color: var(--el-bg);
}
.el-status-step__label {
  font-size: 9px;
  font-family: var(--el-font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--el-text-dim);
}
.el-status-step--done  .el-status-step__label { color: var(--el-text-muted); }
.el-status-step--active .el-status-step__label { color: var(--el-gold); }
.el-status-line {
  flex: 0.5; height: 1px;
  background: var(--el-hairline);
  margin-bottom: 14px;
}
.el-status-line--done { background: var(--el-gold-dark); }

/* Push notification (banner under island) */
.el-notification {
  background: rgba(28,28,30,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 0.5px solid var(--el-hairline-gold);
  border-radius: 18px;
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  animation: el-slide-down 600ms var(--el-ease) both;
}
.el-notification__icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--el-grad-gold);
  color: var(--el-bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--el-font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.el-notification__title { font-size: 13px; font-weight: 600; color: #fff; }
.el-notification__body  { font-size: 13px; color: rgba(235,235,245,0.85); line-height: 1.25; }
.el-notification__time  { font-size: 11px; color: rgba(235,235,245,0.6); }


/* ═══════════════════════════════════════════════════════════════
  10. UTILITIES
   ═══════════════════════════════════════════════════════════════ */

/* Spacing — margin / padding (4-pt scale) */
.el-mt-0 { margin-top: 0; }       .el-mb-0 { margin-bottom: 0; }
.el-mt-1 { margin-top: 4px; }     .el-mb-1 { margin-bottom: 4px; }
.el-mt-2 { margin-top: 8px; }     .el-mb-2 { margin-bottom: 8px; }
.el-mt-3 { margin-top: 12px; }    .el-mb-3 { margin-bottom: 12px; }
.el-mt-4 { margin-top: 16px; }    .el-mb-4 { margin-bottom: 16px; }
.el-mt-5 { margin-top: 20px; }    .el-mb-5 { margin-bottom: 20px; }
.el-mt-6 { margin-top: 24px; }    .el-mb-6 { margin-bottom: 24px; }
.el-mt-8 { margin-top: 32px; }    .el-mb-8 { margin-bottom: 32px; }

.el-mx-auto { margin-left: auto; margin-right: auto; }

.el-px-3 { padding-left: 12px; padding-right: 12px; }
.el-px-4 { padding-left: 16px; padding-right: 16px; }
.el-px-5 { padding-left: 20px; padding-right: 20px; }
.el-px-6 { padding-left: 24px; padding-right: 24px; }

.el-py-2 { padding-top: 8px; padding-bottom: 8px; }
.el-py-3 { padding-top: 12px; padding-bottom: 12px; }
.el-py-4 { padding-top: 16px; padding-bottom: 16px; }
.el-py-5 { padding-top: 20px; padding-bottom: 20px; }
.el-py-6 { padding-top: 24px; padding-bottom: 24px; }

/* Flex helpers */
.el-flex          { display: flex; }
.el-inline-flex   { display: inline-flex; }
.el-flex-col      { display: flex; flex-direction: column; }
.el-flex-center   { display: flex; align-items: center; justify-content: center; }
.el-flex-between  { display: flex; align-items: center; justify-content: space-between; }
.el-flex-start    { display: flex; align-items: center; justify-content: flex-start; }
.el-flex-end      { display: flex; align-items: center; justify-content: flex-end; }
.el-flex-1        { flex: 1; }
.el-gap-1 { gap: 4px; } .el-gap-2 { gap: 8px; } .el-gap-3 { gap: 12px; }
.el-gap-4 { gap: 16px; } .el-gap-5 { gap: 20px; } .el-gap-6 { gap: 24px; }

/* Grid helpers */
.el-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.el-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.el-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

/* Text utilities */
.el-text-gold      { color: var(--el-gold); }
.el-text-gold-dim  { color: var(--el-gold-dim); }
.el-text-white     { color: var(--el-text); }
.el-text-muted     { color: var(--el-text-muted); }
.el-text-dim       { color: var(--el-text-dim); }
.el-text-success   { color: var(--el-success); }
.el-text-warning   { color: var(--el-warning); }
.el-text-danger    { color: var(--el-danger); }

.el-text-uppercase { text-transform: uppercase; }
.el-text-center    { text-align: center; }
.el-text-right     { text-align: right; }
.el-tracking-luxury { letter-spacing: var(--el-ls-luxury); }
.el-tracking-wide   { letter-spacing: var(--el-ls-wider); }

.el-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Effects — visual treatments */
.el-glass-card {
  background: rgba(28,28,30,0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 0.5px solid var(--el-hairline-gold);
  border-radius: var(--el-radius-2xl);
}

.el-gold-border {
  border: 0.5px solid var(--el-hairline-gold);
}

.el-gold-glow {
  box-shadow: var(--el-shadow-gold);
}

.el-gold-glow-lg {
  box-shadow: var(--el-shadow-gold-lg);
}

.el-hairline-top    { border-top: 0.5px solid var(--el-hairline); }
.el-hairline-bottom { border-bottom: 0.5px solid var(--el-hairline); }

/* Décoratif : règle dorée avec losange central */
.el-rule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.el-rule::before,
.el-rule::after {
  content: "";
  width: 60px; height: 1px;
  background: var(--el-gold-dark);
  opacity: 0.55;
}
.el-rule__diamond {
  width: 5px; height: 5px;
  background: var(--el-gold-dark);
  transform: rotate(45deg);
}


/* ═══════════════════════════════════════════════════════════════
  11. ANIMATIONS & TRANSITIONS
   ═══════════════════════════════════════════════════════════════ */

@keyframes el-pulse {
  0%   { box-shadow: 0 0 0 0 currentColor; }
  70%  { box-shadow: 0 0 0 7px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

@keyframes el-slide-down {
  from { transform: translateY(-30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@keyframes el-slide-up {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@keyframes el-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes el-bounce-in {
  0%   { transform: scale(0.6); opacity: 0; }
  60%  { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); }
}

@keyframes el-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes el-ring-draw {
  from { stroke-dashoffset: 300; }
  to   { stroke-dashoffset: 0; }
}

@keyframes el-check-draw {
  from { stroke-dashoffset: 60; }
  to   { stroke-dashoffset: 0; }
}

/* Animation helper classes */
.el-animate-pulse-gold {
  animation: el-pulse 1.6s infinite;
  color: var(--el-gold);
}
.el-animate-fade-in    { animation: el-fade-in 350ms var(--el-ease) both; }
.el-animate-slide-up   { animation: el-slide-up 450ms var(--el-ease) both; }
.el-animate-slide-down { animation: el-slide-down 450ms var(--el-ease) both; }
.el-animate-bounce-in  { animation: el-bounce-in 500ms var(--el-ease) both; }

/* Shimmer placeholder — loading state */
.el-skeleton {
  background: linear-gradient(
    90deg,
    var(--el-bg-2) 0%,
    var(--el-bg-3) 50%,
    var(--el-bg-2) 100%);
  background-size: 200% 100%;
  animation: el-shimmer 1.5s infinite linear;
  border-radius: var(--el-radius-md);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
  12. RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════════ */

/* Mobile-first by default — these overrides scale up */

/* Tablet (≥ 768px) */
@media (min-width: 768px) {

  /* Hide bottom nav, expose sidebar */
  .el-bottom-nav { display: none; }

  /* App shell becomes side-by-side */
  .el-app-shell {
    display: grid;
    grid-template-columns: 230px 1fr;
    min-height: 100vh;
  }

  /* Typography scales up */
  .el-title    { font-size: var(--el-fs-3xl); }
  .el-title--xl { font-size: var(--el-fs-4xl); }

  /* KPI grid 4-up */
  .el-grid-kpi {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Card padding loosens */
  .el-card { padding: var(--el-space-5); }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {

  /* Master-detail layout (orders) */
  .el-master-detail {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: var(--el-space-5);
  }

  /* Dashboard 2-col main */
  .el-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--el-space-5);
  }

  /* Product data-grid layout */
  .el-product-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--el-space-5);
  }

  .el-title--display { font-size: 64px; }
}

/* Wide (≥ 1440px) */
@media (min-width: 1440px) {
  .el-master-detail { grid-template-columns: 420px 1fr; }
  .el-app-shell     { grid-template-columns: 260px 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
  13. PRINT
   ═══════════════════════════════════════════════════════════════ */

@media print {
  .el-bottom-nav,
  .el-sidebar,
  .el-fab,
  .el-notification { display: none !important; }

  .el-app {
    background: #fff;
    color: #000;
  }
}


/* ═══════════════════════════════════════════════════════════════
  14. BASE HTML & BODY
   ═══════════════════════════════════════════════════════════════ */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--el-bg);
  color: var(--el-text);
  font-family: var(--el-font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ═══════════════════════════════════════════════════════════════
  15. UIKIT COMPONENT OVERRIDES
      UIKit fournit la structure — on reteinte chaque composant
      pour coller au thème Luxury Dark sans toucher à uikit.css.
   ═══════════════════════════════════════════════════════════════ */

/* Cards */
.uk-card-default {
  background: var(--el-bg-2);
  color: var(--el-text);
  border: 0.5px solid var(--el-hairline);
}

/* Nav */
.uk-nav-default > li > a            { color: var(--el-text-muted); }
.uk-nav-default > li.uk-active > a,
.uk-nav-default > li > a:hover      { color: var(--el-gold); }

/* Off-canvas */
.uk-offcanvas-bar {
  background: #0A0A0A;
  border-right: 0.5px solid var(--el-hairline);
}

/* Dropdowns */
.uk-dropdown {
  background: var(--el-bg-3);
  border: 0.5px solid var(--el-hairline-gold);
  border-radius: var(--el-radius-xl);
  color: var(--el-text);
  box-shadow: var(--el-shadow-xl);
}
.uk-dropdown-nav > li > a {
  color: var(--el-text-muted);
  font-family: var(--el-font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.uk-dropdown-nav > li > a:hover     { color: var(--el-gold); }
.uk-dropdown-nav .uk-nav-divider    { border-top-color: var(--el-hairline); }

/* Modals */
.uk-modal-dialog {
  background: var(--el-bg-2);
  color: var(--el-text);
  border: 0.5px solid var(--el-hairline-gold);
  border-radius: var(--el-radius-2xl);
}
.uk-modal-header,
.uk-modal-footer {
  background: transparent;
  border-color: var(--el-hairline);
}

/* Tooltips */
.uk-tooltip {
  background: var(--el-bg-3);
  color: var(--el-text-muted);
  border: 0.5px solid var(--el-hairline-gold);
  border-radius: var(--el-radius-md);
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* Notifications */
.uk-notification-message {
  background: var(--el-bg-3);
  border: 0.5px solid var(--el-hairline-gold);
  border-radius: var(--el-radius-xl);
  color: var(--el-text);
}

/* Pagination */
.uk-pagination > * > * {
  color: var(--el-text-muted);
  border-radius: var(--el-radius-md);
  border: 0.5px solid transparent;
}
.uk-pagination > .uk-active > * {
  background: var(--el-gold);
  color: var(--el-bg);
  border-color: var(--el-gold);
}
.uk-pagination > * > *:hover {
  border-color: var(--el-hairline-gold);
  color: var(--el-gold);
}

/* Tables */
.uk-table th {
  color: var(--el-text-muted);
  font-family: var(--el-font-display);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-bottom-color: var(--el-hairline);
}
.uk-table td {
  color: var(--el-text);
  border-bottom-color: var(--el-hairline);
  font-size: 13px;
}
.uk-table-hover tbody tr:hover        { background: rgba(238,200,139,0.04); }
.uk-table-striped tbody tr:nth-of-type(odd) { background: rgba(255,255,255,0.02); }

/* Badge */
.uk-badge {
  background: var(--el-gold);
  color: var(--el-bg);
  font-family: var(--el-font-display);
}

/* Progress bar */
.uk-progress               { background: var(--el-hairline); border-radius: var(--el-radius-pill); }
.uk-progress::-webkit-progress-value { background: var(--el-grad-gold); }
.uk-progress::-moz-progress-bar      { background: var(--el-grad-gold); }


/* ═══════════════════════════════════════════════════════════════
  16. LAYOUT SHELLS
   ═══════════════════════════════════════════════════════════════ */

/* ── Main app shell (sidebar + body) ─────────────────────── */
.el-layout {
  display: flex;
  min-height: 100vh;
}

.el-layout__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.el-layout__content {
  flex: 1;
  padding: 24px 32px 48px;
  overflow-y: auto;
}

/* Sticky page header strip */
.el-page-header {
  position: sticky;
  top: 0;
  z-index: var(--el-z-sticky);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 32px 32px 20px;
  background: linear-gradient(to bottom, var(--el-bg) 80%, transparent);
  gap: 16px;
}
.el-page-header__left    { flex: 1; min-width: 0; }
.el-page-header__eyebrow {
  font-family: var(--el-font-display);
  font-size: 10.5px;
  color: var(--el-gold-dim);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.el-page-header__title {
  font-family: var(--el-font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.1em;
  color: var(--el-text);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}
.el-page-header__sub {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--el-text-muted);
  letter-spacing: 0.06em;
}

/* Mobile top bar */
.el-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 0.5px solid var(--el-hairline);
  background: var(--el-bg);
  position: sticky;
  top: 0;
  z-index: var(--el-z-sticky);
}

/* Off-canvas nav wrapper */
.el-offcanvas-nav {
  padding: 32px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
}
.el-offcanvas-nav .el-sidebar__item { height: 50px; }

/* Logo block inside sidebar */
.el-sidebar__logo { padding: 6px 16px 24px; }

/* Sidebar group label */
.el-sidebar__group {
  padding: 0 16px 6px;
  font-size: 9.5px;
  color: var(--el-text-dim);
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

/* Sidebar alert badge */
.el-sidebar__badge {
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  border-radius: var(--el-radius-pill);
  background: var(--el-status-new);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--el-font-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Spacer: pushes settings group to bottom */
.el-sidebar__spacer { flex: 1; }

/* User avatar pill */
.el-user-pill {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: var(--el-radius-lg);
  background: var(--el-bg-2);
  border: 0.5px solid var(--el-hairline);
  display: flex;
  align-items: center;
  gap: 10px;
}
.el-user-pill__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--el-grad-gold);
  color: var(--el-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--el-font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.el-user-pill__name {
  font-size: 12px;
  color: var(--el-text);
  font-weight: 600;
  line-height: 1.2;
}
.el-user-pill__role {
  font-size: 10px;
  color: var(--el-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Dark radial texture overlay */
.el-dark-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse at 20% 0%,  rgba(238,200,139,0.08), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(238,200,139,0.06), transparent 55%);
}

/* HTMX loading indicator */
.htmx-indicator                           { opacity: 0; transition: opacity 250ms; }
.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator              { opacity: 1; }

/* Off-canvas bar sizing */
.el-offcanvas__bar { width: 280px; padding: 0; }

/* Desktop sidebar sticky positioning */
.el-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  flex-shrink: 0;
}

/* Logo wordmark — reusable across sidebar, topbar, auth */
.el-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--el-font-display);
  color: var(--el-gold);
  letter-spacing: 0.32em;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}
.el-logo__word     { padding-left: 0.32em; }
.el-logo__rule     { width: 100%; height: 1px; background: var(--el-hairline-gold); opacity: 0.55; margin: 0.18em 0; }
.el-logo__sub      { padding-left: 0.32em; font-weight: 500; opacity: 0.92; font-size: 0.38em; }
.el-logo--lg       { font-size: 28px; }
.el-logo--md       { font-size: 20px; }
.el-logo--sm       { font-size: 16px; }

/* User pill body (text stack) */
.el-user-pill__body  { flex: 1; min-width: 0; }

/* Zone cliquable du user pill (avatar + nom/rôle) → profil. Le bouton de
   déconnexion reste un lien frère, jamais imbriqué dans celui-ci. */
.el-user-pill__link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  border-radius: var(--el-radius);
  transition: background var(--el-dur-base) var(--el-ease);
}
.el-user-pill__link:hover { background: var(--el-gold-faint); text-decoration: none; }

/* Logout link inside user pill */
.el-user-pill__logout {
  color: var(--el-text-dim);
  flex-shrink: 0;
  transition: color var(--el-dur-base) var(--el-ease);
}
.el-user-pill__logout:hover { color: var(--el-status-new); }

/* Sidebar desktop: extra top margin on user pill */
.el-sidebar .el-user-pill { margin-top: 16px; }

/* Hamburger toggle button */
.el-topbar__hamburger {
  background: transparent;
  border: none;
  color: var(--el-text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color var(--el-dur-fast) var(--el-ease);
}
.el-topbar__hamburger:hover { color: var(--el-text); }

/* Topbar right action group */
.el-topbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Bell notification link */
.el-topbar__bell {
  position: relative;
  color: var(--el-text-muted);
  transition: color var(--el-dur-fast) var(--el-ease);
}
.el-topbar__bell:hover { color: var(--el-text); }

/* Red dot on bell */
.el-topbar__bell-dot {
  position: absolute;
  top: -3px; right: -3px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--el-status-new);
  box-shadow: 0 0 0 2px var(--el-bg);
}

/* Small avatar circle (topbar) */
.el-avatar-sm {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--el-grad-gold);
  color: var(--el-bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--el-font-display);
  font-weight: 700;
  font-size: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

/* Responsive — main layout */
@media (max-width: 959px) {
  .el-sidebar           { display: none; }
  .el-layout__content   { padding: 16px 16px 100px; }
  .el-page-header       { padding: 20px 16px 14px; }
  .el-page-header__title { font-size: 22px; }
}
@media (min-width: 960px) {
  .el-topbar     { display: none; }
  .el-bottom-nav { display: none; }
}


/* ── Client layout header helpers ───────────────────────── */
.el-client-header__back {
  color: var(--el-text-muted);
  padding: 4px;
  flex-shrink: 0;
  transition: color var(--el-dur-fast) var(--el-ease);
}
.el-client-header__back:hover { color: var(--el-text); }

.el-client-header__spacer { width: 30px; }

.el-client-header__cart {
  position: relative;
  color: var(--el-text-muted);
  flex-shrink: 0;
  transition: color var(--el-dur-fast) var(--el-ease);
}
.el-client-header__cart:hover { color: var(--el-text); }

.el-client-header__cart-badge {
  position: absolute;
  top: -6px; right: -6px;
}

/* Main content layer above texture */
.el-client-content { position: relative; z-index: 1; }


/* ── Auth layout (login / split panel) ───────────────────── */
.el-auth-shell {
  display: flex;
  min-height: 100vh;
}

.el-auth-brand {
  width: 480px;
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(160deg, #1a1305 0%, #0D0D0D 60%);
  border-right: 0.5px solid var(--el-hairline);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 52px 40px;
  overflow: hidden;
}
.el-auth-brand__spotlight {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238,200,139,0.16), transparent 60%);
  pointer-events: none;
}

.el-auth-form-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
}
.el-auth-form-inner {
  width: 100%;
  max-width: 420px;
}

/* Auth brand panel inner zones */
.el-auth-brand__top    { position: relative; z-index: 1; }
.el-auth-brand__middle { position: relative; z-index: 1; }
.el-auth-brand__footer {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between;
  font-size: 10px; color: var(--el-text-dim);
  letter-spacing: 0.28em; text-transform: uppercase;
}

/* Decorative gold rule with diamond (auth brand) */
.el-auth-rule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.el-auth-rule__line   { width: 36px; height: 1px; background: var(--el-gold-dark); opacity: 0.55; }
.el-auth-rule__diamond { width: 5px; height: 5px; background: var(--el-gold-dark); transform: rotate(45deg); }

/* Auth brand tagline */
.el-auth-brand__tagline {
  font-family: var(--el-font-display);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.05;
  color: var(--el-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

/* Auth brand body copy */
.el-auth-brand__copy {
  margin-top: 20px;
  font-size: 14px;
  color: var(--el-text-muted);
  line-height: 1.6;
  max-width: 340px;
}

/* Mobile logo block in auth form panel */
.el-auth-mobile-logo {
  text-align: center;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .el-auth-brand      { display: none; }
  .el-auth-form-panel { align-items: flex-start; padding-top: 60px; }
}


/* ── Client layout (QR code interface, mobile-first) ─────── */
.el-client-shell {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.el-client-content {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: calc(80px + var(--el-safe-bottom));
}

.el-client-header {
  position: sticky;
  top: 0;
  z-index: var(--el-z-sticky);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(12px + var(--el-safe-top)) 20px 12px;
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--el-hairline);
}

/* Cart floating action button */
.el-cart-fab {
  position: fixed;
  bottom: calc(20px + var(--el-safe-bottom));
  right: 20px;
  z-index: var(--el-z-overlay);
}
.el-cart-fab a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--el-grad-gold);
  color: var(--el-bg);
  border-radius: var(--el-radius-3xl);
  padding: 14px 20px;
  font-family: var(--el-font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: var(--el-shadow-gold-fab);
  transition: transform var(--el-dur-fast) var(--el-ease);
}
.el-cart-fab a:hover  { transform: translateY(-2px); }
.el-cart-fab a:active { transform: translateY(0); }
.el-cart-fab__count {
  min-width: 20px;
  height: 20px;
  border-radius: var(--el-radius-pill);
  background: var(--el-bg);
  color: var(--el-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  padding: 0 4px;
}

/* Background texture for client pages */
.el-client-texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse at 50% 0%,   rgba(238,200,139,0.10), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(238,200,139,0.06), transparent 55%);
}


/* ═══════════════════════════════════════════════════════════════
  17. DASHBOARD COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

/* Top-product row */
.el-top-product__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.el-top-product__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.el-rank {
  flex-shrink: 0;
  min-width: 18px;
  color: var(--el-gold-dim);
  font-family: var(--el-font-display);
  font-size: var(--el-fs-xs);
  letter-spacing: 0.32em;
}

/* Quick-access tile (dashboard shortcuts) */
.el-quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 80px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border-radius: var(--el-radius-xl);
  transition: var(--el-transition);
}
.el-quick-link:hover {
  background: rgba(238,200,139,0.07);
  text-decoration: none;
}

/* Inline indicator group (loader + link in same flex row) */
.el-indicator-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Truncated text cell with fixed max-width */
.el-caption-cell {
  display: block;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* ── Lignes de commandes (partials/_commandes_rows.php) ───── */
.cmd-row {
  display:flex; align-items:center; gap:14px;
  padding:16px 20px;
  transition:background .12s;
}
.cmd-row:hover { background:rgba(255,255,255,.02); }
.cmd-row--border { border-top:0.5px solid var(--el-hairline); }
.cmd-row--new { border-left:3px solid var(--el-status-new); padding-left:17px; }

.cmd-table-badge {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  width:50px; height:50px; border-radius:var(--el-radius-lg);
  background:var(--el-surface); border:0.5px solid var(--el-hairline);
  color:var(--el-text-muted); flex-shrink:0; text-align:center;
}

.cmd-row__body { flex:1; min-width:0; }
.cmd-row__top  { display:flex; align-items:center; gap:10px; margin-bottom:4px; }
.cmd-order-num {
  font-family:var(--el-font-display); font-weight:700;
  font-size:16px; letter-spacing:.04em;
}
.cmd-status-badge { font-size:10px; padding:3px 8px; }
.cmd-row__meta   { font-size:12px; color:var(--el-text-muted); margin-bottom:3px; }
.cmd-row__assign { font-size:12px; color:var(--el-text-dim); }

.cmd-row__right { display:flex; flex-direction:column; align-items:flex-end; gap:6px; flex-shrink:0; }
.cmd-amount { font-family:var(--el-font-display); font-weight:700; font-size:17px; }
.cmd-detail-link { font-size:12px; color:var(--el-gold); text-decoration:none; }
.cmd-detail-link:hover { text-decoration:underline; }

/* ── Alertes flash ─────────────────────────────────────────── */
.el-alert {
  padding: 10px 16px;
  border-radius: var(--el-radius);
  font-size: 13px;
  line-height: 1.5;
}
.el-alert--success {
  background: rgba(80, 200, 120, .1);
  border: 1px solid rgba(80, 200, 120, .3);
  color: #50c878;
}
.el-alert--error {
  background: rgba(220, 60, 60, .1);
  border: 1px solid rgba(220, 60, 60, .3);
  color: #e05555;
}

/* ── État — Rapport & statistiques ────────────────────────────── */
.etat-ca-card {
  background: linear-gradient(135deg, var(--el-surface), var(--el-bg-2));
  border: 1px solid var(--el-hairline-gold);
  border-radius: var(--el-radius);
  padding: 24px 20px;
  text-align: center;
}
.etat-ca-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--el-gold-dim);
  margin-bottom: 8px;
}
.etat-ca-amount {
  font-family: var(--el-font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--el-gold);
  line-height: 1;
  letter-spacing: .02em;
}
.etat-ca-nb {
  font-size: 12px;
  color: var(--el-text-muted);
  margin-top: 8px;
}

.etat-stat-block { margin-top: 0; }
.etat-stat-title {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--el-text-dim);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--el-hairline);
  margin-bottom: 2px;
}
.etat-stat-row {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--el-hairline);
  font-size: 13px;
  gap: 6px;
}
.etat-stat-row:last-child { border-bottom: none; }
.etat-stat-rank {
  font-family: var(--el-font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--el-gold-dim);
  width: 18px;
  flex-shrink: 0;
  text-align: center;
}
.etat-stat-name { flex: 1; color: var(--el-text); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.etat-stat-val  { font-weight: 600; color: var(--el-gold); white-space: nowrap; font-size: 13px; text-align: right; }
.etat-stat-sub  { font-size: 11px; color: var(--el-text-dim); text-align: right; }
.etat-stat-empty { font-size: 12px; color: var(--el-text-dim); margin: 8px 0 0; }

/* Tableau des commandes */
.etat-orders-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.etat-orders-table th {
  text-align: left;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--el-text-dim);
  padding: 10px 14px;
  border-bottom: 1px solid var(--el-hairline);
  font-weight: 600;
}
.etat-orders-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--el-hairline);
  color: var(--el-text-muted);
  vertical-align: middle;
}
.etat-orders-table tr:last-child td { border-bottom: none; }
.etat-orders-table tbody tr:hover td { background: var(--el-bg-2); }
.etat-order-link {
  font-family: var(--el-font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--el-text);
  text-decoration: none;
  letter-spacing: .04em;
}
.etat-order-link:hover { color: var(--el-gold); }

/* État vide */
.etat-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--el-text-dim);
  font-size: 13px;
}
.etat-empty svg { display: block; margin: 0 auto 12px; }

/* Inputs compacts dans le formulaire de filtre */
.el-input--sm { font-size: 13px; padding: 6px 10px; height: auto; }
.el-label--sm { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--el-text-dim); display: block; margin-bottom: 4px; }
.el-btn--sm   { font-size: 12px; padding: 7px 16px; }

/* ─────────────────────────────────────────────────────────────
   Boutons d'action dans les tableaux admin (icon-only 30×30)
   ───────────────────────────────────────────────────────────── */
.el-tbl-btn {
  width: 30px; height: 30px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--el-radius-sm);
  background: transparent;
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s;
  flex-shrink: 0;
  text-decoration: none;
}
.el-tbl-btn--edit {
  border: 0.5px solid var(--el-hairline-gold);
  color: var(--el-gold);
}
.el-tbl-btn--dupe {
  border: 0.5px solid var(--el-hairline);
  color: var(--el-text-muted);
}
.el-tbl-btn--del {
  border: 0.5px solid rgba(230,107,90,.35);
  color: var(--el-status-new);
}
.el-tbl-btn--edit:hover { background: var(--el-gold-faint); }
.el-tbl-btn--dupe:hover { color: var(--el-gold); border-color: var(--el-hairline-gold); background: var(--el-gold-faint); }
.el-tbl-btn--del:hover  { background: var(--el-status-new-bg); }

/* Override .el-app a specificity (0-1-1) pour les boutons <a> */
.el-app a.el-tbl-btn--edit { color: var(--el-gold); text-decoration: none; }
.el-app a.el-tbl-btn--dupe { color: var(--el-text-muted); text-decoration: none; }
.el-app a.el-tbl-btn--edit:hover { color: var(--el-gold); text-decoration: none; }
.el-app a.el-tbl-btn--dupe:hover { color: var(--el-gold); text-decoration: none; }

/* Même correctif pour les boutons .el-btn-* utilisés en <a> (ex: "+ Nouveau
   produit" en tête de liste, liens "Annuler") : sans ça, .el-app a (couleur
   dorée) l'emporte sur .el-btn-gold et donne un texte doré illisible sur
   fond doré. */
.el-app a.el-btn-gold,
.el-app a.el-btn-gold:hover         { color: var(--el-bg); text-decoration: none; }
.el-app a.el-btn-outline-gold,
.el-app a.el-btn-outline-gold:hover { color: var(--el-gold); text-decoration: none; }
.el-app a.el-btn-ghost              { color: var(--el-text-muted); text-decoration: none; }
.el-app a.el-btn-ghost:hover        { color: var(--el-gold); text-decoration: none; }
.el-app a.el-btn-danger,
.el-app a.el-btn-danger:hover       { color: #fff; text-decoration: none; }
.el-app a.el-user-pill__link,
.el-app a.el-user-pill__link:hover   { color: inherit; text-decoration: none; }

/* ─────────────────────────────────────────────────────────────
   Thumbnails tableaux admin
   ───────────────────────────────────────────────────────────── */
.el-img-thumb {
  width: 32px; height: 32px;
  border-radius: var(--el-radius-sm);
  object-fit: cover;
  border: 1px solid var(--el-border);
  flex-shrink: 0;
  display: block;
}
.el-img-thumb-wrap {
  width: 32px; height: 32px;
  border-radius: var(--el-radius-sm);
  background: var(--el-surface);
  border: 1px solid var(--el-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────
   Upload image
   ───────────────────────────────────────────────────────────── */
.el-upload-zone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 16px;
  border: 1px dashed var(--el-border);
  border-radius: var(--el-radius-lg);
  background: var(--el-bg);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  text-align: center;
}
.el-upload-zone:hover,
.el-upload-zone:focus-within { border-color: var(--el-gold); background: rgba(238,200,139,.04); }
.el-upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.el-upload-zone__icon { color: var(--el-text-muted); }
.el-upload-zone__label { font-size: 13px; color: var(--el-text-muted); }
.el-upload-zone__hint  { font-size: 11px; color: var(--el-text-dim); letter-spacing: .03em; }

.el-img-preview {
  position: relative;
  display: inline-block;
  border-radius: var(--el-radius-lg);
  overflow: hidden;
  border: 1px solid var(--el-border);
  max-width: 180px;
}
.el-img-preview img { display: block; width: 100%; height: auto; object-fit: cover; }
.el-img-preview__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 4px 8px;
  background: rgba(13,13,13,.75);
  font-size: 10px;
  color: var(--el-text-muted);
  text-align: center;
  letter-spacing: .05em;
}

/* ═══════════════════════════════════════════════════════════════
   END — Elite Lounge Design System v1.0
   ═══════════════════════════════════════════════════════════════ */
