/* Compact storefront navigation. Both rows stay visible while browsing. */
:root { --store-header-height: 116px; }
html { scroll-padding-top: calc(var(--store-header-height) + 12px); }
body.storefront.catalog-store .catalog-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  box-shadow: 0 5px 20px #00000020;
}
body.storefront.catalog-store .catalog-header-inner {
  grid-template-columns: minmax(145px, 190px) minmax(0, 1fr);
  gap: 28px;
  min-height: 72px;
  padding-block: 13px;
}
body.storefront.catalog-store .catalog-brand {
  gap: 9px;
  max-width: 100%;
  color: var(--text);
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -.65px;
}
body.storefront.catalog-store .catalog-brand span { min-width: 0; }
body.storefront.catalog-store .catalog-brand img { width: 36px; height: 36px; }
body.storefront.catalog-store .catalog-search {
  grid-column: auto;
  grid-row: auto;
  min-height: 44px;
  padding: 3px;
  border: 1px solid #373737;
  border-radius: 999px;
  background: #212121;
}
body.storefront.catalog-store .catalog-search input {
  min-height: 36px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  line-height: 20px;
}
body.storefront.catalog-store .catalog-search input::placeholder { color: #b0bbab; }
body.storefront.catalog-store .catalog-search button {
  min-width: 61px;
  min-height: 36px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #34422b;
  color: var(--primary-soft);
  font-size: 12px;
}
body.storefront.catalog-store .catalog-search button:hover { background: #435536; color: var(--text); }
body.storefront.catalog-store .catalog-navigation {
  border-top: 1px solid #252525;
  border-bottom: 1px solid #292929;
  background: var(--bg);
}
body.storefront.catalog-store .catalog-navigation-inner {
  gap: 24px;
  min-height: 44px;
  overflow: visible;
}
body.storefront.catalog-store .catalog-nav { flex: 0 1 auto; gap: 30px; }
body.storefront.catalog-store .catalog-nav a {
  min-height: 44px;
  padding: 10px 0;
  color: #cad1c5;
  font-size: 13px;
  font-weight: 600;
  line-height: 22px;
}
body.storefront.catalog-store .catalog-nav a:hover,
body.storefront.catalog-store .catalog-nav a[aria-current="page"] { color: var(--primary); border-bottom-color: var(--primary); }
body.storefront.catalog-store .catalog-admin {
  flex: 0 0 auto;
  min-height: 44px;
  color: #cad1c5;
  font-size: 13px;
  font-weight: 600;
}
body.storefront.catalog-store .catalog-admin:hover { color: var(--primary); }
body.storefront.catalog-store .catalog-account { display: flex; align-items: center; justify-content: flex-end; flex: 0 0 auto; gap: 22px; margin-left: auto; }
body.storefront.catalog-store .catalog-account a { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; color: #cad1c5; font-size: 13px; font-weight: 600; white-space: nowrap; }
body.storefront.catalog-store .catalog-account a:hover,
body.storefront.catalog-store .catalog-account a[aria-current="page"] { color: var(--primary-soft); }
body.storefront.catalog-store .catalog-account .catalog-register-link { color: var(--primary-soft); }
body.storefront.catalog-store .catalog-member-link { gap: 9px; }
body.storefront.catalog-store .catalog-member-avatar { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid #435536; border-radius: 50%; background: #263522; color: var(--primary-soft); font-size: 13px; font-weight: 750; }
body.storefront.catalog-store .catalog-header a:focus-visible,
body.storefront.catalog-store .catalog-header button:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; }
body.storefront.catalog-store .catalog-main [id],
body.storefront.catalog-store #store-help { scroll-margin-top: 12px; }
body.storefront.catalog-store .store-skip-link:focus { z-index: 101; }

@media (min-width: 861px) {
  body.storefront.catalog-store .quick-ticket { top: calc(var(--store-header-height) + 20px); }
}

@media (max-width: 800px) {
  body.storefront.catalog-store .catalog-header-inner { grid-template-columns: minmax(125px, 165px) minmax(0, 1fr); gap: 20px; }
  body.storefront.catalog-store .catalog-brand { font-size: 18px; }
  body.storefront.catalog-store .catalog-nav { gap: 24px; }
}
@media (max-width: 560px) {
  body.storefront.catalog-store .catalog-header-inner,
  body.storefront.catalog-store .catalog-navigation-inner { width: calc(100% - 28px); }
  body.storefront.catalog-store .catalog-header-inner { grid-template-columns: minmax(100px, 120px) minmax(0, 1fr); gap: 12px; min-height: 64px; padding-block: 10px; }
  body.storefront.catalog-store .catalog-brand { gap: 7px; font-size: 17px; letter-spacing: -.6px; }
  body.storefront.catalog-store .catalog-brand img { width: 28px; height: 28px; }
  body.storefront.catalog-store .catalog-brand span { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
  body.storefront.catalog-store .catalog-search { min-height: 40px; }
  body.storefront.catalog-store .catalog-search input { min-height: 32px; padding: 6px 10px; font-size: 12px; }
  body.storefront.catalog-store .catalog-search button { min-width: 42px; min-height: 32px; padding: 6px 10px; font-size: 11px; }
  body.storefront.catalog-store .catalog-navigation-inner { gap: 16px; }
  body.storefront.catalog-store .catalog-nav { gap: 18px; }
  body.storefront.catalog-store .catalog-nav a,
  body.storefront.catalog-store .catalog-admin { font-size: 12px; }
  body.storefront.catalog-store .catalog-navigation-inner { flex-wrap: wrap; gap: 0 18px; }
  body.storefront.catalog-store .catalog-account { gap: 17px; }
  body.storefront.catalog-store .catalog-account a { font-size: 12px; }
}
@media (max-width: 380px) {
  body.storefront.catalog-store .catalog-header-inner { grid-template-columns: 107px minmax(0, 1fr); gap: 8px; }
  body.storefront.catalog-store .catalog-brand { font-size: 16px; }
  body.storefront.catalog-store .catalog-navigation-inner { gap: 11px; }
  body.storefront.catalog-store .catalog-nav { gap: 13px; }
  body.storefront.catalog-store .catalog-nav a,
  body.storefront.catalog-store .catalog-admin { font-size: 11px; letter-spacing: -.1px; }
}
