:root { --section-nav-h: 46px; }

.site-section-nav {
  position: relative;
  z-index: 40;
  min-height: var(--section-nav-h);
  border-bottom: 1px solid rgba(184, 146, 94, .32);
  background: #fffdf9;
  box-shadow: 0 4px 15px rgba(72, 48, 36, .05);
  font-family: Montserrat, Arial, sans-serif;
}

.site-section-nav__inner {
  width: min(1240px, calc(100% - 30px));
  min-height: var(--section-nav-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-section-nav__inner::-webkit-scrollbar { display: none; }

.site-section-nav__label {
  flex: 0 0 auto;
  margin-right: 5px;
  color: #856f64;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.site-section-nav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #4f3f38;
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.site-section-nav a:hover,
.site-section-nav a:focus-visible,
.site-section-nav a[aria-current="page"] {
  border-color: rgba(107, 47, 73, .20);
  background: #f5e4e9;
  color: #6b2f49;
  outline: none;
}

.site-section-nav a.site-section-nav__featured {
  background: #6b2f49;
  color: #fff;
}

.home-focused .site-section-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 1000;
}

.home-focused .category-bar {
  top: calc(var(--header-h) + var(--section-nav-h)) !important;
}

.home-focused .signature-hero {
  margin-top: calc(var(--header-h) + var(--section-nav-h) + 46px) !important;
}

@media (max-width: 720px) {
  :root { --section-nav-h: 43px; }
  .site-section-nav__inner { width: 100%; padding: 0 10px; }
  .site-section-nav__label { display: none; }
  .site-section-nav a { min-height: 31px; padding: 5px 10px; font-size: 11px; }
}
