.header-alt {
  display: block;
  width: 100%;
  background: #fff;
  border: none;
}
.header-alt-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  position: relative;
  border-bottom: 2px solid #ddd;
  box-sizing: border-box;
}
.header-logo { height: 36px; width: auto; display: block; margin-right: auto; }
.hamburger { background: none; border: none; cursor: pointer; padding: 8px; display: flex; flex-direction: column; gap: 5px; flex-shrink: 0; }
.hamburger span { display: block; width: 26px; height: 3px; background: #1a1a1a; border-radius: 2px; transition: transform 0.25s, opacity 0.25s; pointer-events: none; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.hamburger-menu { display: none; position: absolute; top: 100%; right: 0; background: #fff; border: 1px solid #1a1a1a; border-top: none; z-index: 999; flex-direction: column; box-shadow: 0 4px 12px rgba(0,0,0,0.1); white-space: nowrap; }
.hamburger-menu.open { display: flex; }
.hamburger-menu a { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.9rem; letter-spacing: 1.5px; text-transform: uppercase; color: #555; text-decoration: none; padding: 12px 20px; text-align: right; border-bottom: 1px solid #f0f0f0; }
.hamburger-menu a:last-child { border-bottom: none; }
.hamburger-menu a:hover { color: #3d6b28; }
.hamburger-menu a.active { color: #3d6b28; }
.has-submenu { display: flex; flex-direction: column; }
.submenu-trigger { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.9rem; letter-spacing: 1.5px; text-transform: uppercase; color: #555; background: none; border: none; border-bottom: 1px solid #f0f0f0; padding: 12px 20px; text-align: right; cursor: pointer; display: flex; align-items: center; justify-content: flex-end; gap: 6px; width: 100%; }
.submenu-trigger:hover { color: #3d6b28; }
.submenu-trigger.open { color: #3d6b28; }
.submenu-arrow { display: inline-block; transition: transform 0.2s; font-style: normal; font-size: 1.1rem; line-height: 1; }
.submenu-trigger.open .submenu-arrow { transform: rotate(90deg); }
.submenu { display: none; flex-direction: column; background: #fafafa; border-bottom: 1px solid #f0f0f0; }
.submenu.open { display: flex; }
.submenu a { padding: 10px 32px !important; font-size: 0.82rem !important; color: #777; border-bottom: 1px solid #f0f0f0; text-align: left; }
.submenu a:last-child { border-bottom: none !important; }
