/* =====================================================================
   FNSHOP · NAVBAR CSS — copie verbatim depuis index.html pour garantir
   une barre de navigation 100% identique sur telecharger.html.
   (Le refonte blanc/liseré vient de fnshop-v2.css via #fn-navbar.)
   ===================================================================== */
:root{ --foreground:#ffffff; --muted-foreground:#8b8b96; --primary:#b8975a; --secondary:#c9a96e; }

/* --- variables or (:root d'index) --- */
  :root {
    --g:   #b8975a;                   /* or champagne — accent primaire  */
    --gl:  #cba96e;                   /* or clair                        */
    --gd:  #9a7a42;                   /* or sombre                       */
    --gx:  rgba(184,151,90,0.13);     /* surface or                      */
    --gb:  rgba(184,151,90,0.20);     /* bordure or au survol            */
    --bg0: #030407;                   /* fond obsidienne                 */
    --bd:  rgba(255,255,255,0.055);   /* bordure neutre                  */
    --t1:  #f0ece4;                   /* texte principal (blanc chaud)   */
    --t2:  rgba(240,236,228,0.45);    /* texte secondaire                */
    --t3:  rgba(240,236,228,0.18);    /* texte discret                   */
  }

/* --- navbar base --- */
  /* Wrapper positionné : bas sur mobile, haut sur desktop */
  .fn-navbar {
    position: fixed;
    left: 50%; transform: translateX(-50%);
    top: 12px; bottom: auto;
    z-index: 1000;
    /* Fix encoche / Dynamic Island (PWA standalone) : marge de sécurité dynamique. */
    padding-top: max(15px, env(safe-area-inset-top));
  }
  @media (min-width: 768px) {
    .fn-navbar { top: 24px; }
  }

  /* Pilule glassmorphism */
  .fn-navbar-pill {
    position: relative;
    display: flex; align-items: center; gap: 2px;
    padding: 4px;
    border-radius: 9999px;
    background: rgba(7,6,15,0.55);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    box-shadow: 0 8px 32px rgba(0,0,0,0.50), inset 0 1px 0 rgba(255,255,255,0.06);
    overflow: visible;
  }

  /* Indicateur glissant (background de l'onglet actif) */
  .fn-nav-indicator {
    position: absolute; top: 4px; height: calc(100% - 8px);
    border-radius: 9999px;
    background: rgba(184,151,90,0.12);
    pointer-events: none; z-index: 0;
    transition: left 0.38s cubic-bezier(0.22,1,0.36,1),
                width 0.38s cubic-bezier(0.22,1,0.36,1);
  }

  /* Lampe lumineuse (desktop : au-dessus, mobile : en-dessous) */
  .fn-nav-lamp {
    position: absolute;
    transform: translateX(-50%);
    top: -3px; bottom: auto;
    pointer-events: none; z-index: 20;
    transition: left 0.35s cubic-bezier(0.22,1,0.36,1);
  }
  .fn-nav-lamp::before {
    content: '';
    position: absolute;
    left: 50%; top: 0; transform: translateX(-50%);
    width: 32px; height: 3px;
    background: #b8975a; border-radius: 0 0 4px 4px;
    box-shadow: 0 0 10px 2px rgba(184,151,90,0.42),
                0 0 24px 6px rgba(184,151,90,0.16);
  }
  .fn-nav-lamp::after {
    content: '';
    position: absolute;
    left: 50%; top: -12px; transform: translateX(-50%);
    width: 48px; height: 20px;
    background: rgba(184,151,90,0.16);
    border-radius: 50%; filter: blur(10px);
  }
  /* Logo dans la navbar */
  .fn-nav-logo {
    display: flex; align-items: center; flex-shrink: 0;
    padding: 0 12px 0 4px;
    border-right: 1px solid rgba(255,255,255,0.07);
    margin-right: 4px; text-decoration: none;
    transition: opacity 0.2s;
  }
  .fn-nav-logo:hover { opacity: 0.72; }
  .fn-nav-logo img {
    display: block; height: 26px; width: auto;
    user-select: none; pointer-events: none;
  }
  @media (max-width: 767px) {
    .fn-nav-logo img { height: 22px; }
    .fn-nav-logo { padding: 0 8px 0 2px; }
  }

  /* Boutons d'onglets */
  .fn-nav-btn {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    padding: 8px 20px; border-radius: 9999px;
    border: none; background: none; cursor: pointer;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600;
    color: rgba(255,255,255,0.55);
    transition: color 0.25s ease, transform 0.2s cubic-bezier(0.22,1,0.36,1);
    white-space: nowrap;
  }
  .fn-nav-btn:hover     { color: #cba96e; }
  .fn-nav-btn.is-active { color: #b8975a; }
  .fn-nav-btn:active    { transform: scale(0.93); transition-duration: 0.08s, 0.08s; }

  /* Desktop : texte visible, icône masquée */
  .fn-nav-text { display: inline; }
  .fn-nav-icon { display: none; align-items: center; justify-content: center; }
  .fn-nav-icon svg { width: 18px; height: 18px; stroke-width: 2.5; }

  /* Mobile : icône visible, texte masqué */
  @media (max-width: 767px) {
    .fn-nav-text { display: none; }
    .fn-nav-icon { display: flex; }
    .fn-nav-btn  { padding: 10px 14px; }
  }

/* --- override thème navbar --- */
  /* ── 2. Navbar ── */
  .fn-navbar-pill {
    background: rgba(3,4,7,0.78) !important;
    border-color: rgba(255,255,255,0.06) !important;
    box-shadow: 0 6px 28px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04) !important;
  }
  .fn-nav-indicator  { background: rgba(184,151,90,0.11) !important; }
  .fn-nav-lamp::before {
    background: var(--g) !important;
    box-shadow: 0 0 10px 2px rgba(184,151,90,0.42),
                0 0 24px 6px rgba(184,151,90,0.16) !important;
  }
  .fn-nav-lamp::after   { background: rgba(184,151,90,0.16) !important; }
  .fn-nav-btn:hover     { color: var(--gl) !important; }
  .fn-nav-btn.is-active { color: var(--g) !important; }

/* --- bouton panier --- */
  .fn-cart-btn {
    position: relative; display: flex; align-items: center; justify-content: center;
    padding: 8px 12px; border-radius: 9999px; flex-shrink: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer; color: rgba(255,255,255,0.50);
    transition:
      background   .30s cubic-bezier(.22,1,.36,1),
      border-color .30s cubic-bezier(.22,1,.36,1),
      color        .25s cubic-bezier(.22,1,.36,1),
      box-shadow   .30s cubic-bezier(.22,1,.36,1),
      transform    .22s cubic-bezier(.22,1,.36,1);
  }
  /* Reflet interne — aspect vitré ultra-subtil */
  .fn-cart-btn::before {
    content: ''; position: absolute; inset: 0; border-radius: 9999px; pointer-events: none;
    background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, transparent 55%);
  }
  .fn-cart-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(184,151,90,0.34);
    color: rgba(255,255,255,0.92);
    box-shadow: 0 0 0 4px rgba(184,151,90,0.07), 0 6px 20px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.10);
    transform: translateY(-1px);
  }
  .fn-cart-btn:active {
    transform: translateY(0) scale(0.93);
    transition-duration: .10s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.35);
  }
  /* État panier non-vide — halo doré très discret */
  .fn-cart-btn.has-items { border-color: rgba(184,151,90,0.18); }
  .fn-cart-btn.has-items:hover {
    border-color: rgba(184,151,90,0.44);
    box-shadow: 0 0 0 4px rgba(184,151,90,0.08), 0 8px 28px rgba(0,0,0,0.44), 0 0 30px rgba(184,151,90,0.09), inset 0 1px 0 rgba(255,255,255,0.10);
  }
  .fn-cart-btn svg {
    width: 19px; height: 19px;
    transition: transform .25s cubic-bezier(.22,1,.36,1);
  }
  .fn-cart-btn:hover svg { transform: scale(1.08) translateY(-0.5px); }

  /* ══ BADGE COMPTEUR — OR CHAMPAGNE MINIMAL ══════════════════════════ */
  .fn-cart-badge {
    position: absolute; top: -5px; right: -5px;
    min-width: 16px; height: 16px; padding: 0 3.5px; border-radius: 999px;
    background: linear-gradient(140deg, #cba96e 0%, #b8975a 55%, #9a7a42 100%);
    color: #060401;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 8.5px; font-weight: 900; letter-spacing: -.03em; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid rgba(3,4,7,0.90);
    box-shadow: 0 2px 8px rgba(184,151,90,0.38), 0 0 0 1px rgba(184,151,90,0.12);
    pointer-events: none; transform-origin: center;
    transition: opacity .28s cubic-bezier(.22,1,.36,1), transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s;
  }
  /* Panier vide — badge intégré discrètement (sans le supprimer) */
  .fn-cart-badge.is-zero {
    opacity: 0.35; transform: scale(0.78); box-shadow: none;
  }
  /* Pulse à l'ajout d'un article — classe .pop ajoutée par le JS existant */
  .fn-cart-badge.pop { animation: fn-badge-pop .44s cubic-bezier(.22,1,.36,1) both; }
  @keyframes fn-badge-pop {
    0%   { transform: scale(0.55); opacity: .4; }
    50%  { transform: scale(1.62); opacity: 1;  }
    75%  { transform: scale(0.90); opacity: 1;  }
    100% { transform: scale(1);    opacity: 1;  }
  }

/* --- compte / dropdown nav --- */
  .fn-acc-nav-wrap { display: flex; align-items: center; }
  .fn-acc-trigger  { position: relative; display: flex; align-items: center; }

  /* ── Bouton "Mon Compte" dans la navbar ── */
  .fn-acc-btn {
    position: relative; z-index: 1;
    display: flex; align-items: center; gap: 7px;
    padding: 6px 12px 6px 6px; border-radius: 9999px;
    border: 1px solid rgba(184,151,90,0.20);
    background: rgba(184,151,90,0.07);
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700;
    color: #c9a96e; white-space: nowrap;
    transition: background 0.25s, border-color 0.25s, color 0.25s,
                transform 0.2s cubic-bezier(.22,1,.36,1);
  }
  .fn-acc-btn:hover { background: rgba(184,151,90,0.14); border-color: rgba(184,151,90,0.36); }
  .fn-acc-btn:active { transform: scale(0.95); }

  /* Avatar initial */
  .fn-acc-avatar {
    width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #c9a96e 0%, #9a7a42 100%);
    color: #060401; font-weight: 900; font-size: 11px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 10px rgba(184,151,90,0.35);
  }
  .fn-acc-name { }
  .fn-acc-chevron {
    width: 13px; height: 13px; flex-shrink: 0;
    color: rgba(201,169,110,0.65);
    transition: transform 0.28s cubic-bezier(.22,1,.36,1);
  }
  .fn-acc-trigger.is-open .fn-acc-chevron { transform: rotate(180deg); }

  /* Mobile : masquer le nom et le chevron, afficher avatar seul */
  @media (max-width: 767px) {
    .fn-acc-name, .fn-acc-chevron { display: none; }
    .fn-acc-btn { padding: 9px 10px; }
  }

  /* ── Dropdown glassmorphism ── */
  .fn-acc-dropdown {
    position: absolute; top: calc(100% + 12px); right: 0;
    min-width: 210px;
    background: rgba(7,6,16,0.86);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
    box-shadow: 0 28px 72px rgba(0,0,0,0.66), inset 0 1px 0 rgba(255,255,255,0.05);
    padding: 8px;
    z-index: 1200;
    /* État caché */
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
    pointer-events: none;
    transform-origin: top right;
    transition: opacity 0.22s cubic-bezier(.22,1,.36,1),
                transform 0.22s cubic-bezier(.22,1,.36,1);
  }
  .fn-acc-trigger.is-open .fn-acc-dropdown {
    opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
  }
  .fn-acc-dd-header { padding: 10px 12px 13px; }
  .fn-acc-dd-name  { font-weight: 800; font-size: 13px; color: #fff; letter-spacing: -0.01em; }
  .fn-acc-dd-email { font-size: 11px; color: rgba(255,255,255,0.36); margin-top: 2px; }
  .fn-acc-dd-sep   { height: 1px; background: rgba(255,255,255,0.07); margin: 4px 0; }

  /* Items du dropdown */
  .fn-acc-item {
    display: flex; align-items: center; width: 100%;
    padding: 10px 13px; border-radius: 10px;
    border: none; background: none; cursor: pointer;
    font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.68); text-align: left;
    transition: background 0.16s, color 0.16s, transform 0.15s cubic-bezier(.22,1,.36,1);
  }
  .fn-acc-item:hover { background: rgba(255,255,255,0.06); color: #fff; transform: translateX(3px); }
  .fn-acc-item:active { transform: translateX(3px) scale(0.97); }
  .fn-acc-item--danger { color: rgba(252,165,165,0.72); }
  .fn-acc-item--danger:hover {
    background: rgba(239,68,68,0.09); color: #fca5a5; transform: translateX(3px);
  }

/* --- cloche + notifications --- */
  .fn-bell-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }
  .fn-bell-btn {
    position: relative; display: flex; align-items: center; justify-content: center;
    padding: 8px 10px; border-radius: 9999px; flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.04);
    cursor: pointer; color: rgba(255,255,255,0.45);
    transition:
      background   .25s cubic-bezier(.22,1,.36,1),
      border-color .25s cubic-bezier(.22,1,.36,1),
      color        .25s cubic-bezier(.22,1,.36,1),
      box-shadow   .30s cubic-bezier(.22,1,.36,1),
      transform    .20s cubic-bezier(.22,1,.36,1);
  }
  .fn-bell-btn::before {
    content: ''; position: absolute; inset: 0; border-radius: 9999px; pointer-events: none;
    background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, transparent 55%);
  }
  .fn-bell-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(184,151,90,0.30);
    color: rgba(255,255,255,0.85);
    box-shadow: 0 0 0 4px rgba(184,151,90,0.07), 0 6px 20px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.08);
  }
  .fn-bell-btn:active { transform: scale(0.93); transition-duration: .08s; box-shadow: 0 1px 4px rgba(0,0,0,0.30); }
  .fn-bell-btn.has-unread {
    border-color: rgba(184,151,90,0.20);
    color: rgba(255,255,255,0.65);
  }
  .fn-bell-btn.has-unread:hover {
    border-color: rgba(184,151,90,0.46);
    box-shadow: 0 0 0 4px rgba(184,151,90,0.08), 0 8px 28px rgba(0,0,0,0.42), 0 0 30px rgba(184,151,90,0.10), inset 0 1px 0 rgba(255,255,255,0.08);
  }
  .fn-bell-btn svg {
    width: 17px; height: 17px; flex-shrink: 0;
    transition: transform .30s cubic-bezier(.22,1,.36,1);
  }
  .fn-bell-btn:hover svg { transform: rotate(-8deg) scale(1.10); }
  @media (max-width: 767px) { .fn-bell-btn { padding: 10px 10px; } }

  .fn-bell-badge {
    position: absolute; top: -5px; right: -5px;
    min-width: 16px; height: 16px; padding: 0 3.5px; border-radius: 999px;
    background: linear-gradient(140deg, #b8975a 0%, #c9a96e 55%, #c9a96e 100%);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 8.5px; font-weight: 900; letter-spacing: -.02em; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid rgba(3,4,7,0.92);
    box-shadow: 0 2px 8px rgba(184,151,90,0.55), 0 0 0 1px rgba(184,151,90,0.22);
    pointer-events: none; transform-origin: center;
    opacity: 0; transform: scale(0);
    transition: opacity .28s cubic-bezier(.22,1,.36,1), transform .28s cubic-bezier(.22,1,.36,1);
  }
  .fn-bell-badge.is-visible { opacity: 1; transform: scale(1); }
  .fn-bell-badge.pop { animation: fn-bell-pop .46s cubic-bezier(.22,1,.36,1) both; }
  @keyframes fn-bell-pop {
    0%   { transform: scale(0.40); opacity: .35; }
    55%  { transform: scale(1.58); opacity: 1;   }
    78%  { transform: scale(0.88); opacity: 1;   }
    100% { transform: scale(1);    opacity: 1;   }
  }

  /* Boîte de notifications — MODALE CENTRÉE au milieu de l'écran (fix placement :
     plus jamais coupée en haut). Déplacée dans <body> par JS pour un centrage fiable. */
  .fn-notif-panel {
    position: fixed; top: 50%; left: 50%;
    width: min(380px, calc(100vw - 32px));
    max-height: min(72vh, 580px);
    display: flex; flex-direction: column;
    background: rgba(11,9,6,0.985);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border: 1px solid rgba(184,151,90,0.20);
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.85), 0 8px 28px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
    z-index: 9999; overflow: hidden;
    opacity: 0; transform: translate(-50%, -48%) scale(0.96); pointer-events: none;
    transform-origin: center;
    transition: opacity .26s cubic-bezier(.22,1,.36,1), transform .26s cubic-bezier(.22,1,.36,1);
  }
  .fn-notif-panel::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; pointer-events: none;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(184,151,90,0.55) 28%,
      rgba(201,169,110,0.88) 52%,
      rgba(184,151,90,0.50) 76%,
      transparent 100%);
  }
  .fn-notif-panel.is-open {
    opacity: 1; transform: translate(-50%, -50%) scale(1); pointer-events: auto;
  }
  .fn-notif-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px 13px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
  }
  .fn-notif-head-title {
    font-size: 13px; font-weight: 800; letter-spacing: -0.02em;
    color: rgba(255,255,255,0.92);
  }
  .fn-notif-mark-all {
    background: none; border: none; cursor: pointer;
    font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 600;
    color: rgba(184,151,90,0.82); padding: 3px 0; line-height: 1;
    transition: color .2s ease;
  }
  .fn-notif-mark-all:hover { color: #c9a96e; }
  .fn-notif-body {
    flex: 1; min-height: 0; overflow-y: auto; padding: 10px;
    scrollbar-width: thin; scrollbar-color: rgba(184,151,90,0.20) transparent;
  }
  .fn-notif-body::-webkit-scrollbar { width: 3px; }
  .fn-notif-body::-webkit-scrollbar-track { background: transparent; }
  .fn-notif-body::-webkit-scrollbar-thumb { background: rgba(184,151,90,0.22); border-radius: 99px; }
  .fn-notif-empty {
    padding: 32px 14px; text-align: center;
    font-size: 12px; color: rgba(255,255,255,0.25); line-height: 1.65;
  }
  .fn-notif-card {
    position: relative; display: flex; gap: 10px; align-items: flex-start;
    padding: 11px 13px 11px 14px; margin-bottom: 5px; border-radius: 13px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.022);
    cursor: pointer;
    transition: background .22s ease, border-color .22s ease, opacity .30s ease;
  }
  .fn-notif-card:last-child { margin-bottom: 0; }
  .fn-notif-card:hover { background: rgba(255,255,255,0.044); border-color: rgba(255,255,255,0.10); }
  .fn-notif-card:focus-visible { outline: 2px solid rgba(184,151,90,0.60); outline-offset: 2px; }
  .fn-notif-card.is-unread {
    background: rgba(184,151,90,0.058);
    border-color: rgba(184,151,90,0.20);
    box-shadow: 0 0 0 1px rgba(184,151,90,0.08), 0 4px 14px rgba(0,0,0,0.25);
  }
  .fn-notif-card.is-unread:hover {
    background: rgba(184,151,90,0.10);
    border-color: rgba(184,151,90,0.32);
  }
  .fn-notif-card.is-read { opacity: 0.48; }
  .fn-notif-card.is-read:hover { opacity: 0.72; }
  .fn-notif-unread-dot {
    flex-shrink: 0; margin-top: 5px;
    width: 6px; height: 6px; border-radius: 50%;
    background: #b8975a;
    box-shadow: 0 0 7px rgba(184,151,90,0.90);
    transition: opacity .28s ease, transform .28s cubic-bezier(.22,1,.36,1);
  }
  .fn-notif-card.is-read .fn-notif-unread-dot { opacity: 0; transform: scale(0); }
  .fn-notif-card-inner { flex: 1; min-width: 0; }
  .fn-notif-card-title {
    font-size: 12px; font-weight: 700; line-height: 1.35;
    color: rgba(255,255,255,0.88); margin-bottom: 4px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .fn-notif-card.is-read .fn-notif-card-title { color: rgba(255,255,255,0.50); }
  .fn-notif-card-msg {
    font-size: 11px; line-height: 1.56; color: rgba(255,255,255,0.42);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .fn-notif-card-date {
    margin-top: 6px; font-size: 9.5px; font-weight: 500;
    color: rgba(255,255,255,0.22); letter-spacing: 0.02em;
  }
  /* Backdrop de la modale notifications — couvre tout l'écran, tamise + léger flou.
     Sous le panneau (9999), au-dessus du reste. */
  .fn-notif-backdrop {
    position: fixed; inset: 0; z-index: 9998;
    background: rgba(2,2,5,0.62);
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
    opacity: 0; pointer-events: none;
    transition: opacity .28s cubic-bezier(.22,1,.36,1);
  }
  .fn-notif-backdrop.is-open { opacity: 1; pointer-events: auto; }

  /* Sur très petits écrans : modale un peu plus large et plus haute, toujours centrée. */
  @media (max-width: 480px) {
    .fn-notif-panel { width: calc(100vw - 24px); max-height: 78vh; }
  }

  /* ── Pastille de notification ── */
  .fn-acc-trigger { position: relative; }
  .fn-notif-dot {
    position: absolute; top: 2px; left: 24px;
    width: 10px; height: 10px; border-radius: 50%;
    background: #34d399; border: 2px solid #030305;
    display: none; z-index: 5;
    pointer-events: none;
  }
  .fn-notif-dot.is-active {
    display: block;
    animation: fn-notif-pulse 1.8s ease-in-out infinite;
  }
  @keyframes fn-notif-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.55); }
    50%       { box-shadow: 0 0 0 5px rgba(52,211,153,0); }
  }
  /* Étape 5 — voyant vert sur l'entree "Mes commandes" (dropdown + onglet modale) */
  .fn-acc-item.has-update, .fn-acc-tab.has-update { position: relative; }
  .fn-acc-item.has-update::after, .fn-acc-tab.has-update::after {
    content: ''; position: absolute; top: 50%; right: 12px; transform: translateY(-50%);
    width: 7px; height: 7px; border-radius: 50%; background: #34d399;
    box-shadow: 0 0 8px rgba(52,211,153,0.85);
    animation: fn-notif-pulse 1.8s ease-in-out infinite;
  }

