.home .site-header-over-hero {
  top: 0;
  height: 150px;
  padding: 0 clamp(28px, 4vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 76px 74px;
  align-items: center;
  border: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.38) 0%, rgba(0,0,0,.15) 58%, transparent 100%);
}
.home .site-header-over-hero .header-left {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 28px;
}
.home .site-header-over-hero .search-link { margin: 0; color: #fff; }
.home .site-header-over-hero .brand { grid-column: 2; grid-row: 1; }
.home .site-header-over-hero .brand img { width: clamp(210px, 17vw, 290px); }
.home .site-header-over-hero .header-tools {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  gap: 24px;
}
.home .site-header-over-hero .account-link,
.home .site-header-over-hero .cart-link { display: inline-flex; align-items: center; gap: 8px; color: #fff; }
.home .site-header-over-hero .tool-label { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.home .site-header-over-hero .language-switcher { position: static; display: flex; color: rgba(255,255,255,.72); font-size: 10px; }
.home .site-header-over-hero .language-switcher a { color: rgba(255,255,255,.72); }
.home .site-header-over-hero .language-switcher a.active { color: #fff; }
.home .site-header-over-hero .primary-nav {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: center;
  display: flex;
  align-self: start;
  justify-content: center;
  gap: clamp(22px, 2.6vw, 48px);
  width: 100%;
  padding-top: 13px;
}
.home .site-header-over-hero .primary-nav > a {
  color: #fff;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0,0,0,.18);
}
.home .site-header-over-hero .primary-nav > a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin-top: 7px;
  background: currentColor;
  transition: width .25s ease;
}
.home .site-header-over-hero .primary-nav > a:hover::after { width: 100%; }
.mobile-language-switcher { display: none; }

@media (max-width: 880px) {
  .home .site-header-over-hero {
    height: 76px;
    padding: 0 15px;
    grid-template-columns: 50px 1fr auto;
    grid-template-rows: 76px;
  }
  .home .site-header-over-hero .menu-toggle { grid-column: 1; grid-row: 1; display: block; color: #fff; z-index: 2; }
  .home .site-header-over-hero .header-left { display: none; }
  .home .site-header-over-hero .brand { grid-column: 2; grid-row: 1; justify-self: center; }
  .home .site-header-over-hero .brand img { width: min(190px, 43vw); }
  .home .site-header-over-hero .header-tools { grid-column: 3; grid-row: 1; gap: 13px; }
  .home .site-header-over-hero .tool-label { display: none; }
  .home .site-header-over-hero .cart-count { position: absolute; transform: translate(12px,-10px); background: rgba(0,0,0,.25); }
  .home .site-header-over-hero .primary-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    width: 100%;
    max-height: calc(100svh - 76px);
    padding: 26px 24px 34px;
    overflow-y: auto;
    background: rgba(18,18,16,.96);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .home .site-header-over-hero .primary-nav.is-open { display: flex; }
  .home .site-header-over-hero .primary-nav > a { width: 100%; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-size: 13px; }
  .home .site-header-over-hero .primary-nav > a::after { display: none; }
  .mobile-language-switcher { display: flex; gap: 10px; padding-top: 24px; color: #fff; }
  body.menu-is-open { overflow: hidden; }
}
