/* One compact navigation bar shared by every public page. */
body .header {
  box-sizing: border-box;
  min-height: 66px;
  height: 66px;
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  gap: 22px;
  background: #050505;
  border: 0;
  color: #fff;
}

body .header .brand { color: #fff; }
body .header .brand img { width: 44px; height: 44px; }
body .header .brand b { font-size: 18px; }
body .header .brand small { color: #e6dfe2; }
body .header .main-nav { display: flex; gap: 25px; align-items: center; }
body .header .main-nav a { position: relative; color: #fff; font-size: 12px; font-weight: 700; white-space: nowrap; }
body .header .main-nav a:hover,
body .header .main-nav a.active { color: #f36b98; }
body .header .main-nav a.active::after { content: ''; position: absolute; left: 50%; bottom: -15px; width: 5px; height: 5px; border-radius: 50%; background: #f36b98; transform: translateX(-50%); }
body .header .nav-products { padding: 0; }
body .header .product-menu { top: 31px; }
body .header .header-search { display: flex; width: 215px; min-width: 170px; height: 31px; overflow: hidden; border-radius: 999px; background: #2d2b2e; }
body .header .header-search input { min-width: 0; flex: 1; border: 0; outline: 0; padding: 0 14px; background: transparent; color: #fff; font: 10px Manrope, sans-serif; }
body .header .header-search input::placeholder { color: #bdb5ba; }
body .header .header-search button { width: 34px; border: 0; background: #ef6a97; color: #fff; font-size: 17px; cursor: pointer; }
body .header .lang { flex: 0 0 auto; border-color: rgba(255,255,255,.34); }
body .header .lang button { color: #fff; }
body .header .lang button.active { background: #ef6a97; color: #fff; }
body .header .directory-home { display: none; }

@media (max-width: 980px) {
  body .header { padding: 0 20px; }
  body .header .main-nav { gap: 14px; }
  body .header .header-search { width: 150px; }
}

@media (max-width: 760px) {
  body .header { height: 62px; min-height: 62px; }
  body .header .brand small, body .header .header-search { display: none; }
  body .header .main-nav { display: none; }
  body .header .menu-toggle { display: block; color: #fff; }
}
