/* (c) 2026 Sentys Inc. All rights reserved. */





.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              backdrop-filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.3) inset;
}

.site-logo {
  flex-shrink: 0;
}

.site-logo img {
  height: 48px;
  width: auto;
  aspect-ratio: 500 / 225;
  object-fit: contain;
  flex-shrink: 0;
  transition: filter 0.4s ease, height 0.3s ease;
}

.site-header.scrolled .site-logo img {
  height: 32px;
  filter: none;
}

.site-logo.site-logo--hidden {
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: width 0.3s ease, opacity 0.2s ease;
}


.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-left: 32px;
  z-index: 2;
  position: relative;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}


.main-nav > div,
.main-nav nav {
  display: contents;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: color 0.4s ease;
  white-space: nowrap;
}

.site-header.scrolled .main-nav a {
  color: var(--black);
}



@media (max-width: 1100px) {
  .main-nav ul { gap: 20px; }
}

@media (max-width: 900px) {
  .main-nav ul { gap: 12px; }
  .main-nav a { font-size: 0.68rem; letter-spacing: 0.06em; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 24px; padding-top: env(safe-area-inset-top, 0px); height: calc(48px + env(safe-area-inset-top, 0px)); }
  .site-logo img { height: 44px; }
  .main-nav ul { display: none; }
}




body:not(:has(.product-hero)):not(:has(.hero-home)):not(:has(.hero-section--product)) .main-nav a {
  color: var(--black);
}


.header-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(300px, calc(100vw - 650px));
  position: absolute;


  left: 179px;
  top: 50%;
  transform: translateY(calc(-50% + 8px));
  pointer-events: none;
}

.site-header.scrolled .header-title {
  opacity: 0.7;
  transform: translateY(-50%);
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.15s,
              transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.site-header .header-title.header-title--tight,
.site-header.scrolled .header-title.header-title--tight {
  opacity: 0 !important;
}

@media (max-width: 900px) {
  .header-title {
    max-width: 200px;
    font-size: 0.7rem;
  }



  .site-header:has(.site-logo--hidden) .header-title {
    left: 80px;
  }
}

@media (max-width: 768px) {
  .header-title { display: none !important; }
}


.header-search {
  display: flex;
  align-items: center;
  margin-left: 16px;
  position: relative;
}

.header-search__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  flex-shrink: 0;
}

.site-header.scrolled .header-search__toggle {
  color: #999;
  border-color: rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.03);
}

.header-search__toggle:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
}

.site-header.scrolled .header-search__toggle:hover {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.12);
  color: var(--black);
}



.header-search__dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 0;
  width: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease;
  pointer-events: none;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.10);
}

.header-search.open .header-search__dropdown {
  width: 320px;
  max-height: 400px;
  opacity: 1;
  pointer-events: auto;
}

.header-search__form {
  padding: 12px 16px 8px;
}

.header-search.open .header-search__form {

}

.header-search__input {
  width: 100%;
  height: 36px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 100px;
  background: #f5f5f4;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--black);
  padding: 0 16px;
  outline: none;
  transition: border-color 0.2s ease;
}

.header-search__input:focus {
  border-color: rgba(0,0,0,0.25);
  background: var(--white);
}

.header-search__input::placeholder {
  color: #aaa;
  font-weight: 300;
}

.header-search.open .header-search__toggle {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}


body:not(:has(.product-hero)):not(:has(.hero-home)):not(:has(.hero-section--product)) .header-search__toggle {
  color: #999;
  border-color: rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.03);
}

body:not(:has(.product-hero)):not(:has(.hero-home)):not(:has(.hero-section--product)) .header-search__toggle:hover {
  background: rgba(0,0,0,0.06);
  color: var(--black);
}



.search-filters {
  padding: 0 16px 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.search-filters__label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.35);
  margin: 12px 0 8px;
}

.search-filters__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.search-pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: #555;
  background: #f0f0ee;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 100px;
  padding: 4px 12px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.search-pill:hover {
  background: #e8e8e5;
  color: var(--black);
  border-color: rgba(0,0,0,0.12);
}

.search-filters__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.search-suggestion {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: #777;
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.15s ease;
}

.search-suggestion::before {
  content: '\2192 ';
  opacity: 0.4;
}

.search-suggestion:hover {
  color: var(--black);
}

.search-suggestion + .search-suggestion::before {
  margin-left: 4px;
}

@media (max-width: 768px) {
  .header-search__toggle { width: 28px; height: 28px; }
  .header-search.open .header-search__dropdown { width: 280px; }
  .header-search__input { height: 32px; font-size: 0.78rem; }
}


.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 12px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.site-header.scrolled .hamburger span,
body:not(:has(.product-hero)):not(:has(.hero-home)):not(:has(.hero-section--product)) .hamburger span {
  background: var(--black);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


.mobile-nav-overlay {



  display: block;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;




  background: transparent;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  padding: 100px 32px 32px;
}

.mobile-nav-overlay.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay::before {
  content: '';
  position: absolute;
  inset: 0;




  background: rgba(250, 249, 245, 0.985);
}
.mobile-nav-overlay > * { position: relative; }

.mobile-nav-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-overlay li {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mobile-nav-overlay a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  text-decoration: none;
  padding: 20px 0;
  transition: color 0.2s ease;
}

.mobile-nav-overlay a:hover {
  color: var(--green);
}

@media (max-width: 768px) {
  .hamburger { display: flex; }


  .header-search.open .header-search__dropdown {
    width: calc(100vw - 48px);
    right: -12px;
  }
}


body:not(:has(.product-hero)):not(:has(.hero-home)):not(:has(.hero-section--product)) .site-logo img {
  height: 32px;
}



.site-header.force-mobile .main-nav ul { display: none !important; }
.site-header.force-mobile .hamburger { display: flex !important; }
.site-header.force-mobile .header-title { display: none !important; }


.search-filters__footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #eee;
  text-align: center;
}
.search-browse-link {
  display: inline-block;
  font-size: 0.82rem;
  color: #666;
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid #ddd;
  border-radius: 16px;
  transition: all 0.15s ease;
}
.search-browse-link:hover {
  color: #1a1a19;
  border-color: #8bad00;
  background: #f9fbef;
}










body.toolbar-fixed .site-header { top: 39px; }
body.toolbar-fixed.toolbar-horizontal.toolbar-tray-open .site-header { top: 79px; }
body.ssp-active.toolbar-fixed .site-header { top: 71px; }
body.ssp-active.toolbar-fixed.toolbar-horizontal.toolbar-tray-open .site-header { top: 111px; }




body.path-user main,
body.path-admin main {
  padding-top: 80px;
}








.contextual,
.contextual-links,
.contextual-region > .contextual {
  display: none !important;
}






body.section-products .main-nav a[href="/products"],
body.section-partners .main-nav a[href="/our-partners"] {
  border-bottom: 2px solid #B0D237;
  padding-bottom: 3px;
}







.site-header .nav-stack__crumb {
  display: none;
  position: absolute;
  top: 100%;
  left: 140px;
  z-index: 999;
  align-items: center;
  gap: 8px;
  height: 30px;
  margin: 0;
  padding: 0 16px;




  background: rgba(255, 255, 255, 0.93);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3) inset, 0 8px 22px rgba(0, 0, 0, 0.09);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  backdrop-filter: blur(24px) saturate(1.6);



  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transition: opacity 0.2s ease,
              transform 0.42s cubic-bezier(0.32, 0.72, 0, 1),
              background-color 0.3s ease,
              box-shadow 0.3s ease,
              padding 0.3s ease;
}
body.hero-head-v2 .site-header .nav-stack__crumb { display: flex; }



body.hero-head-v2 .site-header .nav-stack__crumb.nav-stack__crumb--leafonly { display: none; }
body.hero-head-v2 .site-header.nav-crumbed .nav-stack__crumb {
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: auto;
}



@media (max-width: 760px) {
  .site-header .nav-stack__crumb { height: 28px; padding: 0 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .site-header .nav-stack__crumb { transition: none; }
}






.mega {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 995;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10), inset 0 1px 0 rgba(0, 0, 0, 0.06);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  backdrop-filter: blur(24px) saturate(1.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.34s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s linear 0.34s;
}
.mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s, 0s, 0s;
}



.mega__inner {
  columns: 6 200px;
  column-gap: 34px;
  max-width: 1560px;
  margin: 0 auto;
  padding: 30px 48px 26px;
}
.mega__col {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 26px;
}
.mega__family {
  display: block;
  margin-bottom: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #1c1c1a;
  text-decoration: none;
}
.mega__family:hover { color: #69842b; }
.mega__list { list-style: none; margin: 0; padding: 0; }
.mega__list li { margin: 0 0 2px; }
.mega__item {
  display: block;
  padding: 4px 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.35;
  color: #55554f;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.mega__more {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: #83837c;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .mega__item:hover { color: #1c1c1a; border-bottom-color: #B0D237; }
  .mega__more:hover { color: #69842b; }
}
.mega__col--tail .mega__family { color: #83837c; }
@media (max-width: 900px) {
  .mega__inner { columns: 2 150px; column-gap: 22px; padding: 22px 24px 18px; }
  .mega { top: 48px; max-height: 70vh; overflow-y: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .mega { transition: none; }
}




.header-search__dropdown.is-typing .search-filters { display: none; }
.search-live { margin: 10px 0 0; }
.search-live__list { list-style: none; margin: 0; padding: 0; }
.search-live__item { display: flex; align-items: center; gap: 12px; padding: 8px 10px; border-radius: 8px; text-decoration: none; color: #1a1a19; }
.search-live__item:hover, .search-live__item.is-active { background: #f3f5ea; }
.search-live__img { flex: none; width: 48px; height: 36px; border-radius: 5px; object-fit: cover; background: #eeeee9; }
.search-live__text { display: flex; flex-direction: column; min-width: 0; }
.search-live__title { font-family: var(--font-body); font-size: 0.92rem; font-weight: 500; line-height: 1.3; }
.search-live__title mark { background: none; color: #5f7a20; font-weight: 700; }
.search-live__meta { font-size: 0.74rem; color: #78786f; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-live__empty { font-size: 0.88rem; color: #78786f; padding: 12px 10px; margin: 0; }
.search-live__all { display: block; margin: 8px 0 0; padding: 11px 10px 2px; border-top: 1px solid #ecebe4; font-size: 0.84rem; color: #4d6420; text-decoration: none; text-align: center; }
.search-live__all:hover { text-decoration: underline; }




.devonly-dot {
  display: inline-block;
  flex: none;
  width: 7px;
  height: 7px;
  margin-left: 5px;
  border-radius: 50%;
  background: #E8A33D;
  box-shadow: 0 0 0 2px rgba(232, 163, 61, 0.2);
  vertical-align: super;
  cursor: help;
}
h1 .devonly-dot { width: 10px; height: 10px; margin-left: 12px; vertical-align: top; }


.devonly-dot--stale {
  background: #F2CD2E;
  box-shadow: 0 0 0 2px rgba(242, 205, 46, 0.25), inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.devonly-tip {
  position: fixed;
  z-index: 100000;
  max-width: 280px;
  padding: 7px 10px;
  border-radius: 6px;
  border-left: 3px solid #E8A33D;
  background: #1f1f1d;
  color: #f4f4f2;
  font: 500 0.75rem/1.45 var(--font-body, system-ui, sans-serif);
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.12s ease, transform 0.12s ease;
}
.devonly-tip.is-on { opacity: 1; transform: none; }
.devonly-tip--stale { border-left-color: #F2CD2E; }
@media (prefers-reduced-motion: reduce) { .devonly-tip { transition: none; } }














@media (max-width: 900px) {
  .mobile-overflow-fix .crumb-trail > .nav-stack__crumb {
    min-width: 0;
    max-width: 100%;

    margin-inline: -4px;
    padding-inline: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .mobile-overflow-fix .crumb-trail > .nav-stack__crumb::-webkit-scrollbar { display: none; }



  .mobile-overflow-fix .crumb-trail > .nav-stack__crumb > * { flex-shrink: 0; }
  .mobile-overflow-fix .crumb-trail > .nav-stack__crumb .nav-stack__crumb-here { position: static; }
  .mobile-overflow-fix .crumb-trail > .nav-stack__crumb .nav-stack__peers {
    left: 16px;
    max-width: calc(100% - 32px);
  }
}
