/* ── MEGA DROPDOWN NAV ── */
.nav-row2 {
  position: fixed;
  top: 96px; left: 0; right: 0;
  height: 42px;
  background: #031E3A;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 0;
  z-index: 1001;
  overflow: visible !important;
}

.nav-row2.no-banner { top: 56px; }

/* Category tabs */
.nav-cat {
  position: relative;
  display: flex;
  align-items: center;
  height: 42px;
}

.nav-cat-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 600;
  padding: 0 14px;
  height: 42px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: none;
  transition: all .15s;
  letter-spacing: .01em;
}

.nav-cat-btn:hover,
.nav-cat:hover .nav-cat-btn {
  color: white;
  background: rgba(255,255,255,0.08);
}

.nav-cat-arrow {
  font-size: 8px;
  opacity: 0.5;
  transition: transform .2s;
}

.nav-cat:hover .nav-cat-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: 42px;
  left: 0;
  min-width: 220px;
  background: #031E3A;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid #F4A621;
  border-radius: 0 0 12px 12px;
  padding: 8px 0;
  display: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 1100;
}

.nav-cat:hover .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: rgba(255,255,255,0.07);
  color: white;
  padding-left: 20px;
}

.nav-dropdown-icon {
  font-size: 14px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.nav-dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 6px 0;
}

.nav-dropdown-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.3);
  padding: 8px 16px 4px;
}

/* WhatsApp pill - always visible right side */
.nav-wa-pill {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25D366;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: all .15s;
  flex-shrink: 0;
}

.nav-wa-pill:hover {
  background: rgba(37,211,102,0.25);
  color: white;
}

/* Divider between categories */
.nav-cat-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.1);
  margin: 0 2px;
  flex-shrink: 0;
}
