/** Shopify CDN: Minification failed

Line 17:20 Unexpected "{"
Line 17:32 Expected ":"
Line 18:20 Unexpected "{"
Line 18:32 Expected ":"
Line 19:20 Unexpected "{"
Line 19:32 Expected ":"

**/
/* ============================================================
   G Jones Club — Header Three
   Premium editorial header: promo bar + logo/nav/icons
   ============================================================ */

/* ── Reset ── */
#GjonesHeaderThree-{{ section_id }} *,
#GjonesHeaderThree-{{ section_id }} *::before,
#GjonesHeaderThree-{{ section_id }} *::after {
  box-sizing: border-box;
}

/* ── Root wrapper ── */
.gjones-h3-root {
  position: relative;
  z-index: 200;
  width: 100%;
}

/* ── Sticky (position applied to outer #shopify-section wrapper via Liquid style block) ──
   Glass transition rules live in the Liquid {%- style -%} block so they share
   the same ID-level specificity as the solid background-color rule. */

/* ── Promo Bar ── */
.gjones-h3-promo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-height: 120px;
  position: relative;
  transition: max-height 0.35s cubic-bezier(0.32, 0.72, 0, 1),
              opacity 0.3s ease,
              padding 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  overflow: hidden;
}

.gjones-h3-promo.is-hidden {
  max-height: 0 !important;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}

.gjones-h3-promo__text {
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

.gjones-h3-promo__link {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: inherit;
  white-space: nowrap;
}

.gjones-h3-promo__inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gjones-h3-promo__dismiss {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: opacity 0.2s;
  color: inherit;
}

.gjones-h3-promo__dismiss:hover {
  opacity: 1;
}

.gjones-h3-promo__dismiss svg {
  display: block;
}

/* ── Header Bar ── */
.gjones-h3-bar {
  width: 100%;
  transition: background-color 0.3s ease,
              box-shadow 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  position: relative;
}

.gjones-h3-bar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  transition: padding 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

/* Scrolled: compact height — values driven from section settings */

/* ── Logo (Left) ── */
.gjones-h3-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.gjones-h3-logo__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  line-height: 1;
}

.gjones-h3-logo__img {
  display: block;
  height: auto;
  transition: width 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.gjones-h3-logo__text {
  white-space: nowrap;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  transition: font-size 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

/* ── Desktop Nav (Center) ── */
.gjones-h3-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gjones-h3-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gjones-h3-nav__item {
  position: relative;
}

.gjones-h3-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  white-space: nowrap;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  font-family: inherit;
  font-weight: inherit;
  position: relative;
  transition: opacity 0.2s;
}

.gjones-h3-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.28s cubic-bezier(0.32, 0.72, 0, 1);
}

.gjones-h3-nav__link:hover::after,
.gjones-h3-nav__link[aria-current="page"]::after {
  width: 100%;
}

.gjones-h3-nav__link:hover {
  opacity: 0.7;
}

.gjones-h3-nav__chevron {
  display: block;
  transition: transform 0.22s cubic-bezier(0.32, 0.72, 0, 1);
  flex-shrink: 0;
}

.gjones-h3-nav__item.is-open > .gjones-h3-nav__link .gjones-h3-nav__chevron {
  transform: rotate(180deg);
}

/* ── Mega Dropdown ── */
.gjones-h3-mega {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 180px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease,
              transform 0.25s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 300;
  padding: 8px 0;
}

.gjones-h3-nav__item.is-open > .gjones-h3-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.gjones-h3-mega__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gjones-h3-mega__item {
  position: relative;
}

.gjones-h3-mega__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #000000;
  text-decoration: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, opacity 0.15s;
}

.gjones-h3-mega__link:hover {
  background: rgba(0, 0, 0, 0.04);
  opacity: 1;
}

/* Level 3 submenu */
.gjones-h3-mega__sub {
  position: absolute;
  left: 100%;
  top: -8px;
  min-width: 160px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.22s cubic-bezier(0.32, 0.72, 0, 1);
  transform: translateX(-6px);
  padding: 8px 0;
  z-index: 301;
}

.gjones-h3-mega__item.is-open > .gjones-h3-mega__sub {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.gjones-h3-mega__sub .gjones-h3-mega__link {
  font-size: 12px;
}

/* ── Simple Dropdown ── */
.gjones-h3-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 180px;
  background: var(--h3-bg, #ffffff);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease,
              transform 0.25s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 300;
  padding: 8px 0;
}

.gjones-h3-nav__item.is-open > .gjones-h3-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.gjones-h3-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gjones-h3-dropdown__link {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--h3-text, #000000);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, opacity 0.15s;
}

.gjones-h3-dropdown__link:hover {
  background: rgba(0, 0, 0, 0.04);
}

.gjones-h3-dropdown__link[aria-current="page"] {
  font-weight: 600;
}

/* Hide on mobile (drawer handles nav) */
@media screen and (max-width: 749px) {
  .gjones-h3-dropdown {
    display: none !important;
  }
}

/* ── Actions (Right) ── */
.gjones-h3-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.gjones-h3-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: opacity 0.2s, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.gjones-h3-action:hover {
  opacity: 0.65;
}

.gjones-h3-action:active {
  transform: scale(0.9);
}

.gjones-h3-action svg {
  display: block;
  flex-shrink: 0;
}

/* Cart badge */
.gjones-h3-cart-count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 16px;
  height: 16px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 4px;
  pointer-events: none;
}

/* ── Hamburger (Mobile only, hidden on desktop) ── */
.gjones-h3-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: inherit;
  transition: opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.gjones-h3-hamburger:hover {
  opacity: 0.65;
}

.gjones-h3-hamburger__line {
  display: block;
  height: 1.2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1),
              opacity 0.3s ease,
              width 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  transform-origin: center;
}

/* Hamburger → X animation */
.gjones-h3-hamburger.is-active .gjones-h3-hamburger__line:nth-child(1) {
  transform: translateY(6.2px) rotate(45deg);
}

.gjones-h3-hamburger.is-active .gjones-h3-hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.gjones-h3-hamburger.is-active .gjones-h3-hamburger__line:nth-child(3) {
  transform: translateY(-6.2px) rotate(-45deg);
}

/* ── Drawer overlay ── */
.gjones-h3-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 400;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.gjones-h3-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ── Mobile Drawer ── */
.gjones-h3-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 85vw;
  height: 100%;
  height: 100dvh;
  z-index: 500;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
}

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

.gjones-h3-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding: 0 20px;
  min-height: 56px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.gjones-h3-drawer__logo-link {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gjones-h3-drawer__logo-img {
  display: block;
  height: auto;
}

.gjones-h3-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: inherit;
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-tap-highlight-color: transparent;
}

.gjones-h3-drawer__close:hover {
  opacity: 1;
}

.gjones-h3-drawer__close:active {
  transform: scale(0.88);
}

/* Drawer panels container — slides horizontally */
.gjones-h3-drawer__panels {
  flex: 1;
  display: flex;
  overflow: hidden;
  position: relative;
}

.gjones-h3-drawer__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.32, 0.72, 0, 1);
  overscroll-behavior: contain;
}

/* Hide scrollbar */
.gjones-h3-drawer__panel::-webkit-scrollbar {
  display: none;
}

.gjones-h3-drawer__panel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gjones-h3-drawer__panel.is-active {
  transform: translateX(0);
}

.gjones-h3-drawer__panel.is-exit {
  transform: translateX(-100%);
}

/* Panel back bar */
.gjones-h3-drawer__back-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.gjones-h3-drawer__back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: inherit;
  opacity: 0.55;
  transition: opacity 0.2s;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

.gjones-h3-drawer__back-btn:hover {
  opacity: 1;
}

/* Drawer nav list */
.gjones-h3-drawer__nav {
  padding: 8px 0 32px;
  flex: 1;
}

.gjones-h3-drawer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gjones-h3-drawer__nav-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.gjones-h3-drawer__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.04em;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.gjones-h3-drawer__nav-link:hover,
.gjones-h3-drawer__nav-link:active {
  background: rgba(0, 0, 0, 0.03);
}

.gjones-h3-drawer__nav-link[aria-current="page"] {
  font-weight: 600;
}

.gjones-h3-drawer__nav-chevron {
  opacity: 0.4;
  flex-shrink: 0;
}

/* ── Search Overlay ── */
.gjones-h3-search {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.gjones-h3-search.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gjones-h3-search__close {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: inherit;
  opacity: 0.45;
  transition: opacity 0.2s, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-tap-highlight-color: transparent;
}

.gjones-h3-search__close:hover {
  opacity: 1;
}

.gjones-h3-search__close:active {
  transform: scale(0.88);
}

/* Inner content container */
.gjones-h3-search__inner {
  flex: 1;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 40px 40px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Search form */
.gjones-h3-search__form {
  width: 100%;
  position: relative;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  margin-bottom: 28px;
}

.gjones-h3-search__input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0 52px 0 0;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: inherit;
  font-family: inherit;
  outline: none;
  line-height: 1.2;
}

.gjones-h3-search__input::placeholder {
  opacity: 0.22;
}

.gjones-h3-search__input:focus,
.gjones-h3-search__input:focus-visible {
  outline: none;
  box-shadow: none;
}

.gjones-h3-search__input::-webkit-search-cancel-button,
.gjones-h3-search__input::-webkit-search-decoration,
.gjones-h3-search__input::-ms-clear {
  display: none !important;
  -webkit-appearance: none;
}

.gjones-h3-search__submit {
  position: absolute;
  right: 0;
  top: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: inherit;
  opacity: 0.4;
  transition: opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.gjones-h3-search__submit:hover {
  opacity: 1;
}

/* Live results panel */
.gjones-h3-search__results-panel {
  display: none;
  margin-bottom: 48px;
}

.gjones-h3-search__results-panel.is-visible {
  display: block;
}

.gjones-h3-search__results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.gjones-h3-search__results-all {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  opacity: 0.45;
  transition: opacity 0.2s;
}

.gjones-h3-search__results-all:hover {
  opacity: 1;
}

.gjones-h3-search__results-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.gjones-h3-search__result-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
  min-width: 0;
}

.gjones-h3-search__result-card:hover {
  opacity: 0.7;
}

.gjones-h3-search__result-img-wrap {
  display: block;
  width: 100%;
  height: 150px;
  overflow: hidden;
  background: #f0f0f0;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.gjones-h3-search__result-img {
  display: block;
  width: 100% !important;
  height: 150px !important;
  object-fit: cover !important;
  object-position: center top !important;
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.gjones-h3-search__result-card:hover .gjones-h3-search__result-img {
  transform: scale(1.05);
}

.gjones-h3-search__result-title {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gjones-h3-search__result-price {
  display: block;
  font-size: 12px;
  font-weight: 500;
}

.gjones-h3-search__no-results {
  font-size: 13px;
  opacity: 0.45;
  margin: 0;
  letter-spacing: 0.04em;
}

/* Content grid */
.gjones-h3-search__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.gjones-h3-search__content--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Section label */
.gjones-h3-search__section-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 24px;
}

/* Suggested links */
.gjones-h3-search__suggested-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.gjones-h3-search__suggested-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: inherit;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.gjones-h3-search__suggested-link:hover {
  opacity: 0.55;
}

.gjones-h3-search__suggested-arrow {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.25s cubic-bezier(0.32, 0.72, 0, 1);
}

.gjones-h3-search__suggested-link:hover .gjones-h3-search__suggested-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Trending */
.gjones-h3-search__trending-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gjones-h3-search__trending-link {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: inherit;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.gjones-h3-search__trending-link:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.35);
}

/* Mobile */
@media screen and (max-width: 749px) {
  .gjones-h3-search__inner {
    padding: 80px 24px 60px;
  }

  .gjones-h3-search__input {
    font-size: 24px;
  }

  .gjones-h3-search__suggested-link {
    font-size: 20px;
    padding: 13px 0;
  }

  .gjones-h3-search__content--two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gjones-h3-search__results-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Desktop: 750px+ ── */
@media screen and (min-width: 750px) {
  .gjones-h3-hamburger {
    display: none !important;
  }

  .gjones-h3-nav {
    display: flex;
  }

  .gjones-h3-drawer {
    display: none;
  }
}

/* ── Mobile: < 750px ── */
@media screen and (max-width: 749px) {
  .gjones-h3-bar__inner {
    grid-template-columns: auto 1fr auto;
  }

  .gjones-h3-logo {
    grid-column: 1;
  }

  .gjones-h3-actions {
    grid-column: 3;
  }

  .gjones-h3-nav {
    display: none;
  }

  .gjones-h3-hamburger {
    display: flex;
  }

  .gjones-h3-logo {
    justify-content: flex-start;
  }

  .gjones-h3-actions {
    justify-content: flex-end;
  }
}

/* ── Full-width Mega Panel (desktop only) ── */
.gjones-h3-mega--full {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #ffffff;
  border-top: none;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 300;
}

.gjones-h3-mega--full.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.gjones-h3-mega__inner {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  padding-top: 32px;
  padding-bottom: 36px;
}

.gjones-h3-mega__cols {
  display: flex;
  flex: 1;
  min-width: 0;
}

.gjones-h3-mega__col {
  flex: 1;
  padding-right: 40px;
}

.gjones-h3-mega__col-header {
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.gjones-h3-mega__col-title {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  transition: opacity 0.15s;
}

.gjones-h3-mega__col-title:hover {
  opacity: 0.5;
}

.gjones-h3-mega__col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.gjones-h3-mega__col-link {
  display: block;
  font-size: 13px;
  color: #000000;
  text-decoration: none;
  padding: 5px 0;
  letter-spacing: 0.02em;
  transition: opacity 0.15s;
}

.gjones-h3-mega__col-link:hover {
  opacity: 0.45;
}

.gjones-h3-mega__col-link[aria-current="page"] {
  font-weight: 600;
}

/* Image section */
.gjones-h3-mega__images {
  display: flex;
  gap: 10px;
  min-width: 0;
}
.gjones-h3-mega__images.before{
  padding-right:40px;
}
.gjones-h3-mega__col-image {
  display: block;
  margin-top: 16px;
}

.gjones-h3-mega__col-image-img {
  width: 100%;
  display: block;
  height:100%;
}

.gjones-h3-mega__col-image-label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}
.gjones-h3-mega__img-card {
  position: relative;
  display: block;
  overflow: visible;
  text-decoration: none;
  flex: 1;
  min-width: 0;
  aspect-ratio: 1 / 1;
  /* background: #f0f0f0; */
}

.gjones-h3-mega__img-card-img {
      margin-top: 33px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  /* transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1); */
}

/* .gjones-h3-mega__img-card:hover .gjones-h3-mega__img-card-img {
  transform: scale(1.05);
} */

.gjones-h3-mega__img-label {
  /* position: absolute; */
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: none;
  color: #000;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: none;
}

/* Mobile: mega full panels are desktop-only */
@media screen and (max-width: 749px) {
  .gjones-h3-mega--full {
    display: none !important;
  }
}

/* ── Mobile Drawer — Mega content ── */
.gjones-h3-drawer__mega {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 32px;
}

.gjones-h3-drawer__mega::-webkit-scrollbar {
  display: none;
}

.gjones-h3-drawer__mega-col {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.gjones-h3-drawer__mega-col-header {
  padding: 16px 20px 12px;
}

.gjones-h3-drawer__mega-col-title {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
}

.gjones-h3-drawer__nav-link--sub {
  font-size: 13px;
}

.gjones-h3-drawer__mega-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 16px;
}

.gjones-h3-drawer__mega-images .gjones-h3-mega__img-card {
  width: 100%;
}

/* Stagger fade-in for drawer items */
@keyframes gjones-h3-item-in {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gjones-h3-drawer.is-open .gjones-h3-drawer__nav-item {
  animation: gjones-h3-item-in 0.32s cubic-bezier(0.32, 0.72, 0, 1) both;
}

.gjones-h3-drawer.is-open .gjones-h3-drawer__nav-item:nth-child(1) { animation-delay: 0.06s; }
.gjones-h3-drawer.is-open .gjones-h3-drawer__nav-item:nth-child(2) { animation-delay: 0.10s; }
.gjones-h3-drawer.is-open .gjones-h3-drawer__nav-item:nth-child(3) { animation-delay: 0.14s; }
.gjones-h3-drawer.is-open .gjones-h3-drawer__nav-item:nth-child(4) { animation-delay: 0.18s; }
.gjones-h3-drawer.is-open .gjones-h3-drawer__nav-item:nth-child(5) { animation-delay: 0.22s; }
.gjones-h3-drawer.is-open .gjones-h3-drawer__nav-item:nth-child(6) { animation-delay: 0.26s; }
.gjones-h3-drawer.is-open .gjones-h3-drawer__nav-item:nth-child(7) { animation-delay: 0.30s; }
.gjones-h3-drawer.is-open .gjones-h3-drawer__nav-item:nth-child(8) { animation-delay: 0.34s; }
