.ahgh-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,0.86);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(15,23,42,0.08);
  transition:background 0.18s ease-out, border-color 0.18s ease-out, transform 0.18s ease-out;
}
.ahgh-header.is-scrolled{
  background:rgba(255,255,255,0.94);
  border-color:rgba(var(--ahgh-accent-rgb),0.18);
  transform:translateY(-1px);
}
.ahgh-header__inner{
  max-width:1200px;
  margin:0 auto;
  padding:6px 20px 10px;
  color:var(--ahgh-text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}

/* Top bar */
.ahgh-header__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size:0.8rem;
  color:var(--ahgh-text-soft);
  padding-bottom:4px;
}
.ahgh-header__pill{
  padding:4px 10px;
  border-radius:999px;
  background:rgba(var(--ahgh-accent-rgb),0.10);
  border:1px solid rgba(var(--ahgh-accent-rgb),0.22);
  font-size:0.75rem;
  text-transform:uppercase;
  letter-spacing:0.13em;
  white-space:nowrap;
  color:rgba(var(--ahgh-accent-rgb),0.95);
  font-weight:900;
}
.ahgh-header__link{
  font-size:0.8rem;
  color:var(--ahgh-text-soft);
  text-decoration:none;
  font-weight:900;
}
.ahgh-header__link:hover{ color:var(--ahgh-accent); }

/* Main bar */
.ahgh-header__main{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding-top:4px;
}
.ahgh-header__menu{
  display:flex;
  align-items:center;
  gap:14px;
  list-style:none;
  margin:0;
  padding:0;
}
.ahgh-header__menu a{
  position:relative;
  display:inline-flex;
  align-items:center;
  padding:4px 0;
  font-size:0.9rem;
  font-weight:900;
  text-decoration:none;
  color:var(--ahgh-text-soft);
  transition:color 0.16s ease-out;
}
.ahgh-header__menu a:hover{ color:var(--ahgh-accent); }

.ahgh-header__actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.ahgh-header__icon-link{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  border-radius:999px;
  text-decoration:none;
  border:1px solid rgba(15,23,42,0.14);
  background:#ffffff;
  color:var(--ahgh-text);
  transition:background 0.16s ease-out, transform 0.16s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out;
}
.ahgh-header__icon-link:hover{
  background:rgba(var(--ahgh-accent-rgb),0.08);
  border-color:rgba(var(--ahgh-accent-rgb),0.30);
  box-shadow:0 12px 26px rgba(var(--ahgh-accent-rgb),0.14);
  transform:translateY(-1px);
}
.ahgh-header__cart-count{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:16px;
  height:16px;
  padding:0 4px;
  border-radius:999px;
  background:var(--ahgh-accent);
  color:#ffffff;
  font-size:0.68rem;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 0 0 2px #ffffff;
}

/* Responsive */
@media (max-width:900px){
  .ahgh-header__nav{ display:none; }
}