/* EVA Tech – Header (structure only; visuals live in base.css) */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-bar {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}
.header-logo img {
  height: 28px;
  width: auto;
}

/* Ensure <picture> swap renders cleanly */
.header-logo picture,
.header-logo img {
  display: block;
}

/* NAV */
.header-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.header-nav a {
  padding: 8px 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.header-nav a:hover {
  background: var(--muted-2);
}
.header-nav a[aria-current="page"] {
  color: var(--brand);
  font-weight: 600;
}

/* Header CTA (Shop Now) */
.header-cta {
  flex-shrink: 0;
}
