/** Shopify CDN: Minification failed

Line 79:17 Expected identifier but found whitespace
Line 79:18 Unexpected "2.52px"
Line 103:3 Unexpected "/"

**/
.page-beyond .shopify-section-group-beyond-header-group .top-announcement {
  display: none;
}

.page-beyond header.header .header__heading, 
.page-beyond header.header a.header__heading-link {
    width: 176px;
}

/* ─── Brand Switcher Bar ─────────────────────────────────────────────────── */
/* .brand-switcher {
  width: 100%;
  background-color: #122345;   
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  position: sticky;
  top: 0;
  z-index: 10001;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.brand-switcher__pills {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
}

.brand-switcher__btn {
  flex: 1;
  padding: 10px 36px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: "Italiana", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.25px !important; 
  letter-spacing: 5.4px;
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
  user-select: none;
  line-height: 1.2;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
}
.brand-switcher__btn sup {
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.50);
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 9px;
  font-style: italic;
  font-weight: 400;
  line-height: 13.95px;
}
.brand-switcher__btn span {
  display: block;
  color: rgba(255, 255, 255, 0.50);
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-style: normal;
  font-weight: 400;
  line-height: 13.95px; /* 155% */
  letter-spacing: 2.52px;
  margin-top: 3px;
}
.brand-switcher__btn:hover {
  transform: translateY(-1px);
}

.brand-switcher__btn--active {
  background-color: #EFBF43;
  color: #122345;
  pointer-events: none; 
}
.brand-switcher__btn--active sup,
.brand-switcher__btn--active span {
  color: #122345;
}

@media (max-width: 767px) {
  .brand-switcher__btn {
    padding: 10px 10px;
  }
  .brand-switcher__btn span {
    letter-spacing: 1px;
  }
} */

/* ─── BEYOND Header ──────────────────────────────────────────────────────── */
.beyond-header {
  display: block;
  background-color: #ffffff;
  border-bottom: 1px solid #e8e3d8;
  position: sticky;
  top: 58px; /* sits below the sticky brand-switcher bar */
  z-index: 10000;
}

.beyond-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1600px;
  margin: 0 auto;
}

.beyond-header__menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 44px;
}

.beyond-header__menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: #122345;
  transition: opacity 0.2s;
}

.beyond-header__menu-btn:hover span {
  opacity: 0.6;
}

.beyond-header__logo {
  font-family: var(--font-heading-family, serif);
  font-size: 2rem;
  letter-spacing: 0.18em;
  color: #122345;
  text-decoration: none;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.beyond-header__icons {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 44px;
  justify-content: flex-end;
}

.beyond-header__icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #122345;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.beyond-header__icon-btn svg {
  width: 22px;
  height: 22px;
  stroke: #122345;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.beyond-header__cart-count {
  position: absolute;
  top: 0px;
  right: 0px;
  background: #122345;
  color: #ffffff;
  font-size: 1rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body-family, sans-serif);
  font-weight: 600;
  line-height: 1;
}

/* ─── BEYOND Mobile Drawer ───────────────────────────────────────────────── */
.beyond-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 20000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.beyond-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #ffffff;
  z-index: 20001;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 0;
}

.beyond-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e8e3d8;
}

.beyond-drawer__brand {
  font-family: var(--font-heading-family, serif);
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  color: #122345;
  text-transform: uppercase;
}

.beyond-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2.4rem;
  color: #122345;
  line-height: 1;
  padding: 0;
}

.beyond-drawer__nav {
  padding: 16px 0;
}

.beyond-drawer__nav-link {
  display: block;
  padding: 14px 24px;
  text-decoration: none;
  color: #122345;
  font-family: var(--font-heading-family, serif);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid #f0ece3;
  transition: background 0.2s;
}

.beyond-drawer__nav-link:hover {
  background: #faf6ec;
}

.beyond-drawer__footer {
  padding: 24px;
  border-top: 1px solid #e8e3d8;
  margin-top: auto;
}

.beyond-drawer__footer-brand {
  font-family: var(--font-heading-family, serif);
  font-size: 1.8rem;
  color: #efbf43;
  letter-spacing: 0.12em;
}

/* Open state */
.beyond-drawer-overlay.is-open {
  display: block;
  opacity: 1;
}

.beyond-drawer.is-open {
  transform: translateX(0);
}

/* ─── BEYOND Footer ──────────────────────────────────────────────────────── */
.beyond-footer {
  display: block;
  background-color: #122345;
  color: #ede5d3;
  padding: 48px 24px 24px;
}

.beyond-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.beyond-footer__brand {
  font-family: var(--font-heading-family, serif);
  font-size: 2.8rem;
  letter-spacing: 0.15em;
  color: #efbf43;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.beyond-footer__tagline {
  font-size: 1.4rem;
  color: #ede5d3;
  opacity: 0.7;
  margin-bottom: 36px;
  letter-spacing: 0.03em;
}

.beyond-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

@media (max-width: 749px) {
  .beyond-footer__columns {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.beyond-footer__col-title {
  font-family: var(--font-heading-family, serif);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #efbf43;
  margin-bottom: 12px;
}

.beyond-footer__col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.beyond-footer__col-link {
  color: #ede5d3;
  text-decoration: none;
  font-size: 1.3rem;
  opacity: 0.65;
  transition: opacity 0.2s;
  letter-spacing: 0.02em;
}

.beyond-footer__col-link:hover {
  opacity: 1;
}

.beyond-footer__bottom {
  border-top: 1px solid rgba(237, 229, 211, 0.15);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.beyond-footer__copyright {
  font-size: 1.2rem;
  opacity: 0.45;
}

