/* ══════════════════════════════════════════
   scrollbar.css — Kokibee
   Scrollbar custom : thème doré / dark
   ══════════════════════════════════════════ */

/* ─── WEBKIT (Chrome, Edge, Safari) ─── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black, #0a0a08);
  border-left: 1px solid rgba(212, 168, 67, 0.06);
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 168, 67, 0.25);
  border-radius: 0;
  transition: background 0.2s;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 168, 67, 0.6);
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.4);
}

::-webkit-scrollbar-thumb:active {
  background: var(--gold, #d4a843);
}

::-webkit-scrollbar-corner {
  background: var(--black, #0a0a08);
}

/* ─── FIREFOX ─── */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 168, 67, 0.25) var(--black, #0a0a08);
}

/* ─── SIDEBAR ─── */
.sidebar-menu::-webkit-scrollbar {
  width: 4px;
}

.sidebar-menu::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar-menu::-webkit-scrollbar-thumb {
  background: rgba(212, 168, 67, 0.15);
}

.sidebar-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 168, 67, 0.4);
}

.sidebar-menu {
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 168, 67, 0.15) transparent;
}
