/** Shopify CDN: Minification failed

Line 15:9 Expected identifier but found whitespace
Line 15:11 Unexpected "{"
Line 15:21 Expected ":"
Line 16:11 Expected identifier but found whitespace
Line 16:13 Unexpected "{"
Line 16:23 Expected ":"
Line 17:13 Expected identifier but found whitespace
Line 17:15 Unexpected "{"
Line 17:25 Expected ":"

**/
:root {
  --c-bg: {{ settings.colors_background }};
  --c-text: {{ settings.colors_text }};
  --c-border: {{ settings.colors_border }};
}

.site-header {
  background: var(--c-bg);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--c-border);
}

.is-sticky { position: sticky; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

.logo__image { max-height: 48px; width: auto; }
.logo__text { font-size: 1.75rem; font-weight: 700; }

.header-utils {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  background: transparent;
  transition: background .15s ease;
}

.icon-btn:focus-visible { outline: 2px solid var(--c-text); outline-offset: 2px; }
.icon-btn:hover { background: rgba(0,0,0,.06); }

.icon-btn--pill { border-radius: 22px; padding: 0 12px; gap: 4px; width: auto; }

.badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-bg);
  background: var(--c-text);
  border-radius: 50%;
  text-align: center;
}

.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 140px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  padding-block: 4px;
}

.dropdown__link {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--c-text);
  font-size: .875rem;
}

.dropdown__link:hover,
.dropdown__link.is-active { background: rgba(0,0,0,.05); }

.search-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.search-bar__close { background: none; border: 0; position: absolute; top: 16px; right: 20px; }

@media (max-width: 749px) {
  .site-header__inner { min-height: 58px; }
  .icon-btn { width: 40px; height: 40px; }
}
