@font-face {
  font-family: "DIN Neuzeit";
  src: url("../assets/fonts/dinneuzeitgroteskltw01-_812426.latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #000;
  padding-top: 0;
  color: #fff;
  font-family: "DIN Neuzeit", sans-serif;
  font-style: normal;
  text-shadow: -1px -1px 0 #000,
     0 -1px 0 #000,
     1px -1px 0 #000,
    -1px 0 0 #000,
     1px 0 0 #000,
    -1px 1px 0 #000,
     0 1px 0 #000,
     1px 1px 0 #000;
}

a {
  text-decoration: none;
}

button,input,textarea,select {
  font: inherit;
}

.topline {
  height: 30px;
  background: #000;
  font-size: 9px;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.header {
  height: 105px;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,.12);
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Header scroll state: solid black at top, tinted after scrolling */
.header.scrolled {
  background: rgba(8, 8, 8, 0.68);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}


.header-inner {
  height: 100%;
  max-width: 1110px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0;
  width: min(100% - 80px,1200px);
  margin-inline: auto;
}

.logo {
  width: 145px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 145px;
}

.logo img {
  width: 125px;
  height: 76px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.header nav {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 27px;
  flex: 0 0 auto;
  white-space: nowrap;
  order: 2;
  height: 105px;
}

.header nav>a:hover,.navdrop>a:hover,.more button:hover.navdrop {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: -18px;
  height: 100%;
  display: flex;
  align-items: center;
}

.navdrop small {
  font-size: 10px;
}

.menu {
  display: none;
  position: absolute;
  top: 40px;
  left: -12px;
  background: white;
  border: 1px solid #eee;
  min-width: 190px;
  box-shadow: 0 5px 18px rgba(0,0,0,.1);
  z-index: 100;
}

.navdrop:hover .menu {
  display: block;
}

.menu a {
  display: block;
  padding: 10px 13px;
  font-size: 11px;
  background: #fff;
}

.menu a:hover {
  background: #f0f0f0;
}

.tools {
  display: flex;
  gap: 15px;
}

.tools button {
  border: 0;
  cursor: pointer;
  font-size: 18px;
}

.tools b {
  font-size: 9px;
  background: #777;
  border-radius: 50%;
  padding: 2px 5px;
}

.hamburger,.mobile-menu {
  display: none;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 22px;
}

.product-card {
  min-width: 0;
}

.product-image {
  height: 245px;
  background: #eee center/contain no-repeat;
  position: relative;
  background-color: #111;
}

.badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #80a315;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.2;
}

.product-name {
  font-size: 14px;
  line-height: 1.3;
  margin-top: 10px;
}

.product-price {
  font-size: 14px;
  margin-top: 5px;
}

.quick,.add {
  width: 100%;
  margin-top: 7px;
  padding: 8px;
  border: 1px solid #ddd;
  font-size: 9px;
  cursor: pointer;
}

.promo {
  text-align: center;
  background: #f5f5f5;
  padding: 14px;
  font-size: 10px;
  margin-bottom: 25px;
}

.search {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.98);
  z-index: 50;
  padding: 90px 12vw;
}

.search.open {
  display: block;
}

.search button {
  position: absolute;
  right: 30px;
  top: 20px;
  border: 0;
  font-size: 28px;
}

.search input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #777;
  padding: 15px 0;
  font-size: 24px;
  outline: none;
}

.search-result {
  padding: 12px;
  border-bottom: 1px solid #eee;
  font-size: 12px;
}

.cart-title button {
  border: 0;
  font-size: 25px;
}

.cart-total {
  margin-top: auto;
  border-top: 1px solid #eee;
  padding: 20px;
  display: grid;
  gap: 12px;
}

.cart-total span {
  display: flex;
  justify-content: space-between;
}

.cart-total button {
  border: 0;
  padding: 12px;
}

.buy {
  margin-left: 8px;
  padding: 12px 20px;
  border: 1px solid #777;
  font-size: 10px;
}

@media (max-width:1000px) {
  .header nav {
    gap: 15px;
  }

  .product-row {
    grid-template-columns: repeat(3,1fr);
  }
}

@media (max-width:700px) {
  .topline {
    display: none;
  }

  .hamburger {
    display: block;
    border: 0;
    background: none;
    font-size: 20px;
  }

  .mobile-menu {
    display: none;
    padding: 20px;
    background: white;
    border-top: 1px solid #eee;
  }

  .mobile-menu.open {
    display: grid;
    gap: 15px;
    font-size: 11px;
  }
}

.topline {
  background: #050505;
  color: #fff;
  border-color: #222;
}

.header nav,
.header nav > a,
.navdrop > a,
.more button {
  color: #929292;
}

.header nav > a:hover,
.header nav > a:focus,
.navdrop > a:hover,
.navdrop > a:focus,
.more button:hover,
.more button:focus {
  color: #fff;
}

.navdrop:hover .menu, .navdrop:focus-within .menu {
  display: block;
}

.menu:hover {
  display: block;
}

.navdrop .menu {
  top: 104px;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 8px;
  padding-bottom: 8px;
  background: #050505;
  border: 1px solid #292929;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  min-width: 200px;
  z-index: 100;
}

.navdrop .menu:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.navdrop .menu a {
  background: #050505;
}

.navdrop .menu a:hover {
  background: #1b1b1b;
}

.hamburger {
  background: transparent;
}

.mobile-menu {
  background: #000;
  border-top: 1px solid #222;
}

.quick {
  display: none !important;
  font-size: 12px;
}

.header nav>a, .navdrop>a, .more button {
  line-height: 105px;
  height: 105px;
  display: flex;
  align-items: center;
}

.header .tools {
  margin-left: auto;
  order: 3;
  padding-left: 28px;
  gap: 14px;
  align-items: center;
}

.header-inner .logo {
  order: 0;
  width: 150px;
  flex: 0 0 auto;
  height: 105px;
  justify-content: flex-start;
}

.header-inner nav {
  order: 2;
  margin-left: auto;
  margin-right: 28px;
  display: flex;
  align-items: center;
}

.header-inner .tools {
  order: 3;
  flex: 0 0 auto;
  margin-left: 0;
}

.social-rail {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 95;
  width: 76px;
  padding: 22px 0;
  background: rgba(5, 5, 5, 0.52);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.social-rail a {
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  background: transparent;
  opacity: 1;
  visibility: visible;
}

.social-rail a:hover,
.social-rail a:focus {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

@media (max-width:700px) {
  .tools {
    margin-left: auto;
  }
}

footer a {
  display: none;
}

@media (max-width:700px) {
  footer {
    min-height: 160px;
    padding: 55px 25px;
    flex-direction: column;
    gap: 12px;
  }
}

.header-inner .logo img {
  width: 130px;
  height: 78px;
}

.header .tools b {
  min-width: 15px;
  min-height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-left: 2px;
}

@media (max-width:700px) {
  .header-inner .logo {
    height: 78px;
    width: 120px;
    flex-basis: 120px;
  }

  .header-inner .logo img {
    width: 108px;
    height: 64px;
  }
}

.home-categories {
  background: #000;
  max-width: none;
  padding: 55px max(18px,calc((100vw - 1120px)/2));
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

@media (max-width:700px) {
  .home-categories {
    grid-template-columns: 1fr;
    padding: 35px 15px 50px;
  }
}

.header .tools button, .header .tools button:hover, .header .tools button:focus, .header .tools button:active {
  line-height: 1;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0;
}

/* =========================================================
   CLEAN MASTER — AUTHORITATIVE SITE-WIDE RULES
   ========================================================= */

/* Paragraphs — one global definition */

p {
  font-size: 30px;
  line-height: 2;
  letter-spacing: .15px;
  color: #fff;
}

/* Headings — one global definition */

h1,h2,h3,h4,h5,h6 {
  font-family: "DIN Neuzeit",sans-serif;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

h1 {
  font-size: 80px;
  line-height: 1.15;
}

h2 {
  font-size: 50px;
  line-height: 1.2;
}

h3 {
  font-size: 28px;
  line-height: 1.2;
}

h4 {
  font-size: 22px;
  line-height: 1.2;
}

h5 {
  font-size: 18px;
  line-height: 1.2;
}

h6 {
  font-size: 16px;
  line-height: 1.2;
}

/* Header navigation */

.header nav a, .header .nav a, .header .navigation a, header nav a {
  font-size: 18px;
  color: #929292;
}

/* Search/cart — no button background */

/* Buttons — one shared definition */

button, .add, .send, .contact button, .product-detail .add, .cart-total button, .load, .buy, .quick {
  background: rgb(186, 218, 85);
  border-color: rgb(186, 218, 85);
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: none;
}

button:hover, button:focus, button:active, .add:hover, .add:focus, .add:active, .send:hover, .send:focus, .send:active, .contact button:hover, .contact button:focus, .contact button:active, .product-detail .add:hover, .product-detail .add:focus, .product-detail .add:active, .cart-total button:hover, .cart-total button:focus, .cart-total button:active, .load:hover, .load:focus, .load:active, .buy:hover, .buy:focus, .buy:active, .quick:hover, .quick:focus, .quick:active {
  background: rgb(186, 218, 85);
  border-color: rgb(186, 218, 85);
  color: #000;
}

/* Category/product labels */

.cat strong, .cat span, .new .product-name, .new .product-price {
  font-size: 12px;
  line-height: 1.2;
}

/* Contact form labels — same typography as paragraphs, white */

.contact label {
  font-size: 30px;
  line-height: 2;
  letter-spacing: .15px;
  color: #fff;
}

/* Social rail */

@media (max-width:1250px) and (min-width:701px) {
  .header-inner {
    padding: 0 22px;
  }
}

@media (max-width:1100px) and (min-width:701px) {
  .header-inner {
    padding: 0 18px;
  }

  .header nav {
    gap: 18px;
  }

  .header .tools {
    padding-left: 16px;
  }
}

@media (max-width:900px) {
  .header-inner {
    width: min(100% - 40px,1200px);
  }
}

@media (max-width:700px) {
  .header {
    height: 78px;
  }

  .header-inner {
    justify-content: space-between;
    width: 100%;
    height: 78px;
    padding: 0 15px;
  }

  .header nav {
    display: none;
  }

  .header .tools {
    margin-left: auto;
    padding-left: 0;
  }

  .logo {
    height: 70px;
    width: 120px;
    flex-basis: 120px;
  }

  .logo img {
    width: 108px;
    height: 64px;
  }

  .social-rail {
    right: 10px;
    gap: 10px;
  }

  .social-rail a {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

/* Keep header navigation/tool controls at their established sizes. */

.header .tools button {
  padding: 0;
  width: 22px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.navdrop > a, .more button {
  border: 0;
  cursor: pointer;
  font-size: 15px;
}

/* Hero button text keeps its existing hero styling/size. */

.hero button, .hero-links a, .hero .cat, .hero .cat strong, .hero .cat span {
  color: #fff;
  text-transform: uppercase;
  font-size: inherit;
}

/* Contact form entered text — authoritative */

.contact input, .contact textarea, .contact select {
  color: #fff !important;
  caret-color: #fff;
  -webkit-text-fill-color: #fff;
}

/* Contact placeholders stay off-white */

.contact input::placeholder, .contact textarea::placeholder {
  line-height: 2;
  font-size: 30px;
  letter-spacing: 0.5px;
  color: #e8e8e8 !important;
  -webkit-text-fill-color: #e8e8e8;
  opacity: 1;
}

/* Hero buttons keep their existing hero background styling. */

.hero button, .hero-links a, .hero .cat {
  background-color: revert;
}

/* =========================================================
   HEADER SOCIAL MESSAGE
   Content lives in HTML so it can be changed by the admin panel.
   CSS controls appearance/layout only.
   ========================================================= */

.header-social-message {
  width: 225px;
  order: 1;
  flex: 0 0 400px;
  margin: 0 34px 0 14px;
  padding: 0 12px;
  color: #929292;
  font-size: 18px;
  line-height: 1.55;
  text-align: center;
  white-space: normal;
}

@media (max-width: 1250px) and (min-width: 701px) {
  .header-social-message {
    width: 190px;
    flex-basis: 190px;
    margin-right: 22px;
  }
}

@media (max-width: 1100px) and (min-width: 701px) {
  .header-social-message {
    flex-basis: 135px;
    margin-right: 16px;
  }
}

@media (max-width: 700px) {
  .header-social-message {
    display: none;
  }
}

/* =========================================================
   HEADER TYPE + ICONS — 18px
   ========================================================= */

.header-social-message, .header nav > a, .header .navdrop > a, .header .more button {
  font-size: 18px;
}

/* Header search/cart icon color — force all SVG shapes white */

.header .tools #searchOpen, .header .tools #cartOpen {
  font-size: 18px;
  background: transparent !important;
  border-color: transparent !important;
  color: #fff !important;
}

.header .tools #searchOpen svg {
  width: 18px;
  height: 18px;
}

.header .tools #searchOpen svg *, .header .tools #cartOpen svg * {
  fill: none !important;
  stroke: #fff !important;
}

/* Cart icon visual-size correction */

.header .tools #cartOpen {
  width: 36px;
  height: 32px;
}

.header .tools #cartOpen svg {
  width: 30px !important;
  height: 30px !important;
  transform: scale(1.08);
  transform-origin: center;
}

/* =========================================================
   CART DRAWER — STRIKE ZONE REFERENCE
   Font family remains DIN Neuzeit.
   ========================================================= */

.cart, .cart * {
  text-shadow: none;
}

.cart {
  position: fixed;
  top: 0;
  right: -420px;
  width: min(420px, 100vw);
  height: 100dvh;
  background: #020202;
  color: #fff;
  z-index: 200;
  box-shadow: none;
  transition: right .28s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: "DIN Neuzeit", sans-serif;
}

.cart.open {
  right: 0;
}

.cart a {
  color: inherit;
  text-decoration: none;
}

/* Cart header */

.cart-title {
  font-weight: 400;
  flex: 0 0 68px;
  min-height: 68px;
  padding: 0 20px;
  border-bottom: 1px solid #555;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.cart-title strong {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.cart .cart-close, .cart #cartClose {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent !important;
  color: #fff !important;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}

/* Product list */

.cart-items {
  flex: 1 1 auto;
  min-height: 0;
  padding: 20px;
  overflow-y: auto;
}

.cart-item {
  border-bottom: 1px solid #eee;
  font-size: 12px;
  justify-content: space-between;
  width: 100%;
  min-height: 102px;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  color: #fff;
}

.cart-item + .cart-item {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #383838;
}

.cart-item-image {
  width: 74px;
  height: 102px;
  background: #191919;
  border: 1px solid #555;
  overflow: hidden;
  display: block;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cart-item-name {
  display: block;
  margin: 0 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.cart-item-unit-price {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.cart .cart-remove {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  padding: 2px;
  border: 0;
  background: transparent !important;
  color: #fff !important;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.cart .cart-remove svg {
  width: 17px;
  height: 17px;
  fill: none !important;
  stroke: #fff !important;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-item-bottom {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cart-qty-control {
  height: 34px;
  border: 1px solid #777;
  display: inline-grid;
  grid-template-columns: 31px 30px 31px;
  align-items: center;
}

.cart .cart-qty-control button {
  width: 31px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent !important;
  color: #fff !important;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.cart-qty-control span {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

.cart-item-line-total {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}

.cart-empty {
  padding: 25px 0;
  color: #aaa;
  font-size: 16px;
}

/* Bottom checkout section */

.cart-bottom {
  flex: 0 0 auto;
  margin-top: auto;
  padding: 0 20px 18px;
  background: #020202;
}

.cart-promo {
  width: 100%;
  min-height: 63px;
  padding: 0;
  border: 0;
  border-top: 1px solid #4f4f4f;
  border-bottom: 1px solid #4f4f4f;
  background: transparent !important;
  color: #80a315 !important;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.cart-promo-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
}

.cart-promo-icon svg {
  width: 18px;
  height: 18px;
  fill: none !important;
  stroke: #80a315 !important;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-summary {
  padding-top: 19px;
}

.cart-estimated-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.cart-estimated-total span, .cart-estimated-total strong {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.cart-summary p {
  margin: 12px 0 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.cart .cart-checkout, .cart .cart-view {
  width: 100%;
  min-height: 42px;
  margin: 0;
  padding: 9px 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}

.cart .cart-checkout {
  border: 1px solid #80a315 !important;
  background: #80a315 !important;
  color: #000 !important;
}

.cart .cart-view {
  margin-top: 10px;
  border: 1px solid #80a315 !important;
  background: transparent !important;
  color: #80a315 !important;
}

.cart-secure {
  padding-top: 13px;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.cart-secure svg {
  width: 14px;
  height: 14px;
  fill: #fff !important;
  stroke: #fff !important;
  stroke-width: 1.5;
}

/* Dim the site behind the drawer like the reference */

.shade {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 190;
}

.shade.open {
  display: block;
}

body.cart-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .cart {
    width: 100vw;
    right: -100vw;
  }

  .cart-title, .cart-items, .cart-bottom {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* =========================================================
   BUTTON FONT — checkout-style font
   ========================================================= */

button, .add, .send, .load, .buy, .quick, .contact button, .product-detail .add, .cart-total button, .cart .cart-checkout, .cart .cart-view, .cart .cart-promo, .cart .cart-qty-control button, .cart .cart-remove {
  font-family: Arial, Helvetica, sans-serif;
}

/* =========================================================
   HEADER CART COUNT
   ========================================================= */

.header .tools #cartCount {
  background: transparent;
  border: 0;
  padding: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  min-width: 18px;
  min-height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   PRODUCT CARD ADD TO CART
   Hidden until the customer hovers over the product card.
   Product-detail Add to Cart remains visible.
   ========================================================= */

.product-card .add {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.product-card:hover .add, .product-card:focus-within .add {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Touch devices do not have a reliable hover state. */

@media (hover: none) {
  .product-card .add {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
}

/* =========================================================
   SHOP NAV DROPDOWN POSITION
   Anchor the dropdown directly to the SHOP nav item.
   ========================================================= */

.header .navdrop {
  position: relative;
  height: 105px;
  display: flex;
  align-items: center;
}

.header .navdrop .menu {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 210;
}

/* Header navigation color behavior */
.header nav > a,
.header .navdrop > a,
.header .more button {
  transition: color .18s ease;
}
