/* ── MEGA NAV v36 ── */
.nav-item { position: relative; height: 72px; display: flex; align-items: center; }
.nav-trigger {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-item:hover .nav-trigger { color: #fff; background: rgba(255,255,255,0.06); }
.nav-trigger-arrow {
  width: 10px; height: 10px; opacity: 0.4;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s;
}
.nav-item:hover .nav-trigger-arrow { transform: rotate(180deg); opacity: 0.9; }
.mega-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: -16px;
  background: #111009;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  display: flex;
  overflow: hidden;
  min-width: 700px;
  opacity: 0;
  transform: scale(0.97) translateY(-10px);
  transform-origin: top left;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16,1,0.3,1), transform 0.25s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 32px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  z-index: 200;
}
.nav-item:hover .mega-panel {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.mega-panel--guides { min-width: 360px; flex-direction: column; padding: 20px 22px; }
.mega-cat-col {
  width: 210px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega-cat-item {
  display: flex;
  align-items: center;
  padding: 11px 12px;
  border-radius: 10px;
  cursor: default;
  transition: background 0.15s;
  position: relative;
  gap: 10px;
}
.mega-cat-item:hover { background: rgba(255,255,255,0.05); }
.mega-cat-item.active { background: rgba(212,163,78,0.12); }
.mega-cat-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 3px;
  background: #d4a34e;
  border-radius: 0 2px 2px 0;
}
.mega-cat-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.mega-cat-item.active .mega-cat-icon { background: rgba(212,163,78,0.2); }
.mega-cat-icon svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.4); fill: none; stroke-width: 1.5; }
.mega-cat-item.active .mega-cat-icon svg { stroke: #d4a34e; }
.mega-cat-text { flex: 1; min-width: 0; }
.mega-cat-label { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.6); display: block; line-height: 1.3; transition: color 0.15s; }
.mega-cat-item.active .mega-cat-label { color: #e8b86a; }
.mega-cat-sub { font-size: 10px; color: rgba(255,255,255,0.25); display: block; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mega-cat-chevron { width: 12px; height: 12px; flex-shrink: 0; opacity: 0; color: #d4a34e; transition: opacity 0.15s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1); fill: none; stroke: currentColor; stroke-width: 1.5; }
.mega-cat-item.active .mega-cat-chevron { opacity: 1; transform: translateX(2px); }
.mega-art-panels { flex: 1; position: relative; min-height: 300px; overflow: hidden; }
.mega-art-panel {
  position: absolute; inset: 0;
  padding: 20px 22px;
  opacity: 0;
  transform: translateX(14px);
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(0.16,1,0.3,1), transform 0.22s cubic-bezier(0.16,1,0.3,1);
}
.mega-art-panel.active {
  opacity: 1; transform: translateX(0);
  pointer-events: auto;
  position: relative;
}
.mega-art-panel.exiting {
  opacity: 0; transform: translateX(-10px);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.mega-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mega-panel-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #d4a34e; }
.mega-panel-count { font-size: 10px; color: rgba(255,255,255,0.2); }
.mega-art-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.mega-art-link {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px; border-radius: 9px;
  text-decoration: none;
  transition: background 0.12s;
}
.mega-art-link:hover { background: rgba(255,255,255,0.05); }
.mega-art-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0; margin-top: 5px;
  transition: background 0.15s;
}
.mega-art-link:hover .mega-art-dot { background: #d4a34e; }
.mega-art-link.urg .mega-art-dot { background: rgba(212,163,78,0.5); }
.mega-art-title { display: block; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.72); margin-bottom: 2px; line-height: 1.3; }
.mega-art-sub { font-size: 10.5px; color: rgba(255,255,255,0.28); display: block; line-height: 1.3; }
.mega-art-link.urg .mega-art-title { color: #e8b86a; }
.mega-panel-footer {
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
}
.mega-footer-txt { font-size: 10px; color: rgba(255,255,255,0.22); }
.mega-footer-btn {
  font-size: 11px; color: #d4a34e; text-decoration: none; font-weight: 500;
  background: rgba(212,163,78,0.1); padding: 5px 11px; border-radius: 6px;
  transition: background 0.15s;
}
.mega-footer-btn:hover { background: rgba(212,163,78,0.18); }
.mega-g-link {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 10px; border-radius: 10px;
  text-decoration: none; margin-bottom: 3px;
  transition: background 0.12s;
}
.mega-g-link:hover { background: rgba(255,255,255,0.05); }
.mega-g-badge {
  font-size: 10px; font-weight: 600; color: #d4a34e;
  background: rgba(212,163,78,0.12); padding: 3px 7px;
  border-radius: 5px; white-space: nowrap; flex-shrink: 0; margin-top: 2px;
}
.mega-g-title { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.78); margin-bottom: 3px; line-height: 1.3; }
.mega-g-sub { font-size: 11px; color: rgba(255,255,255,0.3); }
