:root {
  --font-ui: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --shell-bg: #101217;
  --shell-ink: #f4f1e9;
  --shell-muted: #aaa294;
  --shell-accent: #e9bd66;
  --shell-line: rgba(255, 255, 255, 0.1);
  --shell-focus: #fff1c7;
  --shell-width: 1240px;
}

body,
button,
input,
select {
  font-family: var(--font-ui);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  min-height: 44px;
  padding: 11px 14px;
  border: 2px solid var(--shell-focus);
  background: var(--shell-bg);
  color: var(--shell-ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(calc(-100% - 20px));
}

.skip-link:focus-visible {
  outline: none;
  transform: translateY(0);
}

.product-bar {
  border-bottom: 1px solid var(--shell-line);
  background: var(--shell-bg);
  color: var(--shell-ink);
}

.product-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--shell-width), calc(100% - 32px));
  min-height: 60px;
  margin-inline: auto;
}

.product-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  min-height: 44px;
  color: var(--shell-ink);
  font-weight: 900;
  text-decoration: none;
}

.product-brand:hover,
.product-brand:focus-visible {
  color: var(--shell-accent);
}

.product-brand:focus-visible,
.product-bar .product-nav a:focus-visible {
  outline: 2px solid var(--shell-focus);
  outline-offset: 3px;
}

.product-brand__name {
  font-size: 17px;
}

.product-brand__descriptor {
  color: var(--shell-muted);
  font-size: 12px;
  font-weight: 700;
}

.product-bar .product-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin: 0;
}

.product-bar .product-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--shell-muted);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.product-bar .product-nav a:hover,
.product-bar .product-nav a:focus-visible,
.product-bar .product-nav a[aria-current="page"] {
  color: var(--shell-accent);
}

@media (max-width: 680px) {
  .product-bar__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding-block: 8px 6px;
  }

  .product-brand__descriptor {
    display: none;
  }

  .product-bar .product-nav {
    width: 100%;
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .product-bar .product-nav::-webkit-scrollbar {
    display: none;
  }

  .product-bar .product-nav a {
    min-height: 44px;
    white-space: nowrap;
  }
}
