:root {
  --olr-store-ink: #211812;
  --olr-store-ivory: #f8f3eb;
  --olr-store-gold: #c9983f;
  --olr-store-muted: #aaa098;
  --olr-store-border: rgb(201 152 63 / 24%);
}

.olr-ecomus-brand-shell #campaign-bar,
.olr-ecomus-brand-shell #site-header,
.olr-ecomus-brand-shell #site-footer {
  display: none !important;
}

.olr-store-header,
.olr-store-footer,
.olr-store-mobile-menu {
  box-sizing: border-box;
  font-family: Karla, Arial, sans-serif;
}

.olr-store-header *,
.olr-store-footer *,
.olr-store-mobile-menu * {
  box-sizing: border-box;
}

.olr-store-header {
  background: rgb(33 24 18 / 97%);
  border-bottom: 1px solid var(--olr-store-border);
  color: var(--olr-store-ivory);
  position: sticky;
  top: 0;
  z-index: 999;
}

body.admin-bar .olr-store-header {
  top: 32px;
}

.olr-store-header__inner {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  height: 80px;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 48px;
}

.olr-store-header__logo {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  justify-self: start;
}

.olr-store-header__logo img {
  display: block;
  height: 44px;
  object-fit: contain;
  width: auto;
}

.olr-store-header__nav {
  align-items: center;
  display: flex;
  gap: 21px;
  justify-content: center;
}

.olr-store-header__nav > a,
.olr-store-header__dropdown > summary {
  color: var(--olr-store-ivory);
  cursor: pointer;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.3;
  list-style: none;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
  white-space: nowrap;
}

.olr-store-header__nav > a:hover,
.olr-store-header__dropdown > summary:hover {
  color: var(--olr-store-gold);
}

.olr-store-header__dropdown {
  position: relative;
}

.olr-store-header__dropdown > summary::-webkit-details-marker {
  display: none;
}

.olr-store-header__dropdown > summary::after {
  content: "⌄";
  margin-left: 7px;
}

.olr-store-header__submenu {
  background: var(--olr-store-ink);
  border: 1px solid var(--olr-store-border);
  box-shadow: 0 18px 40px rgb(0 0 0 / 18%);
  display: grid;
  left: 50%;
  min-width: 220px;
  padding: 10px 0;
  position: absolute;
  top: calc(100% + 20px);
  transform: translateX(-50%);
}

.olr-store-header__dropdown--wide .olr-store-header__submenu {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 500px;
}

.olr-store-header__submenu a {
  color: var(--olr-store-ivory);
  font-size: 13px;
  padding: 10px 18px;
  text-decoration: none;
}

.olr-store-header__submenu a:hover {
  background: rgb(255 255 255 / 7%);
  color: var(--olr-store-gold);
}

.olr-store-header__actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 17px;
  justify-self: end;
}

.olr-store-header__action {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--olr-store-ivory);
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  min-height: 40px;
  min-width: 28px;
  padding: 0;
  position: relative;
  text-decoration: none;
}

.olr-store-header__action:hover {
  color: var(--olr-store-gold);
}

.olr-store-header__action svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 22px;
}

.olr-store-cart-count {
  align-items: center;
  background: var(--olr-store-gold);
  border-radius: 999px;
  color: var(--olr-store-ink);
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  height: 18px;
  justify-content: center;
  min-width: 18px;
  padding: 0 4px;
  position: absolute;
  right: -8px;
  top: 1px;
}

.olr-store-header__menu-toggle {
  display: none;
}

.olr-store-mobile-menu {
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 1100;
}

.olr-store-mobile-menu.is-open {
  pointer-events: auto;
}

.olr-store-mobile-menu__backdrop {
  background: rgb(0 0 0 / 45%);
  border: 0;
  inset: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  transition: opacity 240ms ease;
  width: 100%;
}

.olr-store-mobile-menu.is-open .olr-store-mobile-menu__backdrop {
  opacity: 1;
}

.olr-store-mobile-menu__panel {
  background: var(--olr-store-ink);
  color: var(--olr-store-ivory);
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 430px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(102%);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  width: min(88vw, 430px);
}

.olr-store-mobile-menu.is-open .olr-store-mobile-menu__panel {
  transform: none;
}

.olr-store-mobile-menu__head {
  align-items: center;
  border-bottom: 1px solid var(--olr-store-border);
  display: flex;
  height: 80px;
  justify-content: space-between;
  padding: 0 24px;
}

.olr-store-mobile-menu__head img {
  height: 34px;
  object-fit: contain;
  width: auto;
}

.olr-store-mobile-menu__head button {
  background: transparent;
  border: 0;
  color: var(--olr-store-ivory);
  height: 42px;
  padding: 8px;
  width: 42px;
}

.olr-store-mobile-menu__head svg {
  fill: none;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
  width: 24px;
}

.olr-store-mobile-menu__nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow-y: auto;
  padding: 18px 24px;
}

.olr-store-mobile-menu__nav a {
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  color: var(--olr-store-ivory);
  font-size: 12px;
  letter-spacing: 0.16em;
  padding: 15px 0;
  text-decoration: none;
  text-transform: uppercase;
}

.olr-store-mobile-menu__nav a:hover {
  color: var(--olr-store-gold);
}

.olr-store-mobile-menu__group {
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.olr-store-mobile-menu__group > summary {
  color: var(--olr-store-ivory);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.16em;
  list-style: none;
  padding: 15px 0;
  position: relative;
  text-transform: uppercase;
}

.olr-store-mobile-menu__group > summary::-webkit-details-marker {
  display: none;
}

.olr-store-mobile-menu__group > summary::after {
  content: "+";
  font-size: 16px;
  position: absolute;
  right: 2px;
  top: 12px;
}

.olr-store-mobile-menu__group[open] > summary::after {
  content: "−";
}

.olr-store-mobile-menu__submenu {
  display: grid;
  padding: 0 0 10px 14px;
}

.olr-store-mobile-menu__group--wide .olr-store-mobile-menu__submenu {
  column-gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.olr-store-mobile-menu__submenu a {
  border: 0;
  font-size: 13px;
  letter-spacing: 0;
  padding: 8px 0;
  text-transform: none;
}

.olr-store-mobile-menu__foot {
  border-top: 1px solid var(--olr-store-border);
  color: var(--olr-store-muted);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 22px 24px;
  text-transform: uppercase;
}

.olr-store-menu-open {
  overflow: hidden;
}

.olr-store-footer {
  background: var(--olr-store-ink);
  border-top: 1px solid var(--olr-store-border);
  color: var(--olr-store-ivory);
  margin-top: 0;
}

.olr-store-footer__grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 2fr repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1400px;
  padding: 78px 48px 68px;
}

.olr-store-footer__brand img {
  display: block;
  height: 40px;
  object-fit: contain;
  width: auto;
}

.olr-store-footer__brand p,
.olr-store-footer__brand address {
  color: var(--olr-store-muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
  margin: 24px 0 0;
  max-width: 390px;
}

.olr-store-footer__brand address strong {
  color: var(--olr-store-ivory);
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.olr-store-footer__grid h2 {
  color: var(--olr-store-ivory);
  font-family: Karla, Arial, sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.olr-store-footer__grid > div:not(.olr-store-footer__brand) {
  align-content: start;
  display: grid;
  gap: 12px;
}

.olr-store-footer__grid a {
  color: var(--olr-store-muted);
  font-size: 14px;
  text-decoration: none;
}

.olr-store-footer__grid a:hover {
  color: var(--olr-store-gold);
}

.olr-store-footer__bottom {
  border-top: 1px solid var(--olr-store-border);
  color: var(--olr-store-muted);
  display: flex;
  font-size: 10px;
  gap: 20px;
  justify-content: space-between;
  letter-spacing: 0.16em;
  margin: 0 auto;
  padding: 22px max(48px, calc((100vw - 1400px) / 2 + 48px));
  text-transform: uppercase;
}

@media (max-width: 1099px) {
  .olr-store-header__nav {
    display: none;
  }

  .olr-store-header__menu-toggle {
    display: inline-flex;
  }

  .olr-store-header__inner {
    display: flex;
    justify-content: space-between;
    padding: 0 28px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .olr-store-header {
    top: 46px;
  }

  .olr-store-header__inner {
    height: 74px;
    padding: 0 20px;
  }

  .olr-store-header__logo img {
    height: 34px;
  }

  .olr-store-header__actions {
    gap: 12px;
  }

  .olr-store-header__optional-action {
    display: none;
  }

  .olr-store-footer__grid {
    grid-template-columns: 1fr 1fr;
    padding: 58px 24px 50px;
  }

  .olr-store-footer__brand {
    grid-column: 1 / -1;
  }

  .olr-store-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 24px;
  }
}

@media (max-width: 480px) {
  .olr-store-header__inner {
    padding: 0 16px;
  }

  .olr-store-header__logo img {
    height: 30px;
  }

  .olr-store-header__actions {
    gap: 8px;
  }

  .olr-store-footer__grid {
    grid-template-columns: 1fr;
  }

  .olr-store-footer__brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .olr-store-mobile-menu__backdrop,
  .olr-store-mobile-menu__panel {
    transition-duration: 0.01ms;
  }
}
