/** Shopify CDN: Minification failed

Line 417:1 Expected "}" to go with "{"

**/
/* ========================================
   XOPH HEADER
======================================== */

/* Sticky wrapper */

.shopify-section-group-header-group {
  position: sticky;
  top: 0;
  z-index: 9999;
}

.xoph-header {
  display: block;
  background: var(--xoph-bone);
  color: var(--xoph-charcoal);
}

/* Hide announcement markup if it still exists in Liquid */

.xoph-announcement {
  display: none !important;
}


/* ========================================
   DESKTOP HEADER
======================================== */

.xoph-header__main {
  position: relative;

  height: 150px;
  min-height: 110px;

  padding: 0 48px;

  background: var(--xoph-bone);
  border-bottom: 1px solid rgba(42, 42, 42, 0.12);

  transition: box-shadow 0.25s ease;
}


/* Logo */

.xoph-header__logo {
  position: absolute;

  top: 36%;
  left: 50%;

  transform: translate(-50%, -50%);

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0;
  line-height: 1;
}

.xoph-header__logo-image {
  display: block;

  height: 40px;
  width: auto;
}


/* Desktop navigation */

.xoph-header__nav {
  position: absolute;

  top: 70%;
  left: 50%;

  transform: translate(-50%, -50%);

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 60px;
}

.xoph-header__nav a {
  color: var(--xoph-charcoal);
  text-decoration: none;

  font-family: var(--xoph-font-heading);
  font-size: 18px;
  font-weight: 500;

  letter-spacing: 0.03em;
  line-height: 19px;

  text-transform: uppercase;
}


/* Cart */

.xoph-header__cart {
  position: absolute;

  top: 70%;
  right: 125px;

  transform: translateY(-50%);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--xoph-charcoal);
  text-decoration: none;
}

.xoph-cart-svg,
.xoph-header__cart svg {
  width: 26px;
  height: 26px;

  display: block;
}

.xoph-header__cart-count {
  position: absolute;

  top: -4px;
  right: -6px;

  width: 18px;
  height: 18px;
  min-width: 18px;

  border-radius: 50%;

  background: var(--xoph-olive);
  color: var(--xoph-bone);

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: var(--xoph-font-heading);
  font-size: 11px;
  font-weight: 500;

  line-height: 1;
}


/* ========================================
   STICKY HEADER SHADOW
======================================== */

.xoph-header.is-scrolled .xoph-header__main {
  box-shadow: 0 1px 6px rgba(42, 42, 42, 0.12);
}


/* ========================================
   MOBILE BASE
======================================== */

.xoph-header__menu-button,
.xoph-mobile-menu {
  display: none;
}

.xoph-header__icon--close {
  display: none;
}

.xoph-header.is-menu-open .xoph-header__icon--menu {
  display: none;
}

.xoph-header.is-menu-open .xoph-header__icon--close {
  display: block;
}


/* ========================================
   MOBILE HEADER + DRAWER
======================================== */

@media screen and (max-width: 749px) {

  body.xoph-menu-open {
    overflow: hidden;
    touch-action: none;
  }


  /* Sticky wrapper */

  .shopify-section-group-header-group {
    top: 0;
  }


  /* Header shell */

  .xoph-header__main {
    height: 80px;
    min-height: 80px;

    padding: 0;

    z-index: 10001;
  }

  .xoph-header__nav {
    display: none;
  }


  /* Hamburger */

  .xoph-header__menu-button {
    position: absolute;

    top: 50%;
    left: 30px;

    transform: translateY(-50%);

    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    margin: 0;

    background: none;
    border: 0;

    color: var(--xoph-charcoal);

    cursor: pointer;
  }

  .xoph-header__menu-button svg {
    width: 24px;
    height: 24px;

    display: block;
  }

  /* Close icon — sized separately */

.xoph-header__icon--close svg {
  width: 20px;
  height: 20px;
}


  /* Logo */

  .xoph-header__logo {
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
  }

  .xoph-header__logo-image {
    height: 23px;
  }


  /* Cart */

  .xoph-header__cart {
    top: 50%;
    right: 30px;

    transform: translateY(-50%);
  }

  .xoph-cart-svg,
  .xoph-header__cart svg {
    width: 25px;
    height: 25px;
  }

  .xoph-header__cart-count {
    top: -4px;
    right: -5px;

    width: 16px;
    height: 16px;
    min-width: 16px;

    font-size: 11px;
    font-weight: 700;
  }


  /* Drawer */

  .xoph-mobile-menu {
    position: fixed;

    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;

    z-index: 10000;

    display: none;

    background: var(--xoph-bone);
  }

  .xoph-header.is-menu-open .xoph-mobile-menu {
    display: block;
  }


  /* Drawer navigation */

  .xoph-mobile-menu__nav {
    display: flex;
    flex-direction: column;

    gap: 30px;

    padding-top: 25px;
    padding-left: 25px;
  }

  .xoph-mobile-menu__nav a {
    display: block;

    color: var(--xoph-charcoal);
    text-decoration: none;

    font-family: var(--xoph-font-heading);
    font-size: 19px;
    font-weight: 600;

    letter-spacing: 0.03em;
    line-height: 1;

    text-transform: uppercase;
  }


  /* Members bar */

  .xoph-mobile-menu__members {
    position: fixed;

    right: 0;
    bottom: 25px;
    left: 0;

    height: 60px;

    background: var(--xoph-charcoal);
    color: var(--xoph-bone);

    display: flex;
    align-items: center;

    text-decoration: none;
  }

  .xoph-mobile-menu__members-icon {
    width: 22px;
    height: 22px;

    margin-left: 25px;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .xoph-mobile-menu__members-icon svg {
    width: 100%;
    height: 100%;

    display: block;
  }

  .xoph-mobile-menu__members-text {
    margin-left: 12px;

    color: var(--xoph-bone);

    text-decoration: none;

    font-family: var(--xoph-font-heading);
    font-size: 18px;
    font-weight: 400;

    letter-spacing: 0.03em;
    line-height: 1;

    text-transform: uppercase;

}