/* Index navbar actions — load early (was in late inline block, caused header shrink on refresh) */
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  font-size: 1.1rem;
  cursor: pointer;
  color: #d84315;
  padding: 8px 12px;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.nav-help {
  position: relative;
}

.nav-help-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  background: #fff;
  color: #d84315;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.nav-help-btn:hover {
  color: #fc5603;
}

.nav-help-chevron {
  font-size: 0.6rem;
  color: #d84315;
}

.nav-help.open .nav-help-chevron {
  transform: rotate(180deg);
}

.nav.scrolled {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-help-btn {
    padding: 8px 12px;
    font-size: 0.72rem;
  }
}

@media (max-width: 600px) {
  .nav-help-btn {
    padding: 8px 12px;
    font-size: 0.72rem;
  }
}
