/* Lion Order header. Isolated layout layer. */
:root {
  --lo-header-height: 76px;
  --lo-header-height-compact: 58px;
  --lo-header-gutter: clamp(24px, 4vw, 76px);
  --lo-header-logo-left: clamp(96px, 12.6vw, 228px);
  --lo-header-logo-width: clamp(78px, 5.8vw, 96px);
  --lo-header-logo-height: clamp(160px, 11.8vw, 198px);
  --lo-header-logo-top: -34px;
  --lo-header-icon: 42px;
  --lo-header-action-gap: clamp(14px, 1.35vw, 24px);
  --lo-header-right-air: clamp(78px, 6vw, 124px);
  --lo-header-link-gap: clamp(34px, 3vw, 62px);
  --lo-header-text: #050402;
  --lo-header-gold: #fac20a;
  --lo-header-pattern: url("/images/pattern-header.jpg");
  --lo-site-header-height: var(--lo-header-height);
  --headerHeight: var(--lo-header-height);
}

body.lo-header-condensed {
  --lo-header-height: var(--lo-header-height-compact);
  --lo-header-logo-width: clamp(66px, 4.9vw, 78px);
  --lo-header-logo-height: clamp(136px, 10vw, 160px);
  --lo-header-logo-top: -44px;
  --lo-site-header-height: var(--lo-header-height);
  --headerHeight: var(--lo-header-height);
}

body .lo-site-header {
  position: fixed !important;
  inset: 0 0 auto 0 !important;
  z-index: 9500 !important;
  height: var(--lo-header-height) !important;
  overflow: visible !important;
  isolation: isolate !important;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 242, 122, .28), transparent 30%),
    linear-gradient(180deg, rgba(255, 202, 17, .88), rgba(225, 157, 0, .86)),
    #fac20a !important;
  box-shadow: 0 12px 28px rgba(42, 24, 0, .18) !important;
}

body .lo-site-header::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  background: var(--lo-header-pattern) center top / 210px auto repeat !important;
  opacity: .50 !important;
  mix-blend-mode: multiply !important;
  filter: contrast(1.75) saturate(1.08) !important;
  pointer-events: none !important;
}

body .lo-site-header::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -1px !important;
  z-index: 1 !important;
  height: 1px !important;
  background: rgba(69, 42, 0, .38) !important;
  box-shadow: 0 10px 18px rgba(35, 18, 0, .20) !important;
  pointer-events: none !important;
}

body .lo-header__inner {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  height: var(--lo-header-height) !important;
  margin: 0 !important;
  padding: 0 var(--lo-header-gutter) !important;
  display: block !important;
}

body .lo-site-header .lo-header__brand {
  position: absolute !important;
  top: var(--lo-header-logo-top) !important;
  left: var(--lo-header-logo-left) !important;
  z-index: 8 !important;
  width: var(--lo-header-logo-width) !important;
  height: var(--lo-header-logo-height) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  transform: translateX(-50%) !important;
  transition: top 220ms ease, width 220ms ease, height 220ms ease, transform 180ms ease !important;
}

body .lo-site-header .lo-header__brand:hover,
body .lo-site-header .lo-header__brand:focus-visible {
  transform: translateX(-50%) scale(1.028) !important;
}

body .lo-site-header .lo-header__brand img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  filter: drop-shadow(0 13px 15px rgba(34, 17, 0, .36)) !important;
}

body .lo-site-header .lo-header__nav {
  position: absolute !important;
  inset: 0 !important;
  z-index: 6 !important;
  width: auto !important;
  height: var(--lo-header-height) !important;
  margin: 0 !important;
  padding: 0 var(--lo-header-right-air) 0 clamp(180px, 19vw, 320px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: clamp(26px, 2.2vw, 42px) !important;
  transform: none !important;
}

body .lo-site-header .lo-header__links,
body .lo-site-header .lo-header__actions {
  position: static !important;
  inset: auto !important;
  width: auto !important;
  max-width: none !important;
  height: var(--lo-header-height) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  list-style: none !important;
  transform: none !important;
}

body .lo-site-header .lo-header__links {
  gap: var(--lo-header-link-gap) !important;
}

body .lo-site-header .lo-header__actions {
  gap: var(--lo-header-action-gap) !important;
}

body .lo-site-header .lo-header__links li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body .lo-site-header .lo-header__news-events {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .42em !important;
  white-space: nowrap !important;
}

body .lo-site-header .lo-header__news-events span {
  color: var(--lo-header-text) !important;
  font-family: "Salter Roman", Georgia, serif !important;
  font-size: clamp(14px, .95vw, 17px) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-shadow: 0 1px 0 rgba(255, 238, 145, .58) !important;
}

body .lo-site-header button,
body .lo-site-header a {
  appearance: none !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--lo-header-text) !important;
  font-family: "Salter Roman", Georgia, serif !important;
  text-decoration: none !important;
  text-shadow: 0 1px 0 rgba(255, 238, 145, .58) !important;
  cursor: pointer !important;
}

body .lo-site-header .lo-header__links button,
body .lo-site-header .lo-header__join,
body .lo-site-header .lo-header__login {
  height: 34px !important;
  min-width: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  font-size: clamp(14px, .95vw, 17px) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: .035em !important;
}

body .lo-site-header .lo-header__links button:hover,
body .lo-site-header .lo-header__join:hover,
body .lo-site-header .lo-header__login:hover,
body .lo-site-header .lo-header__links button:focus-visible,
body .lo-site-header .lo-header__join:focus-visible,
body .lo-site-header .lo-header__login:focus-visible {
  color: #5f4100 !important;
}

body.is-authenticated .lo-site-header .lo-header__join {
  display: none !important;
}

body .lo-site-header .lo-header__auth,
body .lo-site-header .lo-header__auth form {
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
}

body .lo-site-header .lo-header__login {
  min-width: 96px !important;
  padding: 0 24px !important;
  border: 1px solid rgba(87, 64, 10, .30) !important;
  border-radius: 999px !important;
  background: rgba(255, 239, 160, .18) !important;
  box-shadow: inset 0 1px 0 rgba(255, 245, 180, .30) !important;
}

body .lo-site-header .lo-header__icon {
  position: relative !important;
  width: var(--lo-header-icon) !important;
  height: var(--lo-header-icon) !important;
  min-width: var(--lo-header-icon) !important;
  min-height: var(--lo-header-icon) !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--lo-header-text) !important;
  border: 1px solid rgba(87, 64, 10, .26) !important;
  border-radius: 999px !important;
  background: rgba(255, 239, 160, .16) !important;
  box-shadow: inset 0 1px 0 rgba(255, 245, 180, .24) !important;
}

body .lo-site-header .lo-header__instagram,
body .lo-site-header .lo-header__mobile-instagram {
  border-color: transparent !important;
  background: transparent !important;
  box-shadow:
    0 8px 18px rgba(87, 56, 0, .16) !important;
  overflow: hidden !important;
}

body .lo-site-header .lo-header__icon svg {
  width: 22px !important;
  height: 22px !important;
  display: block !important;
  color: currentColor !important;
}

body .lo-site-header .lo-header__social-img {
  width: 36px !important;
  height: 36px !important;
  display: block !important;
  border-radius: 999px !important;
  object-fit: cover !important;
  filter:
    saturate(1.08)
    contrast(1.04)
    drop-shadow(0 3px 5px rgba(68, 36, 0, .30))
    drop-shadow(0 0 10px rgba(250, 194, 10, .18)) !important;
}

body .lo-site-header .lo-header__cart,
body .lo-site-header .lo-header__mobile-cart {
  width: calc(var(--lo-header-icon) + 14px) !important;
  min-width: calc(var(--lo-header-icon) + 14px) !important;
  border-color: rgba(10, 8, 2, .34) !important;
  background: rgba(255, 239, 160, .24) !important;
}

body .lo-site-header .lo-header__cart .basket-item-count,
body .lo-site-header .lo-header__mobile-cart .basket-item-count {
  position: absolute !important;
  top: 50% !important;
  right: 7px !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: #050402 !important;
  color: var(--lo-header-gold) !important;
  font-size: 13px !important;
  line-height: 1 !important;
  text-shadow: none !important;
  transform: translateY(-50%) !important;
}

body .lo-site-header .lo-header__cart:has(.basket-item-count) svg,
body .lo-site-header .lo-header__mobile-cart:has(.basket-item-count) svg {
  transform: translateX(-5px) !important;
}

body .lo-header__mobile-actions,
body .lo-header__drawer-commerce,
body .lo-header__youtube,
body .lo-header__mobile-youtube,
body .lo-header__mobile-tiktok {
  display: none !important;
}

body .site-content {
  margin-top: var(--lo-header-height) !important;
}

@media (max-width: 899px) {
  :root {
    --lo-header-height: 72px;
    --lo-header-height-compact: 58px;
    --lo-header-logo-left: 50%;
    --lo-header-logo-width: 48px;
    --lo-header-logo-height: 100px;
    --lo-header-logo-top: -20px;
    --lo-header-icon: 38px;
    --lo-header-mobile-edge: clamp(14px, 4.2vw, 24px);
    --lo-header-mobile-pill: 44px;
    --lo-header-mobile-cart: 54px;
    --lo-header-mobile-menu: 44px;
    --lo-header-mobile-gap: 8px;
    --lo-header-mobile-menu-gap: 14px;
    --lo-site-header-height: var(--lo-header-height);
    --headerHeight: var(--lo-header-height);
  }

  body.lo-header-condensed {
    --lo-header-logo-width: 46px;
    --lo-header-logo-height: 96px;
    --lo-header-logo-top: -25px;
  }

  body .lo-header__inner {
    padding: 0 var(--lo-header-mobile-edge) !important;
  }

  body .lo-site-header .lo-header__brand {
    left: 50% !important;
    z-index: 8 !important;
  }

  body .lo-header__mobile-actions {
    position: absolute !important;
    inset: 0 var(--lo-header-mobile-edge) !important;
    z-index: 7 !important;
    display: block !important;
    pointer-events: none !important;
  }

  body .lo-site-header .lo-header__mobile-actions > .lo-header__icon,
  body .lo-site-header .lo-header__mobile-actions > .lo-header__mobile-logout {
    position: absolute !important;
    top: 50% !important;
    pointer-events: auto !important;
    transform: translateY(-50%) !important;
  }

  body .lo-site-header .lo-header__mobile-actions > .lo-header__icon {
    width: var(--lo-header-mobile-pill) !important;
    height: var(--lo-header-mobile-pill) !important;
    min-width: var(--lo-header-mobile-pill) !important;
    min-height: var(--lo-header-mobile-pill) !important;
  }

  body .lo-site-header .lo-header__mobile-actions > .lo-header__mobile-logout .lo-header__icon {
    position: static !important;
    width: var(--lo-header-mobile-pill) !important;
    height: var(--lo-header-mobile-pill) !important;
    min-width: var(--lo-header-mobile-pill) !important;
    min-height: var(--lo-header-mobile-pill) !important;
    transform: none !important;
  }

  body .lo-site-header .lo-header__mobile-actions > .lo-header__mobile-login,
  body .lo-site-header .lo-header__mobile-actions > .lo-header__mobile-logout {
    left: auto !important;
    right: calc(var(--lo-header-mobile-menu) + var(--lo-header-mobile-menu-gap) + var(--lo-header-mobile-cart) + var(--lo-header-mobile-gap)) !important;
  }

  body .lo-site-header .lo-header__mobile-actions > .lo-header__mobile-instagram {
    left: 0 !important;
    right: auto !important;
  }

  body .lo-site-header .lo-header__mobile-actions > .lo-header__mobile-cart {
    left: auto !important;
    right: calc(var(--lo-header-mobile-menu) + var(--lo-header-mobile-menu-gap)) !important;
    width: var(--lo-header-mobile-cart) !important;
    min-width: var(--lo-header-mobile-cart) !important;
  }

  body .lo-site-header .lo-header__mobile-actions > .lo-header__menu-toggle {
    left: auto !important;
    right: 0 !important;
    width: var(--lo-header-mobile-menu) !important;
    min-width: var(--lo-header-mobile-menu) !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body .lo-header__menu-toggle span,
  body .lo-header__menu-toggle::before,
  body .lo-header__menu-toggle::after {
    content: "" !important;
    position: absolute !important;
    left: 8px !important;
    right: 8px !important;
    height: 2px !important;
    border-radius: 2px !important;
    background: #050402 !important;
    transition: transform 180ms ease, opacity 180ms ease !important;
  }

  body .lo-header__menu-toggle::before {
    top: 12px !important;
  }

  body .lo-header__menu-toggle span {
    top: 18px !important;
  }

  body .lo-header__menu-toggle::after {
    top: 24px !important;
  }

  body.mobile-menu .lo-header__menu-toggle span {
    opacity: 0 !important;
  }

  body.mobile-menu .lo-header__menu-toggle::before {
    transform: translateY(6px) rotate(45deg) !important;
  }

  body.mobile-menu .lo-header__menu-toggle::after {
    transform: translateY(-6px) rotate(-45deg) !important;
  }

  body .lo-site-header .lo-header__nav {
    position: fixed !important;
    inset: var(--lo-header-height) 0 auto 0 !important;
    z-index: 5 !important;
    width: 100vw !important;
    height: calc(100svh - var(--lo-header-height)) !important;
    padding: clamp(24px, 6vw, 38px) 18px 28px !important;
    display: grid !important;
    align-content: start !important;
    justify-content: stretch !important;
    gap: 22px !important;
    background:
      linear-gradient(180deg, rgba(255, 248, 218, .96), rgba(246, 240, 219, .96)),
      var(--lo-header-pattern) center top / 190px auto repeat !important;
    box-shadow: 0 22px 34px rgba(38, 22, 0, .20) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-110%) !important;
    transition: transform 220ms ease, opacity 180ms ease, visibility 180ms ease !important;
  }

  body.mobile-menu .lo-site-header .lo-header__nav,
  body .lo-site-header .lo-header__nav.is-mobile-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  body .lo-site-header .lo-header__links,
  body .lo-site-header .lo-header__actions {
    height: auto !important;
    display: grid !important;
    justify-items: center !important;
    gap: 0 !important;
  }

  body .lo-site-header .lo-header__links li {
    width: min(100%, 440px) !important;
    border-bottom: 1px solid rgba(21, 15, 4, .15) !important;
  }

  body .lo-site-header .lo-header__links li.lo-header__news-events {
    min-height: 52px !important;
    display: inline-flex !important;
    gap: .5em !important;
  }

  body .lo-site-header .lo-header__links button,
  body .lo-site-header .lo-header__join,
  body .lo-site-header .lo-header__login,
  body .lo-header__drawer-commerce a {
    width: min(100%, 440px) !important;
    min-height: 52px !important;
    font-size: clamp(1.05rem, 5vw, 1.35rem) !important;
    text-align: center !important;
  }

  body .lo-site-header .lo-header__links li.lo-header__news-events button {
    width: auto !important;
    min-height: 52px !important;
  }

  body .lo-site-header .lo-header__links li.lo-header__news-events span {
    font-size: clamp(1.05rem, 5vw, 1.35rem) !important;
  }

  body .lo-site-header .lo-header__cart,
  body .lo-site-header .lo-header__instagram {
    display: none !important;
  }

  body .lo-header__drawer-commerce {
    width: min(100%, 440px) !important;
    margin: 0 auto !important;
    display: grid !important;
    gap: 10px !important;
  }
}

@media (max-width: 520px) {
  :root {
    --lo-header-mobile-edge: clamp(10px, 3.2vw, 16px);
    --lo-header-mobile-pill: 42px;
    --lo-header-mobile-cart: 56px;
    --lo-header-mobile-menu: 42px;
    --lo-header-mobile-gap: 8px;
    --lo-header-mobile-menu-gap: 10px;
    --lo-header-logo-width: clamp(44px, 12.4vw, 48px);
    --lo-header-logo-height: clamp(94px, 25.4vw, 100px);
  }

  body .lo-site-header .lo-header__mobile-actions > .lo-header__mobile-login,
  body .lo-site-header .lo-header__mobile-actions > .lo-header__mobile-logout {
    display: none !important;
  }

  body .lo-site-header .lo-header__mobile-actions > .lo-header__mobile-cart {
    right: calc(var(--lo-header-mobile-menu) + var(--lo-header-mobile-menu-gap)) !important;
  }
}

@media (max-width: 380px) {
  :root {
    --lo-header-mobile-pill: 40px;
    --lo-header-mobile-cart: 52px;
    --lo-header-mobile-menu: 40px;
    --lo-header-mobile-menu-gap: 8px;
    --lo-header-logo-width: 44px;
    --lo-header-logo-height: 92px;
  }
}
