/* ===== SIDEBAR CONTAINER ===== */
.sidebar {
  padding: var(--space-4) 0;
  background: #E9ECF1;
}

/* ===== MENU HAMBURGER ===== */
.hamburger-menu {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: var(--radius-md);
  margin: 0 auto var(--space-4);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  box-shadow: var(--shadow-sm);
}

.hamburger-menu:hover {
  box-shadow: var(--shadow-md);
}

.hamburger-menu i {
  color: var(--color-text-primary);
  font-size: var(--text-lg);
}

/* ===== NAVIGATION VERTICALE ===== */
.sidebar-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  width: 100%;
  align-items: center;
}

.nav-link {
  width: 60px;
  min-height: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  background: white;
  border-radius: var(--radius-md);
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  font-weight: 500;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: var(--space-2);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.nav-link i {
  font-size: var(--text-base);
  margin-bottom: 2px;
  color: var(--color-text-secondary);
  transition: color var(--transition-base);
}

.nav-link span {
  font-size: 8px;
  line-height: 1.2;
  text-align: center;
}

/* Etat actif */
.nav-link.active {
  background: white;
  color: var(--color-accent);
}

.nav-link.active i {
  color: var(--color-accent);
}

.nav-link.active::before {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 25px;
  background: var(--color-accent);
  border-radius: 3px 0 0 3px;
}

/* Etat hover */
.nav-link:hover:not(.active) {
  color: var(--color-accent);
}

.nav-link:hover:not(.active) i {
  color: var(--color-accent);
}

/* ===== ELEMENTS CACHES ===== */
.sidebar-info,
.sidebar-social,
.theme-toggle,
.status-badge {
  display: none;
}
