/* =====================================================
   1) HEADER — Fixed header + stripes
===================================================== */

.eds-header-alt {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background-color: var(--eds-gray-soft);
  border-bottom: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-top-stripe {
  display: block;
  width: 100%;
  height: 5px;
  background-color: var(--eds-primary);
}

.header-bottom-stripe {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--eds-primary);
}

.eds-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  min-height: 86px;
  margin: 0 auto;
  padding: 0 20px;
}

.eds-logo-container {
  flex-shrink: 0;
  margin-right: auto;
  margin-left: 0;
}

.eds-logo-container a {
  display: inline-flex;
  align-items: center;
}

.eds-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 70px;
  margin-top: 0;
}

.eds-quicknav {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-left: auto;
}

.quicknav-item,
.quicknav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.quicknav-item {
  color: var(--eds-text);
}

.quicknav-item:hover {
  color: var(--eds-primary);
}

.quicknav-cta {
  padding: 11px 18px;
  border-radius: 8px;
  background-color: var(--eds-primary);
  color: #fff;
}

.quicknav-cta:hover {
  background-color: #2ea42f;
  color: #fff;
  transform: translateY(-1px);
}

.menu-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 10px;
  background-color: transparent;
  border: none;
  border-radius: 8px;
  color: var(--eds-text);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.menu-toggle-btn:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.menu-icon-bars {
  position: relative;
  width: 22px;
  height: 2px;
  background-color: currentColor;
}

.menu-icon-bars::before,
.menu-icon-bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: currentColor;
}

.menu-icon-bars::before {
  top: -6px;
}

.menu-icon-bars::after {
  top: 6px;
}
