/* ==========================================================================
   Goose Resale — Front Page Stylesheet
   Child theme: multibrand-theme-child
   Mirrors the inline-style design of the React prototype.
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Body foundation — parent theme ships no compiled CSS so we own the canvas */
html, body.goose-site {
  background: #f9f6f0;               /* --g-bg fallback before :root resolves */
  margin: 0;
  padding: 0;
}
body.goose-site {
  font-family: 'DM Sans', sans-serif;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* WP admin bar: push sticky nav down so it isn't hidden behind the toolbar */
.admin-bar .goose-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .goose-nav { top: 46px; } }

/* ── Scoped element resets (neutralise WooCommerce + WP block-library CSS) ── */

/* Headings: WP/WC set margin, padding we don't want; set base serif font */
.goose-site h1, .goose-site h2, .goose-site h3,
.goose-site h4, .goose-site h5, .goose-site h6 {
  margin: 0; padding: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Links: browser default blue / WC amber break our palette */
.goose-nav a,
.goose-hero a,
.goose-outlet a,
.goose-trust a,
.goose-section a,
.goose-auth a,
.goose-hiw a {
  color: inherit;
  text-decoration: none;
}
.goose-footer a {
  color: rgb(85, 85, 85);
  text-decoration: none;
}

/* Buttons: WC adds border-radius, background-color, box-shadow */
.goose-site button,
.goose-site input[type="submit"] {
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* WooCommerce generic button override inside goose sections */
.goose-site .woocommerce a.button,
.goose-site .woocommerce button.button,
.goose-site .woocommerce input.button {
  border-radius: 0;
  font-family: 'DM Sans', sans-serif;
}

/* WC adds a *::before content notice bar on some themes — kill it */
.goose-site .woocommerce-store-notice { display: none !important; }

/* WordPress .wp-block-* rules sometimes bleed into our sections */
.goose-site .wp-block-button__link {
  border-radius: 0;
  font-family: 'DM Sans', sans-serif;
}

/* Paragraph font inheritance inside all Goose sections */
.goose-hero p, .goose-outlet p, .goose-trust p,
.goose-section p, .goose-auth p, .goose-hiw p,
.goose-footer p, .goose-modal p, .goose-step p {
  font-family: 'DM Sans', sans-serif;
  margin: 0;
}

/* Images should never overflow their containers */
.goose-site img { max-width: 100%; height: auto; }

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --g-serif:    'Cormorant Garamond', Georgia, serif;
  --g-sans:     'DM Sans', sans-serif;
  --g-bg:       #f9f6f0;
  --g-dark:     #1a1a1a;
  --g-gold:     #8b6914;
  --g-gold-lt:  #b8860b;
  --g-muted:    #5a5a5a;
  --g-border:   #e8e3da;
  --g-cream:    #f5f2ec;
  --g-white:    #ffffff;
}
/* Apply background token once vars are registered */
body.goose-site { background: var(--g-bg); color: var(--g-dark); font-family: var(--g-sans); }

/* --------------------------------------------------------------------------
   2. Scroll-reveal animation
   -------------------------------------------------------------------------- */
.goose-sr {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.goose-sr.is-visible { opacity: 1; transform: translateY(0); }

@keyframes gooseFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.goose-fu  { animation: gooseFadeUp .8s ease forwards; }
.goose-d1  { animation-delay: .10s; opacity: 0; }
.goose-d2  { animation-delay: .25s; opacity: 0; }
.goose-d3  { animation-delay: .40s; opacity: 0; }
.goose-d4  { animation-delay: .55s; opacity: 0; }

/* --------------------------------------------------------------------------
   3. Legal bar
   -------------------------------------------------------------------------- */
.goose-legal {
  background: var(--g-dark);
  color: #b8a06a;
  font-family: var(--g-sans);
  font-size: 11px;
  letter-spacing: .08em;
  text-align: center;
  padding: 8px 20px;
  text-transform: uppercase;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .goose-legal { font-size: 9px; padding: 7px 12px; }
}

/* --------------------------------------------------------------------------
   4. Navigation
   -------------------------------------------------------------------------- */
.goose-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--g-border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.goose-nav__links { display: flex; gap: 32px; }
.goose-nav__link {
  font-family: var(--g-sans);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g-dark);
  text-decoration: none;
  transition: color .2s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.goose-nav__link:hover { color: var(--g-gold); }
.goose-nav__link--gold {
  color: var(--g-gold);
  border-bottom: 1px dashed var(--g-gold-lt);
  padding-bottom: 1px;
}

/* Dropdown menus for shoe styles */
.goose-nav__dropdown {
  position: relative;
}
.goose-nav__link--dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
}
.goose-nav__arrow {
  transition: transform .25s ease;
  flex-shrink: 0;
}
.goose-nav__dropdown:hover .goose-nav__arrow {
  transform: rotate(180deg);
}
.goose-nav__submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 420px;
  background: #ffffff;
  border: 1px solid var(--g-border);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 200;
  padding: 12px 0 8px;
  border-radius: 2px;
  column-count: 2;
  column-gap: 0;
}
.goose-nav__submenu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 24px;
}
.goose-nav__dropdown:hover .goose-nav__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.goose-nav__submenu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  color: var(--g-dark);
  text-decoration: none;
  font-family: var(--g-sans);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
  break-inside: avoid;
  page-break-inside: avoid;
}
.goose-nav__submenu-item:hover {
  background: #f5f5f5;
  color: var(--g-gold);
}
.goose-nav__submenu-item--all {
  font-weight: 600;
  border-bottom: 1px solid var(--g-border);
  margin-bottom: 4px;
  padding-bottom: 8px;
  column-span: all;
}
.goose-nav__submenu-thumb {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}
/* Hide dropdowns on mobile */
@media (max-width: 767px) {
  .goose-nav__dropdown { position: static; }
  .goose-nav__submenu { display: none !important; }
}
.goose-nav__logo-wrap {
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  line-height: 1;
}
.goose-nav__logo-wrap a {
  color: var(--g-dark);
  text-decoration: none;
  display: inline-block;    /* inline-block: link wraps only the name, not full cell */
  outline: none;
  border: none;
}
.goose-nav__logo-wrap a:focus,
.goose-nav__logo-wrap a:focus-visible {
  outline: none;
  box-shadow: none;
}
.goose-nav__logo-name {
  font-family: var(--g-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.1;
  color: var(--g-dark);
}
.goose-nav__logo-sub {
  font-family: var(--g-sans);
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--g-gold);
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
}
.goose-nav__right { display: flex; gap: 24px; align-items: center; }
.goose-cart-icon  {
  position: relative;
  cursor: pointer;
  line-height: 0;
  background: none;
  border: none;
  padding: 4px;
  color: var(--g-dark);
  transition: opacity .2s;
}
.goose-cart-icon:hover { opacity: .6; }
.goose-cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--g-gold);
  color: white;
  border-radius: 50%;
  width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--g-sans);
  font-size: 9px;
}
/* Mini-cart panel */
.mini-cart-panel {
  position: fixed;
  inset: 0;
  z-index: 9998;
  visibility: hidden;
  pointer-events: none;
}
.mini-cart-panel.is-open {
  visibility: visible;
  pointer-events: auto;
}
.mini-cart-panel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .3s;
  cursor: pointer;
}
.mini-cart-panel.is-open .mini-cart-panel__overlay { opacity: 1; }
.mini-cart-panel__content {
  position: absolute;
  top: 0; right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,.12);
}
.mini-cart-panel.is-open .mini-cart-panel__content { transform: translateX(0); }
.mini-cart-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--g-border);
  flex-shrink: 0;
}
.mini-cart-panel__title {
  font-family: var(--g-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--g-dark);
}
.mini-cart-panel__close {
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #888;
  padding: 4px 8px;
  transition: color .2s;
}
.mini-cart-panel__close:hover { color: var(--g-dark); }
.mini-cart-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px;
  -webkit-overflow-scrolling: touch;
}
.mini-cart-panel__body .woocommerce-mini-cart {
  padding: 0;
  margin: 0;
}
.mini-cart-panel__body .woocommerce-mini-cart__empty-message {
  padding: 0;
  margin: 0;
}
.mini-cart-panel__body .woocommerce-mini-cart-item {
  padding: 0;
  margin: 0 0 16px 0;
}
.mini-cart-panel__loader {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.mini-cart-panel__loader-spinner {
  width: 28px; height: 28px;
  border: 2px solid var(--g-border);
  border-top-color: var(--g-gold);
  border-radius: 50%;
  animation: gooseGridSpin .7s linear infinite;
}

/* Hamburger */
.goose-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
}
.goose-hamburger__bar {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--g-dark);
  transition: all .25s;
}

@media (max-width: 767px) {
  .goose-nav { padding: 0 16px; height: 56px; }
  .goose-nav__links { display: none; }
  .goose-nav__link--pkgguide { display: none; }
  .goose-nav__link--hiw { display: none; }
  .goose-nav__logo-wrap { position: absolute; left: 50%; transform: translateX(-50%); }
  .goose-nav__logo-name { font-size: 18px; }
  .goose-hamburger { display: flex; }
}

/* --------------------------------------------------------------------------
   5. Mobile drawer & overlay
   -------------------------------------------------------------------------- */
.goose-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.42);
  z-index: 299;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.goose-overlay.is-open { opacity: 1; pointer-events: all; }

.goose-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 76vw; max-width: 300px;
  background: var(--g-bg);
  z-index: 300;
  padding: 72px 28px 40px;
  display: flex; flex-direction: column;
  box-shadow: -6px 0 32px rgba(0,0,0,.14);
  transform: translateX(100%);
  transition: transform .32s ease;
}
.goose-drawer.is-open { transform: translateX(0); }
.goose-drawer__item {
  font-family: var(--g-sans);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g-dark);
  cursor: pointer;
  padding: 20px 0;
  border-bottom: 1px solid #f0ece4;
  text-decoration: none;
  display: block;
}
.goose-drawer__item--gold {
  color: var(--g-gold);
  border-bottom: 1px dashed var(--g-gold-lt);
}

/* --------------------------------------------------------------------------
   6. Packaging modal
   -------------------------------------------------------------------------- */
.goose-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 16px;
}
.goose-modal-backdrop.is-open { display: flex; }
.goose-modal {
  background: white;
  max-width: 480px; width: 100%;
  position: relative;
  max-height: 90vh; overflow-y: auto;
  padding: 48px;
}
.goose-modal__close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none;
  font-size: 20px; cursor: pointer; color: #888;
}
.goose-modal__eyebrow {
  font-family: var(--g-sans);
  font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--g-gold);
  margin-bottom: 10px;
}
.goose-modal__heading {
  font-family: var(--g-serif);
  font-size: 30px; font-weight: 400;
  margin-bottom: 12px; line-height: 1.2;
}
.goose-modal__intro {
  font-family: var(--g-sans);
  font-size: 13px; color: #666;
  line-height: 1.85; margin-bottom: 24px;
}
.goose-modal__types { border-top: 1px solid #f0ece4; }
.goose-modal__type-row {
  display: flex; align-items: flex-start;
  gap: 12px; padding: 14px 0;
  border-bottom: 1px solid #f0ece4;
}
.goose-modal__type-dot {
  width: 9px; height: 9px;
  border-radius: 50%; margin-top: 4px; flex-shrink: 0;
}
.goose-modal__type-name {
  font-family: var(--g-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 3px;
}
.goose-modal__type-desc {
  font-family: var(--g-sans);
  font-size: 13px; color: #666; line-height: 1.6;
}
.goose-modal__note {
  margin-top: 16px;
  background: #f5f2ec;
  padding: 12px 14px;
  font-family: var(--g-sans);
  font-size: 12px; color: #555; line-height: 1.7;
}
@media (max-width: 767px) {
  .goose-modal { padding: 28px 20px; }
  .goose-modal__heading { font-size: 22px; }
}

/* --------------------------------------------------------------------------
   7. Packaging badge (product card)
   -------------------------------------------------------------------------- */
.goose-pkg-badge {
  position: relative;
  display: inline-flex;
  cursor: default;
}
.goose-pkg-badge__label {
  font-family: var(--g-sans);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pkg-color, #555);
  border: 1px solid var(--pkg-color, #555);
  padding: 3px 9px;
  background: var(--pkg-bg, #f5f5f5);
  display: flex; align-items: center; gap: 5px;
}
.goose-pkg-badge__tooltip {
  position: absolute;
  bottom: calc(100% + 8px); left: 0;
  background: #1a1a1a; color: white;
  font-family: var(--g-sans); font-size: 11px;
  padding: 10px 14px;
  white-space: nowrap;
  z-index: 50; line-height: 1.6;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.goose-pkg-badge:hover .goose-pkg-badge__tooltip,
.goose-pkg-badge.is-active .goose-pkg-badge__tooltip { opacity: 1; }
.goose-pkg-badge__tooltip-note { color: #b8860b; font-size: 10px; margin-top: 3px; }

/* --------------------------------------------------------------------------
   8. Hero — desktop
   -------------------------------------------------------------------------- */
.goose-hero {
  position: relative;
  height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.goose-hero__content {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}
.goose-hero__eyebrow {
  font-family: var(--g-sans);
  font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--g-gold);
  border: 1px solid var(--g-gold-lt);
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 24px; width: fit-content;
}
.goose-hero__heading {
  font-size: clamp(50px, 5.2vw, 78px);
  font-weight: 300; line-height: 1.06;
  letter-spacing: -.02em; margin-bottom: 8px;
}
.goose-hero__heading em { font-style: italic; color: var(--g-gold); }
.goose-hero__desc {
  font-family: var(--g-sans);
  font-size: 15px; color: var(--g-muted);
  line-height: 1.8; max-width: 400px;
  margin-top: 22px; font-weight: 300;
}
.goose-hero__pkg-link {
  color: var(--g-gold);
  border-bottom: 1px dashed var(--g-gold);
  cursor: pointer;
}
.goose-hero__ctas {
  display: flex; gap: 16px;
  margin-top: 38px;
}
.goose-hero__stats {
  margin-top: 50px;
  display: flex; gap: 36px;
}
.goose-hero__stat-value {
  font-family: var(--g-serif);
  font-size: 28px; font-weight: 500;
}
.goose-hero__stat-label {
  font-family: var(--g-sans);
  font-size: 11px; color: #888;
  letter-spacing: .08em; text-transform: uppercase;
  margin-top: 2px;
}
.goose-hero__image-col {
  position: relative; overflow: hidden; background: #f0ece4;
}
.goose-hero__image-col img {
  width: 100%; height: 100%;
  object-fit: cover; opacity: .85;
}
.goose-hero__feature-card {
  position: absolute; bottom: 48px; right: 48px;
  background: white; padding: 22px 28px;
}
.goose-hero__feature-eyebrow {
  font-family: var(--g-sans); font-size: 9px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--g-gold); margin-bottom: 8px;
}
.goose-hero__feature-name {
  font-family: var(--g-serif); font-size: 19px; font-weight: 500;
}
.goose-hero__feature-prices {
  display: flex; align-items: center; gap: 10px; margin-top: 6px;
}
.goose-hero__price { font-family: var(--g-sans); font-size: 17px; font-weight: 500; }
.goose-hero__retail { font-family: var(--g-sans); font-size: 12px; color: #aaa; text-decoration: line-through; }
.goose-hero__auth-badge {
  position: absolute; top: 40px; left: 40px;
  width: 80px; height: 80px;
  border: 1px solid rgba(212,168,67,.7); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(255,255,255,.92);
}
.goose-hero__auth-check { font-size: 20px; }
.goose-hero__auth-text {
  font-family: var(--g-sans); font-size: 7px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--g-gold); text-align: center; line-height: 1.4;
}
.goose-hero__scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); text-align: center; z-index: 3;
}
.goose-hero__scroll-label {
  font-family: var(--g-sans); font-size: 9px;
  letter-spacing: .2em; text-transform: uppercase; color: #999;
  margin-bottom: 10px;
}
.goose-hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--g-gold));
  margin: 0 auto;
}

/* Hero — mobile */
@media (max-width: 767px) {
  .goose-hero {
    display: block;
    height: auto;
    background: var(--g-bg);
  }
  .goose-hero__image-col { position: relative; overflow: hidden; max-height: 380px; }
  .goose-hero__image-col img { width: 100%; object-fit: cover; height: 72vw; max-height: 380px; opacity: 1; }
  .goose-hero__image-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--g-bg) 100%);
  }
  .goose-hero__mobile-auth-tag {
    position: absolute; top: 14px; left: 14px;
    background: rgba(255,255,255,.94); border: 1px solid var(--g-gold-lt);
    padding: 4px 12px;
    font-family: var(--g-sans); font-size: 9px;
    letter-spacing: .15em; text-transform: uppercase; color: var(--g-gold);
  }
  .goose-hero__content { padding: 20px 16px 36px; }
  .goose-hero__eyebrow { font-size: 9px; padding: 5px 12px; margin-bottom: 14px; }
  .goose-hero__heading { font-size: 36px; margin-bottom: 14px; }
  .goose-hero__desc { font-size: 13px; margin-top: 0; margin-bottom: 22px; padding-bottom: 10px !important; max-width: 100%; }
  .goose-hero__ctas { flex-direction: column; gap: 10px; margin-top: 0; }
  .goose-hero__stats {
    margin-top: 28px; gap: 0;
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--g-border); padding-top: 22px;
  }
  .goose-hero__stat-value { font-size: 22px; text-align: center; }
  .goose-hero__stat-label { font-size: 9px; margin-top: 2px; text-align: center; }
  .goose-hero__feature-card,
  .goose-hero__auth-badge,
  .goose-hero__scroll { display: none; }
}

/* --------------------------------------------------------------------------
   9. Outlet explainer
   -------------------------------------------------------------------------- */
.goose-outlet {
  background: var(--g-cream);
  border-top: 1px solid var(--g-border);
  border-bottom: 1px solid var(--g-border);
}
.goose-outlet__inner {
  max-width: 1000px; margin: 0 auto;
  padding: 36px 48px;
  display: grid; grid-template-columns: auto 1fr;
  gap: 36px; align-items: center;
}
.goose-outlet__big-q {
  font-family: var(--g-serif);
  font-size: 52px; font-weight: 300;
  color: var(--g-gold-lt); line-height: 1;
}
.goose-outlet__eyebrow {
  font-family: var(--g-sans); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--g-gold); margin-bottom: 8px;
}
.goose-outlet__text {
  font-family: var(--g-sans); font-size: 14px;
  color: #555; line-height: 1.85;
}
.goose-outlet__pkg-link {
  border-bottom: 1px dashed var(--g-gold); color: var(--g-gold); cursor: pointer;
}
@media (max-width: 767px) {
  .goose-outlet__inner { padding: 24px 16px; grid-template-columns: 1fr; gap: 10px; }
  .goose-outlet__big-q { display: none; }
  .goose-outlet__text { font-size: 13px; }
}

/* --------------------------------------------------------------------------
   10. Trust strip
   -------------------------------------------------------------------------- */
.goose-trust {
  background: var(--g-dark);
  padding: 16px 48px;
  display: flex; justify-content: center;
  gap: 52px; flex-wrap: wrap;
}
.goose-trust__item { display: flex; align-items: center; gap: 7px; }
.goose-trust__icon { font-size: 12px; }
.goose-trust__text {
  font-family: var(--g-sans); font-size: 11px;
  letter-spacing: .06em; color: #c8b88a;
}
@media (max-width: 767px) {
  .goose-trust { padding: 12px 16px; gap: 16px; }
  .goose-trust__text { font-size: 9px; }
}

/* --------------------------------------------------------------------------
   11. Shared section wrapper
   -------------------------------------------------------------------------- */
.goose-section { padding: 80px 48px 48px; }
.goose-section--cream { background: var(--g-cream); }
.goose-section--dark  { background: var(--g-dark); }
@media (max-width: 767px) { .goose-section { padding: 32px 16px 24px; } }

.goose-section__header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 44px;
}
.goose-section__eyebrow {
  font-family: var(--g-sans); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--g-gold); margin-bottom: 8px;
}
.goose-section__heading {
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 300; line-height: 1.1;
}
.goose-section__heading em { font-style: italic; }
@media (max-width: 767px) {
  .goose-section__header { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
  .goose-section__heading { font-size: 28px; }
}

/* --------------------------------------------------------------------------
   12. Gender toggle
   -------------------------------------------------------------------------- */
.goose-gender-toggle { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.goose-gender-toggle__btns { display: flex; border: 1px solid var(--g-dark); }
.goose-gender-btn {
  font-family: var(--g-sans); font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase;
  border: none; background: transparent;
  cursor: pointer; transition: all .25s;
  color: var(--g-dark); padding: 11px 38px;
}
.goose-gender-btn:first-child { border-right: 1px solid var(--g-dark); }
.goose-gender-btn.is-active { background: var(--g-dark); color: var(--g-bg); }
.goose-gender-btn:not(.is-active):hover { background: #f0ece4; }
.goose-gender-toggle__note {
  font-family: var(--g-sans); font-size: 10px; color: #aaa;
}
.goose-gender-toggle__note span { color: var(--g-gold); border-bottom: 1px dashed var(--g-gold-lt); cursor: pointer; }
@media (max-width: 767px) {
  .goose-gender-toggle { align-items: flex-start; }
  .goose-gender-btn { font-size: 11px; padding: 9px 20px; }
}

/* --------------------------------------------------------------------------
   13. Product grids & cards
   -------------------------------------------------------------------------- */
.goose-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.goose-grid-set { display: none; }
.goose-grid-set.is-active { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* AJAX grid — single container replacing both gender sets */
.goose-ajax-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  min-height: 200px;
  transition: opacity .25s;
}
.goose-ajax-grid.is-loading {
  opacity: .35;
  pointer-events: none;
  position: relative;
}
.goose-ajax-grid.is-loading::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  border: 2px solid var(--g-gold-lt);
  border-top-color: var(--g-gold);
  border-radius: 50%;
  animation: gooseGridSpin .7s linear infinite;
}
@keyframes gooseGridSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Mobile: horizontal scroll row */
@media (max-width: 767px) {
  .goose-grid-set { display: none !important; }
  .goose-grid-set.is-active {
    display: flex !important;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .goose-grid-set.is-active::-webkit-scrollbar { display: none; }
  .goose-ajax-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .goose-ajax-grid::-webkit-scrollbar { display: none; }
  .goose-ajax-grid .ggo-sg-card { flex: 0 0 72vw; max-width: 260px; scroll-snap-align: start; }
}

.ggo-sg-card {
  transition: transform .3s, box-shadow .3s;
  cursor: pointer; position: relative;
  display: flex; flex-direction: column;
}
.ggo-sg-card:hover { transform: none; box-shadow: none; }

/* Positioning context for both the image link and the ATC button */
.ggo-sg-card__img-area {
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.ggo-sg-card__img-wrap {
  overflow: hidden; background: #f0ece4;
  aspect-ratio: 1/1; position: relative;
  display: block;
}
.ggo-sg-card--mobile .ggo-sg-card__img-wrap { aspect-ratio: 1/1; }
.ggo-sg-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform .6s;
  display: block;
}
.ggo-sg-card:hover .ggo-sg-card__img-wrap img { transform: scale(1.06); }

.ggo-sg-card__verified-badge {
  position: absolute; top: 10px; right: 10px;
  background: white; border: 1px solid var(--g-gold-lt);
  color: var(--g-gold);
  font-family: var(--g-sans); font-size: 9px;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 3px 8px;
  display: flex; align-items: center; gap: 4px;
}
.ggo-sg-card__disc-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--g-dark);
  color: white;
  font-family: var(--g-sans); font-size: 10px;
  letter-spacing: .05em;
  padding: 4px 10px;
  font-weight: 500;
}

/* Out of Stock Overlay & Badge */
.ggo-sg-card__oos-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  backdrop-filter: grayscale(100%);
  z-index: 1;
  pointer-events: none;
}
.ggo-sg-card--out-of-stock .ggo-sg-card__img-wrap img {
  filter: grayscale(100%);
  opacity: 0.6;
}
.ggo-sg-card__oos-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(26, 26, 26, 0.9);
  color: white;
  font-family: var(--g-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  z-index: 2;
  border-radius: 2px;
}

.ggo-sg-card__atc {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: var(--g-dark); color: #fff !important;
  font-family: var(--g-sans); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 12px; text-align: center;
  transform: translateY(100%); transition: transform .3s;
  cursor: pointer; border: none; width: 100%;
}
.ggo-sg-card:hover .ggo-sg-card__atc { transform: translateY(0); }
.ggo-sg-card__atc.loading,
.ggo-sg-card__atc--mobile.loading { opacity: .6; pointer-events: none; }

/* Mobile always-visible ATC */
.ggo-sg-card__atc--mobile {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(26,26,26,.88); color: #fff !important;
  font-family: var(--g-sans); font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 9px; text-align: center;
  cursor: pointer; border: none; width: 100%;
}

.ggo-sg-card__body {
  padding: 14px 14px 16px;
  flex: 1; display: flex; flex-direction: column;
}
.ggo-sg-card--mobile .ggo-sg-card__body { padding: 10px 10px 12px; }

.ggo-sg-card__name {
  font-family: var(--g-serif) !important;
  font-size: 16px !important; font-weight: 500 !important;
  margin: 0 0 6px !important; padding: 0 !important;
  line-height: 1.2; color: var(--g-dark) !important;
}
.ggo-sg-card__name a {
  color: var(--g-dark) !important;
  text-decoration: none !important;
}
.ggo-sg-card--mobile .ggo-sg-card__name { font-size: 14px !important; }

.ggo-sg-card__condition {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 8px 0;
}
.ggo-sg-card__cond-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ggo-sg-card__cond-label {
  font-family: var(--g-sans);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: #888;
}
.ggo-sg-card--mobile .ggo-sg-card__cond-label { font-size: 10px; }

.ggo-sg-card__prices {
  display: flex; align-items: center;
  gap: 6px; margin-bottom: 10px; flex-wrap: wrap;
}
.ggo-sg-card__price {
  font-family: var(--g-sans); font-size: 15px;
  font-weight: 500; color: var(--g-dark);
}
.ggo-sg-card--mobile .ggo-sg-card__price { font-size: 13px; }
.ggo-sg-card__retail {
  font-family: var(--g-sans); font-size: 12px;
  color: #bbb; text-decoration: line-through;
}
.ggo-sg-card--mobile .ggo-sg-card__retail { font-size: 11px; }

/* Mobile scroll card */
@media (max-width: 767px) {
  .goose-scroll-card { flex: 0 0 72vw; max-width: 260px; scroll-snap-align: start; }
}

/* --------------------------------------------------------------------------
   14. Section CTAs
   -------------------------------------------------------------------------- */
.goose-section-cta { text-align: center; margin-top: 40px; }
@media (max-width: 767px) { .goose-section-cta { margin-top: 20px; } }

/* --------------------------------------------------------------------------
   15. Buttons
   -------------------------------------------------------------------------- */
.goose-btn {
  font-family: var(--g-sans); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 36px;
  background: var(--g-dark); color: #fff !important;
  border: none; cursor: pointer; transition: all .25s;
  text-decoration: none; display: inline-block;
}
.goose-btn:hover { background: var(--g-gold); color: #fff !important; }

.goose-btn-outline {
  font-family: var(--g-sans); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 36px;
  background: transparent; color: var(--g-dark) !important;
  border: 1px solid var(--g-dark); cursor: pointer; transition: all .25s;
  text-decoration: none; display: inline-block;
}
.goose-btn-outline:hover { background: var(--g-dark); color: #fff !important; }

.goose-btn-gold {
  font-family: var(--g-sans); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 36px;
  background: var(--g-gold); color: #fff !important;
  border: none; cursor: pointer; transition: all .25s;
  text-decoration: none; display: inline-block;
}

.goose-btn--full { width: 100%; display: block; text-align: center; }
@media (max-width: 767px) {
  .goose-btn, .goose-btn-outline, .goose-btn-gold { font-size: 11px; padding: 12px; }
}

/* --------------------------------------------------------------------------
   16. Auth banner
   -------------------------------------------------------------------------- */
.goose-auth {
  margin: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--g-dark);
}
.goose-auth__content {
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.goose-auth__eyebrow {
  font-family: var(--g-sans); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--g-gold-lt); margin-bottom: 12px;
}
.goose-auth__heading {
  font-family: var(--g-serif);
  font-size: 40px; font-weight: 300;
  color: white; line-height: 1.2; margin-bottom: 16px;
}
.goose-auth__heading em { font-style: italic; color: var(--g-gold-lt); }
.goose-auth__desc {
  font-family: var(--g-sans); font-size: 13px;
  color: #888; line-height: 1.85; font-weight: 300;
}
.goose-auth__bullets {
  margin-top: 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.goose-auth__bullet {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--g-sans); font-size: 12px; color: #b8b8b8;
}
.goose-auth__bullet-check { color: var(--g-gold-lt); flex-shrink: 0; }
.goose-auth__image-col {
  position: relative; overflow: hidden; background: #f0ece4;
}
.goose-auth__image-col img {
  width: 100%; height: 100%;
  object-fit: cover; mix-blend-mode: multiply; opacity: .65;
}
.goose-auth__cert-panel {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.goose-auth__cert-box {
  text-align: center; padding: 36px 40px;
  background: rgba(255,255,255,.93);
}
.goose-auth__cert-num {
  font-family: var(--g-serif); font-size: 60px; font-weight: 300; line-height: 1;
}
.goose-auth__cert-label {
  font-family: var(--g-sans); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--g-gold); margin-top: 6px;
}
.goose-auth__cert-divider {
  width: 36px; height: 1px; background: var(--g-gold-lt); margin: 14px auto;
}
.goose-auth__cert-sub {
  font-family: var(--g-sans); font-size: 11px; color: #999; margin-bottom: 16px;
}

/* Auth — mobile */
@media (max-width: 767px) {
  .goose-auth { margin: 0; grid-template-columns: 1fr; }
  .goose-auth__content { padding: 32px 16px; }
  .goose-auth__heading { font-size: 26px; }
  .goose-auth__bullet { font-size: 11px; }
  .goose-auth__image-col { display: none; }
  .goose-auth__mobile-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #2a2a2a; padding: 18px 16px;
  }
  .goose-auth__mobile-stat-val {
    font-family: var(--g-serif); font-size: 24px; font-weight: 300;
    color: white; text-align: center;
  }
  .goose-auth__mobile-stat-lbl {
    font-family: var(--g-sans); font-size: 9px;
    color: #666; letter-spacing: .07em;
    text-transform: uppercase; margin-top: 3px; text-align: center;
  }
}
.goose-auth__mobile-stats { display: none; }
@media (max-width: 767px) { .goose-auth__mobile-stats { display: grid; } }

/* --------------------------------------------------------------------------
   17. How It Works
   -------------------------------------------------------------------------- */
.goose-hiw { padding: 80px 48px; background: var(--g-cream); }
.goose-hiw__intro { text-align: center; margin-bottom: 52px; }
.goose-hiw__eyebrow {
  font-family: var(--g-sans); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--g-gold); margin-bottom: 10px;
}
.goose-hiw__heading {
  font-size: clamp(34px, 3.5vw, 50px); font-weight: 300;
}
.goose-hiw__heading em { font-style: italic; }
.goose-hiw__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.goose-step {
  border-left: 2px solid var(--g-gold-lt);
  padding: 22px 26px;
  background: white;
  transition: border-color .25s, transform .25s;
}
.goose-step:hover { border-left-color: var(--g-dark); transform: translateX(3px); }
.goose-step__num {
  font-family: var(--g-serif); font-size: 40px; font-weight: 300;
  color: var(--g-gold-lt); line-height: 1; margin-bottom: 8px;
}
.goose-step__title {
  font-family: var(--g-serif); font-size: 20px; font-weight: 500; margin-bottom: 6px;
}
.goose-step__desc {
  font-family: var(--g-sans); font-size: 13px; color: #666; line-height: 1.7; font-weight: 300;
}
@media (max-width: 767px) {
  .goose-hiw { padding: 32px 16px; }
  .goose-hiw__intro { margin-bottom: 28px; }
  .goose-hiw__heading { font-size: 26px; }
  .goose-hiw__steps { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .goose-step { padding: 16px 18px; }
  .goose-step__num { font-size: 28px; }
  .goose-step__title { font-size: 16px; }
  .goose-step__desc { font-size: 11px; }
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.goose-footer { background: #111; padding: 56px 48px 32px; }
.goose-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.goose-footer__brand-name {
  font-family: var(--g-serif); font-size: 22px; font-weight: 500;
  color: #ffffff; margin-bottom: 4px;
}
.goose-footer__brand-sub {
  font-family: var(--g-sans); font-size: 9px;
  letter-spacing: .2em; color: var(--g-gold);
  text-transform: uppercase; margin-bottom: 12px;
}
.goose-footer__brand-desc {
  font-family: var(--g-sans); font-size: 12px;
  color: #aaa; line-height: 1.85; max-width: 300px;
}
.goose-footer__col-heading {
  font-family: var(--g-sans); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: #999; margin-bottom: 14px;
}
.goose-footer__col-link {
  font-family: var(--g-sans); font-size: 12px;
  color: rgb(85, 85, 85); margin-bottom: 9px; cursor: pointer;
  display: block; text-decoration: none;
  transition: color .2s;
}
.goose-footer__col-link:hover { color: #b8860b; }
.goose-footer__bottom {
  border-top: 1px solid #2a2a2a; padding-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.goose-footer__copyright {
  font-family: var(--g-sans); font-size: 10px; color: #777;
}
.goose-footer__legal-links { display: flex; flex-wrap: wrap; gap: 14px; }
.goose-footer__legal-link {
  font-family: var(--g-sans); font-size: 10px; color: #777; cursor: pointer;
  text-decoration: none; transition: color .2s;
}
.goose-footer__legal-link:hover { color: #b8a06a; }
@media (max-width: 767px) {
  .goose-footer { padding: 36px 16px 24px; }
  .goose-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
  .goose-footer__brand { grid-column: 1 / -1; }
  .goose-footer__brand-desc { max-width: 100%; }
  .goose-footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ==========================================================================
   19. Single Product Page  (gs-* namespace)
   Mirrors the React ProductPage component.
   ========================================================================== */

/* ── Page wrapper ── */
.gs-page {
  background: var(--g-bg);
  min-height: 100vh;
  color: var(--g-dark);
}

.gs-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px 80px;
}
@media (max-width: 767px) {
  .gs-wrap { padding: 0 0 100px; }
}

/* ── Breadcrumb ── */
.gs-bc {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0 24px;
}
.gs-bc__item {
  font-family: var(--g-sans);
  font-size: 11px;
  color: #aaa;
  letter-spacing: .06em;
  text-decoration: none;
  cursor: pointer;
  transition: color .15s;
}
.gs-bc__item:hover { color: var(--g-dark); }
.gs-bc__item--current { color: var(--g-dark); }
.gs-bc__sep { font-family: var(--g-sans); font-size: 11px; color: #ddd; }
@media (max-width: 767px) { .gs-bc { display: none; } }

/* ── Main layout: thumbs | gallery | info ── */
.gs-layout {
  display: grid;
  grid-template-columns: 68px 1fr 460px;
  grid-template-rows: auto auto;
  gap: 28px;
  align-items: start;
}
/*
  Grid naming:
    col 1 = vertical thumbs
    col 2 = gallery
    col 3 = info panel
  Mobile thumb strip sits between gallery and info (row 2, col 2).
*/
.gs-thumbs          { grid-column: 1; grid-row: 1; }
.gs-gallery         { grid-column: 2; grid-row: 1; }
.gs-thumb-strip     { grid-column: 2; grid-row: 2; display: none; }
.gs-info            { grid-column: 3; grid-row: 1 / span 2; }

@media (max-width: 767px) {
  .gs-layout {
    display: block;
  }
  .gs-thumbs { display: none !important; }
  .gs-thumb-strip.gs-thumb-strip--mobile { display: flex; }
  .gs-gallery { background: #fff; aspect-ratio: auto; }
}

/* ── Thumbnail buttons ── */
.gs-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 88px;
}
.gs-thumb {
  width: 58px;
  height: 58px;
  background: #f5f3ef;
  border: 1px solid transparent;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color .18s;
  flex-shrink: 0;
}
.gs-thumb--on { border-color: var(--g-dark); }
.gs-thumb:hover { opacity: .8; }
.gs-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Mobile strip */
.gs-thumb-strip {
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 10px 16px;
  background: white;
  border-bottom: 1px solid #f0ece4;
}
.gs-thumb-strip::-webkit-scrollbar { display: none; }
.gs-thumb--mobile { width: 52px; height: 52px; }

/* ── Gallery ── */
.gs-gallery {
  position: sticky;
  top: 88px;
  background: #fff;
  overflow: hidden;
  cursor: zoom-in;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
}
.gs-gallery__photo {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
  transition: opacity .3s, transform .08s ease-out;
}
.gs-gallery__photo--active { 
  position: static;
  opacity: 1;
  pointer-events: auto;
}
/* Hover zoom: cursor hint changes, transform handled by JS */
.gs-gallery.is-zooming { cursor: crosshair; }

/* Gallery badges */
.gs-gallery__badge {
  position: absolute;
  font-family: var(--g-sans);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.gs-gallery__badge--verified {
  top: 16px;
  left: 16px;
  background: white;
  border: 1px solid var(--g-gold-lt);
  color: var(--g-gold);
}
.gs-gallery__badge--disc {
  top: 16px;
  right: 16px;
  background: var(--g-dark);
  color: white;
  font-size: 10px;
}
.gs-gallery__badge--mobile-only { display: none; }
@media (max-width: 767px) {
  .gs-gallery {
    position: relative;
    top: 0;
    aspect-ratio: auto;
    cursor: default;
  }
  .gs-gallery__badge--mobile-only { display: flex; }
  .gs-gallery__zoom-hint { display: none; }
}

/* Photo counter (mobile) */
.gs-gallery__counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,.42);
  color: white;
  font-family: var(--g-sans);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 2px;
}
.gs-gallery__counter--mobile { display: none; }
@media (max-width: 767px) { .gs-gallery__counter--mobile { display: block; } }

/* Zoom hint (desktop) */
.gs-gallery__zoom-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255,255,255,.88);
  font-family: var(--g-sans);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  color: #888;
}

/* ── Info panel ── */
.gs-info {
  /* no card styles — plain flow */
}

.gs-info__eyebrow {
  font-family: var(--g-sans);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--g-gold);
  margin-bottom: 8px;
}

.gs-info__name {
  font-family: var(--g-serif) !important;
  font-size: clamp(28px, 2.8vw, 40px) !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  color: var(--g-dark) !important;
}
@media (max-width: 767px) {
  .gs-info { padding: 20px 16px 0; }
  .gs-info__name { font-size: 24px !important; }
}

/* ── Condition ── */
.gs-condition {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.gs-condition__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.gs-condition__label {
  font-family: var(--g-sans);
  font-size: 12px;
  color: #555;
}
.gs-condition__desc {
  font-family: var(--g-sans);
  font-size: 11px;
  color: #bbb;
}

/* ── Price block ── */
.gs-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.gs-price__our {
  font-family: var(--g-sans);
  font-size: 32px;
  font-weight: 500;
  color: var(--g-dark);
}
.gs-price__our .woocommerce-Price-amount { font-size: inherit; font-weight: inherit; color: inherit; }
.gs-price__retail {
  font-family: var(--g-sans);
  font-size: 15px;
  color: #aaa;
  text-decoration: line-through;
}
.gs-price__retail .woocommerce-Price-amount { font-size: inherit; color: inherit; }
.gs-price__disc {
  font-family: var(--g-sans);
  font-size: 10px;
  letter-spacing: .08em;
  background: var(--g-dark);
  color: white;
  padding: 3px 8px;
  align-self: center;
}
.gs-price__savings {
  font-family: var(--g-sans);
  font-size: 11px;
  color: #aaa;
  margin-bottom: 24px;
}
.gs-price__savings .woocommerce-Price-amount { font-size: inherit; color: inherit; }
@media (max-width: 767px) { .gs-price__our { font-size: 26px; } }

/* ── Packaging badge wrapper ── */
.gs-pkg-wrap {
  display: inline-flex;
  margin-bottom: 28px;
}
.gs-pkg-badge-fallback {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pkg-bg, #f0f9f4);
  border: 1px solid var(--pkg-color, #2d6a4f);
  padding: 10px 14px;
}
.gs-pkg-icon {
  font-size: 15px;
  line-height: 1;
}
.gs-pkg-label {
  font-family: var(--g-sans);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pkg-color, #2d6a4f);
  font-weight: 500;
}
.gs-pkg-desc {
  font-family: var(--g-sans);
  font-size: 11px;
  color: #666;
  margin-top: 2px;
}

/* ── Out of Stock Notice (Single Product) ── */
.gs-oos-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff3cd;
  border: 1px solid #ffc107;
  padding: 10px 16px;
  margin-bottom: 24px;
  border-radius: 2px;
}
.gs-oos-notice__icon {
  font-size: 16px;
  line-height: 1;
}
.gs-oos-notice__text {
  font-family: var(--g-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #856404;
}

/* ── Size picker ── */
.gs-sz-wrap { margin-bottom: 24px; }

.gs-sz-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.gs-sz-label {
  font-family: var(--g-sans);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g-dark);
  font-weight: 500;
}
.gs-sz-system {
  display: flex;
  border: 1px solid #ddd;
}
.gs-sz-sys {
  font-family: var(--g-sans);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: none;
  cursor: pointer;
  background: white;
  color: #888;
  transition: all .15s;
}
.gs-sz-sys:first-child { border-right: 1px solid #ddd; }
.gs-sz-sys--active { background: var(--g-dark); color: white; }

.gs-sz-error {
  font-family: var(--g-sans);
  font-size: 11px;
  color: #c0392b;
  margin-bottom: 8px;
  letter-spacing: .04em;
}

.gs-sz-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .gs-sz-grid { grid-template-columns: repeat(4, 1fr); }
}

.gs-sz {
  position: relative;
  font-family: var(--g-sans);
  letter-spacing: .05em;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all .18s;
  background: white;
  color: #555;
  text-align: center;
  line-height: 1;
  padding: 10px 4px;
  font-size: 11px;
}
.gs-sz:hover:not(.gs-sz--out) { border-color: var(--g-dark);}
.gs-sz--on  { background: var(--g-dark); border-color: var(--g-dark); color: white; }
.gs-sz--out { opacity: .32; cursor: not-allowed; background: #f5f5f5; }
.gs-sz--out::after {
  content: '';
  position: absolute;
  top: 50%; left: 8%; right: 8%;
  height: 1px;
  background: #bbb;
  transform: rotate(-8deg);
}
.gs-sz--err { border-color: #c0392b !important; }
@media (max-width: 767px) { .gs-sz { padding: 12px 4px; font-size: 12px; } }

.gs-sz-note {
  font-family: var(--g-sans);
  font-size: 10px;
  color: #aaa;
}

/* ── Add to Cart button ── */
.gs-atc-wrap { margin-bottom: 0; }

.gs-atc {
  display: block;
  width: 100%;
  font-family: var(--g-sans);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 17px;
  transition: background .22s;
  color: white;
  text-align: center;
  margin-bottom: 16px;
}
.gs-atc--idle   { background: var(--g-dark); }
.gs-atc--idle:hover:not(:disabled) { background: var(--g-gold); }
.gs-atc--ok     { background: #2d6a4f !important; }
.gs-atc--bad    { background: #c0392b !important; }
.gs-atc:disabled { opacity: .5; cursor: not-allowed; }
.gs-atc--compact { width: auto; padding: 13px 24px; font-size: 11px; }

/* ── "Open pkg guide" micro-link — already handled by goose-nav__link--gold ── */

/* ── Delivery strip ── */
.gs-deliv {
  border-top: 1px solid var(--g-border);
  border-bottom: 1px solid var(--g-border);
  padding: 14px 0;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gs-deliv__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gs-deliv__icon { font-size: 15px; }
.gs-deliv__text { font-family: var(--g-sans); font-size: 12px; }
.gs-deliv__free { color: #2d6a4f; }
.gs-deliv__note { color: #aaa; }

/* ── Accordions (<details>/<summary>) ── */
.gs-acc {
  border-bottom: 1px solid var(--g-border);
}
.gs-acc__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--g-sans);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g-dark);
  font-weight: 500;
  user-select: none;
  -webkit-user-select: none;
}
/* Remove default <details> triangle */
.gs-acc__trigger::-webkit-details-marker { display: none; }
.gs-acc__trigger::marker { display: none; }
.gs-acc__icon {
  font-size: 18px;
  color: #888;
  line-height: 1;
  display: block;
  transition: transform .22s;
}
.gs-acc[open] > .gs-acc__trigger .gs-acc__icon { transform: rotate(45deg); }
.gs-acc__body { padding-bottom: 20px; }
.gs-acc__note {
  font-family: var(--g-sans);
  font-size: 11px;
  color: #888;
  line-height: 1.75;
}

/* ── Authentication certificate box ── */
.gs-auth-cert {
  background: var(--g-cream);
  border-left: 2px solid var(--g-gold-lt);
  padding: 16px 18px;
  margin-bottom: 14px;
}
.gs-auth-cert__eyebrow {
  font-family: var(--g-sans);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--g-gold);
  margin-bottom: 6px;
}
.gs-auth-cert__heading {
  font-family: var(--g-serif);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 14px;
}
.gs-auth-cert__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.gs-auth-cert__point {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-family: var(--g-sans);
  font-size: 11px;
  color: #555;
  line-height: 1.6;
}
.gs-auth-cert__check {
  color: var(--g-gold-lt);
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 767px) {
  .gs-auth-cert__points { grid-template-columns: 1fr; }
}

/* ── Product description (text only, no label) ── */
.gs-product-description {
  font-family: var(--g-sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--g-dark);
  margin: 0 0 16px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0ece4;
}

/* ── Detail rows (Product Details + Shipping) ── */
.gs-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #f0ece4;
}
.gs-detail-row__key {
  font-family: var(--g-sans);
  font-size: 12px;
  color: #888;
  flex-shrink: 0;
}
.gs-detail-row__val {
  font-family: var(--g-sans);
  font-size: 12px;
  color: var(--g-dark);
  text-align: right;
  max-width: 60%;
  margin-left: 12px;
}

/* ── Related products ── */
.gs-related { padding: 56px 0 0; }
@media (max-width: 767px) { .gs-related { padding: 32px 16px 0; } }

.gs-related__header { margin-bottom: 28px; }
@media (max-width: 767px) { .gs-related__header { margin-bottom: 18px; } }

.gs-related__eyebrow {
  font-family: var(--g-sans);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--g-gold);
  margin-bottom: 8px;
}
.gs-related__heading {
  font-family: var(--g-serif) !important;
  font-size: clamp(26px, 2.5vw, 36px) !important;
  font-weight: 300 !important;
  margin: 0 !important; padding: 0 !important;
}
.gs-related__heading em { font-style: italic; }
@media (max-width: 767px) { .gs-related__heading { font-size: 22px !important; } }

.gs-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .gs-related__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ── Zoom overlay ── */
.gs-zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.93);
  z-index: 600;
  display: none;
  align-items: center;
  justify-content: center;
}
.gs-zoom-overlay.is-open { display: flex; }

.gs-zoom-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  color: white; font-size: 28px;
  cursor: pointer; line-height: 1;
}
.gs-zoom-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: none; border: none;
  color: white; font-size: 36px;
  cursor: pointer; padding: 0 8px;
  line-height: 1;
}
.gs-zoom-nav--prev { left: 16px; }
.gs-zoom-nav--next { right: 16px; }

.gs-zoom-img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
}
.gs-zoom-dots {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
}
.gs-zoom-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none; cursor: pointer;
  transition: background .18s, transform .18s;
  flex-shrink: 0;
  padding: 0;
}
.gs-zoom-dot--on { background: white; transform: scale(1.3); }

/* ── Mobile sticky bar ── */
.gs-sticky {
  display: none;
}
@media (max-width: 767px) {
  .gs-sticky {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--g-bg);
    border-top: 1px solid var(--g-border);
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 200;
    align-items: center;
    gap: 12px;
  }
}
.gs-sticky__info {
  flex: 1;
  min-width: 0;
}
.gs-sticky__name {
  font-family: var(--g-serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gs-sticky__price {
  font-family: var(--g-sans);
  font-size: 13px;
  font-weight: 500;
  margin-top: 2px;
}
.gs-sticky__price .woocommerce-Price-amount { font-size: 13px; font-weight: 500; }
.gs-sticky__retail {
  font-family: var(--g-sans);
  font-size: 11px;
  color: #bbb;
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 4px;
}
.gs-sticky__retail .woocommerce-Price-amount { font-size: 11px; color: #bbb; }

/* =========================================================
   SECTION 20 — Catalog / Shop page  (ggo-cat-* namespace)
   ========================================================= */

/* ── Page wrapper ── */
#ggo-catalog { background: var(--g-bg); min-height: 70vh; color: var(--g-dark); }
.ggo-cat__wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 48px 80px;
}
@media (max-width: 767px) {
  .ggo-cat__wrap { padding: 14px 16px 100px; }
}

/* ── Breadcrumb ── */
.ggo-bc {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.ggo-bc__item {
  font-family: var(--g-sans);
  font-size: 11px;
  color: #aaa;
  letter-spacing: .06em;
  text-decoration: none;
  transition: color .2s;
}
.ggo-bc__item:hover { color: var(--g-dark); }
.ggo-bc__item--current { color: var(--g-dark); }
.ggo-bc__sep { font-family: var(--g-sans); font-size: 11px; color: #ddd; }
@media (max-width: 767px) { .ggo-bc { display: none; } }

/* ── Title row ── */
.ggo-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 22px;
}
.ggo-title-row__h1 {
  font-family: var(--g-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.1;
}
.ggo-title-row__h1 em { font-style: italic; }
.ggo-title-row__count {
  font-family: var(--g-sans);
  font-size: 12px;
  color: #888;
}
@media (max-width: 767px) {
  .ggo-title-row { align-items: center; }
  .ggo-title-row__h1 { font-size: 24px; }
}

/* ── Mobile filter + sort bar ── */
.ggo-mob-bar {
  display: none;
  gap: 10px;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .ggo-mob-bar {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--g-bg, #f9f6f0);
    padding: 10px 0;
    margin-bottom: 10px;
  }
}

.ggo-mob-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--g-sans);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 12px;
  border: 1px solid var(--g-border);
  background: var(--g-white);
  color: var(--g-dark);
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.ggo-mob-bar__btn--active {
  background: var(--g-dark);
  color: var(--g-white);
  border-color: var(--g-dark);
}

/* ── Active chips ── */
.ggo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .ggo-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }
  .ggo-chips::-webkit-scrollbar { display: none; }
}
.ggo-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--g-dark);
  color: var(--g-white);
  font-family: var(--g-sans);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 10px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity .2s;
}
.ggo-chip:hover { opacity: .8; }
.ggo-chips__clear {
  font-family: var(--g-sans);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  flex-shrink: 0;
  padding: 0;
}

/* ── Two-column layout ── */
.ggo-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 767px) {
  .ggo-layout { grid-template-columns: 1fr; gap: 0; }
}

/* ── Sidebar ── */
.ggo-sidebar {
  position: static;
}
@media (max-width: 767px) { .ggo-sidebar { display: none; } }

/* ── Filter accordion groups ── */
.ggo-filter-group {
  border-bottom: 1px solid var(--g-border);
}
.ggo-filter-group__hdr {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.ggo-filter-group__title {
  font-family: var(--g-sans);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g-dark);
  font-weight: 700;
}
.ggo-filter-group__icon {
  font-size: 10px;
  color: #a09888;
  line-height: 1;
  display: block;
  transition: transform .25s;
  flex-shrink: 0;
}
.ggo-filter-group--open .ggo-filter-group__icon { transform: rotate(180deg); }
.ggo-filter-group__body {
  display: none;
  padding-bottom: 18px;
}
.ggo-filter-group--open .ggo-filter-group__body { display: block; }

/* ── Checkbox rows ── */
.ggo-checkbox {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  padding: 5px 0;
  font-family: var(--g-sans);
  font-size: 12px;
  color: #3a3a3a;
  user-select: none;
}
.ggo-checkbox input[type="checkbox"] { display: none; }
.ggo-checkbox__box {
  width: 14px;
  height: 14px;
  border: 1px solid #ccc;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g-white);
  transition: background .15s, border-color .15s;
  position: relative;
}
.ggo-checkbox input:checked ~ .ggo-checkbox__box {
  background: var(--g-dark);
  border-color: var(--g-dark);
}
.ggo-checkbox input:checked ~ .ggo-checkbox__box::after {
  content: '';
  display: block;
  width: 8px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' fill='none'%3E%3Cpath d='M1 3l2 2 4-4' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

/* ── Size buttons (model + shoe size) ── */
.ggo-filter-group__options--buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ggo-sz-btn {
  font-family: var(--g-sans);
  font-size: 10px;
  letter-spacing: .06em;
  border: 1px solid var(--g-border);
  padding: 7px 10px;
  cursor: pointer;
  background: var(--g-white);
  color: #555;
  transition: background .18s, border-color .18s, color .18s;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.ggo-sz-btn input[type="checkbox"] { display: none; }
.ggo-sz-btn__icon {
  display: inline-flex;
  margin-right: 6px;
  transition: filter .18s;
}
.ggo-sz-btn__icon img {
  display: block;
}
.ggo-sz-btn--on .ggo-sz-btn__icon img {
  filter: brightness(0) invert(1);
}
.ggo-sz-btn__label {
  display: inline-block;
}
.ggo-sz-btn--on {
  background: var(--g-dark);
  border-color: var(--g-dark);
  color: var(--g-white);
}
.ggo-sz-btn:hover:not(.ggo-sz-btn--on):not(.ggo-sz-btn--disabled) { border-color: var(--g-dark); }
.ggo-sz-btn--disabled {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Disabled filter options (zero results under current filters) ── */
.ggo-checkbox--disabled {
  cursor: not-allowed;
  opacity: .45;
  pointer-events: none;
}
.ggo-checkbox__label--disabled {
  text-decoration: line-through;
  color: #aaa;
}

/* ── Condition filter options (color dot + label) ── */
.ggo-cond-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.ggo-cond-opt input[type="checkbox"] { display: none; }
.ggo-cond-opt .ggo-checkbox__box {
  flex-shrink: 0;
}
.ggo-cond-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .15s;
}
.ggo-cond-opt:hover .ggo-cond-dot { transform: scale(1.35); }
.ggo-cond-opt input:checked ~ .ggo-cond-dot {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px currentColor;
  outline: 2px solid transparent; /* a11y: outline via box-shadow above */
}
/* When condition option is checked, use the dot color for the checkbox outline */
.ggo-cond-opt input:checked ~ .ggo-checkbox__box {
  border-color: #333;
  background: #333;
}

/* ── Size system toggle (EU/US) ── */
.ggo-size-sys-toggle {
  display: flex;
  border: 1px solid var(--g-border);
  width: fit-content;
  margin-bottom: 12px;
}
.ggo-size-sys-btn {
  font-family: var(--g-sans);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border: none;
  cursor: pointer;
  background: var(--g-white);
  color: #888;
  transition: background .18s, color .18s;
}
.ggo-size-sys-btn--on {
  background: var(--g-dark);
  color: var(--g-white);
}
.ggo-size-note {
  font-family: var(--g-sans);
  font-size: 10px;
  color: #aaa;
  margin-top: 10px;
}
.ggo-size-note--hidden { display: none; }

/* ── Price dual-range ── */
.ggo-price-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: var(--g-sans);
  font-size: 13px;
  font-weight: 500;
}
.ggo-range-wrap {
  position: relative;
  height: 2px;
  background: #e0dbd3;
  margin: 12px 0 18px;
  overflow: visible;
}
.ggo-range-track {
  position: absolute;
  inset: 0;
}
.ggo-range-fill {
  position: absolute;
  height: 100%;
  background: var(--g-gold, #b8860b);
  pointer-events: none;
}
.ggo-range {
  position: absolute;
  width: 100%;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  /* Disable pointer events on the whole input track — only thumbs respond */
  pointer-events: none;
  cursor: pointer;
  margin: 0;
}
.ggo-range::-webkit-slider-runnable-track {
  background: transparent;
  height: 2px;
}
.ggo-range::-moz-range-track {
  background: transparent;
  height: 2px;
  border: none;
}
.ggo-range::-moz-range-progress {
  background: transparent;
}
.ggo-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;   /* thumb catches events even though input has none */
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--g-gold, #b8860b);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
  cursor: grab;
  margin-top: -8px;
}
.ggo-range:active::-webkit-slider-thumb {
  cursor: grabbing;
  transform: scale(1.1);
}
.ggo-range::-moz-range-thumb {
  pointer-events: all;   /* thumb catches events even though input has none */
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--g-gold, #b8860b);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
  cursor: grab;
}
.ggo-range:active::-moz-range-thumb {
  cursor: grabbing;
}
/* Both at equal z-index — pointer-events on thumbs only handles picking */
.ggo-range--lo { z-index: 3; }
.ggo-range--hi { z-index: 3; }

/* ── Auth trust strip (desktop sidebar bottom) ── */
.ggo-filter-trust {
  margin-top: 28px;
  padding: 16px;
  background: var(--g-cream);
  border-left: 2px solid var(--g-gold-lt);
}
.ggo-filter-trust__eyebrow {
  font-family: var(--g-sans);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--g-gold);
  margin-bottom: 6px;
}
.ggo-filter-trust__text {
  font-family: var(--g-sans);
  font-size: 12px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ── Clear all (sidebar) ── */
.ggo-filters__clear-row { padding: 10px 0 4px; }
.ggo-filters__clear-all {
  font-family: var(--g-sans);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #888;
  text-decoration: underline;
}
.ggo-filters__clear-all:hover { color: var(--g-dark); }

/* ── Sort bar (desktop, top of grid) ── */
.ggo-sort-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
@media (max-width: 767px) { .ggo-sort-bar { display: none; } }

.ggo-sort-bar__label {
  font-family: var(--g-sans);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #888;
}
.ggo-sort-bar__select-wrap { position: relative; }
.ggo-sort-select {
  font-family: var(--g-sans);
  font-size: 11px;
  letter-spacing: .08em;
  border: 1px solid var(--g-border);
  padding: 9px 32px 9px 12px;
  background: var(--g-white);
  color: var(--g-dark);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231a1a1a' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

/* ── Product grid ── */
.ggo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) { .ggo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .ggo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ── Load more ── */
.ggo-load-more {
  text-align: center;
  margin-top: 40px;
  position: relative;
  transition: opacity 0.3s;
}
.ggo-load-more__btn {
  min-width: 200px;
}
.ggo-load-more--loading::after {
  content: '';
  display: block;
  width: 32px; height: 32px;
  margin: 20px auto;
  border: 3px solid var(--g-border, #e8e2d8);
  border-top-color: var(--g-gold, #b8860b);
  border-radius: 50%;
  animation: ggo-spin 0.7s linear infinite;
}
@keyframes ggo-spin { to { transform: rotate(360deg); } }

/* ── Shared buttons ── */
.ggo-btn {
  font-family: var(--g-sans);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 1px solid var(--g-dark);
  background: none;
  color: var(--g-dark);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .18s, color .18s;
}
.ggo-btn:hover { background: var(--g-dark); color: var(--g-white); }
.ggo-btn--outline { background: none; }
.ggo-btn--dark { background: var(--g-dark); color: var(--g-white); border-color: var(--g-dark); }
.ggo-btn--dark:hover { opacity: .85; }

/* ── No results ── */
.ggo-no-results {
  text-align: center;
  padding: 60px 0;
}
.ggo-no-results__title {
  font-family: var(--g-serif);
  font-size: 28px;
  font-weight: 300;
  color: #ccc;
  margin-bottom: 10px;
}
.ggo-no-results__sub {
  font-family: var(--g-sans);
  font-size: 13px;
  color: #aaa;
  margin-bottom: 20px;
}

/* ── Mobile overlay ── */
.ggo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 399;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.ggo-overlay--on { opacity: 1; pointer-events: all; }

/* ── Bottom sheets (filter + sort) ── */
.ggo-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--g-bg);
  z-index: 400;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,.15);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.32,0,.15,1);
  max-height: 88vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.ggo-sheet--open { transform: translateY(0); }

.ggo-sheet__bar {
  display: flex;
  justify-content: center;
  padding: 12px 0 0;
}
.ggo-sheet__handle {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: var(--g-border);
}
.ggo-sheet__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--g-border);
}
.ggo-sheet__head-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ggo-sheet__heading {
  font-family: var(--g-serif);
  font-size: 22px;
  font-weight: 400;
}
.ggo-sheet__clear {
  font-family: var(--g-sans);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
  text-decoration: underline;
}
.ggo-sheet__close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #888;
  line-height: 1;
}
.ggo-sheet__body {
  padding: 0 20px;
}
.ggo-sheet__body--sort { padding-bottom: 36px; }
.ggo-sheet__foot {
  padding: 16px 20px 36px;
  position: sticky;
  bottom: 0;
  background: var(--g-bg);
  border-top: 1px solid var(--g-border);
}
.ggo-sheet__apply {
  width: 100%;
}

/* ── Sort options list ── */
.ggo-sort-opt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  border-bottom: 1px solid var(--g-cream);
  font-family: var(--g-sans);
  font-size: 13px;
  color: var(--g-dark);
  letter-spacing: .04em;
  text-decoration: none;
  transition: color .18s;
}
.ggo-sort-opt--on { color: var(--g-gold); }
.ggo-sort-opt__check { color: var(--g-gold); font-size: 16px; }

/* ── GGO FILTER OVERRIDES (mockup design) ─────────────────────────────── */
.ggo-gender-toggle {
  display: flex !important;
  flex-direction: row !important;
  gap: 0;
}
.ggo-gender-btn {
  flex: 1 1 0% !important;
  padding: 10px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #ddd8d0;
  background: transparent;
  color: #4a4540;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  display: block;
}
.ggo-gender-btn input[type="checkbox"] { display: none !important; }
.ggo-gender-btn + .ggo-gender-btn { margin-left: -1px; }
.ggo-gender-btn--on {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.ggo-model-chip {
  padding: 6px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  border: 1px solid #ddd8d0;
  background: transparent;
  color: #4a4540;
  cursor: pointer;
  transition: all 0.2s;
}
.ggo-model-chip--on {
  background: #b8860b;
  color: #fff;
  border-color: #b8860b;
  font-weight: 700;
}
.ggo-model-chip--disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
.ggo-model-chip input[type="checkbox"] { display: none !important; }
.ggo-model-chip__icon {
  display: inline-flex;
  margin-right: 6px;
}
.ggo-model-chip__icon img { display: block; }
.ggo-model-chip--on .ggo-model-chip__icon img { filter: brightness(0) invert(1); }

.ggo-size-toggle {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #8a8278;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ggo-size-toggle strong { color: #1a1a1a; }

.ggo-size-btn {
  width: 48px;
  height: 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  border: 1px solid #ddd8d0;
  background: transparent;
  color: #4a4540;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.ggo-size-btn--on {
  background: #b8860b;
  color: #fff;
  border-color: #b8860b;
  font-weight: 700;
}
.ggo-size-btn input[type="checkbox"] { display: none !important; }
.ggo-size-btn--disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════
   GGO MOCKUP OVERRIDES — Fixes from audit
   ══════════════════════════════════════════════════════════════ */

/* 1. Card image background */
.ggo-sg-card__img-wrap,
.ggo-sg-card .ggo-sg-card__img-area {
  background-color: #f0ece4 !important;
}

/* 2. Card body padding (desktop) */
.ggo-sg-card__body {
  padding: 9px 2px 0 !important;
}
@media (max-width: 768px) {
  .ggo-sg-card__body {
    padding: 7px 1px 0 !important;
  }
}

/* 3. Title size */
.ggo-cat__title,
.ggo-title-row h1 {
  font-size: 38px !important;
}
@media (max-width: 768px) {
  .ggo-cat__title,
  .ggo-title-row h1 {
    font-size: 26px !important;
  }
}

/* 4. Filter accordion smooth transition instead of display toggle */
.ggo-filter-group__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.ggo-filter-group--open .ggo-filter-group__body {
  max-height: 800px;
  display: block !important;
}

/* 5. Card stagger animation */
@keyframes ggoFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ggo-sg-card,
.ggo-grid .ggo-sg-card {
  animation: ggoFadeUp 0.4s ease both;
}

/* 6. Chips bar — mobile only, sticky bottom */
.ggo-chips {
  display: none !important;
}
@media (max-width: 768px) {
  .ggo-chips:not(:empty) {
    display: flex !important;
    position: sticky;
    bottom: 0;
    z-index: 89;
    background: #1a1a1a;
    padding: 10px 16px;
    border-top: 1px solid #2e2a26;
    align-items: center;
  }
  .ggo-chips .ggo-chip {
    flex-shrink: 0;
    padding: 5px 10px;
    background: #2e2a26;
    color: #d4c9b8;
    font-family: 'DM Sans', sans-serif;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
  }
  .ggo-chips__clear {
    flex-shrink: 0;
    background: #b8860b;
    color: #fff;
    padding: 7px 14px;
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
  }
}

/* 7. Breadcrumbs visible on mobile */
@media (max-width: 768px) {
  .ggo-bc {
    display: block !important;
    padding: 14px 16px 0 !important;
  }
}

/* 8. Grid: 3 cols desktop, ensure gap */
.ggo-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px 16px !important;
}
@media (max-width: 768px) {
  .ggo-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px 8px !important;
  }
}

/* 9. Remove card hover lift + shadow (mockup doesn't have it) */
.ggo-sg-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* 10. Quick Add — only on desktop hover */
.ggo-sg-card__add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26,26,26,0.92);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  border: none;
  cursor: pointer;
  z-index: 2;
}
.ggo-sg-card:hover .ggo-sg-card__add {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .ggo-sg-card__add {
    display: none !important;
  }
}

/* 11. Sale price gold, original strikethrough */
.ggo-sg-card__sale {
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #b8860b;
}
.ggo-sg-card__original {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #b0a99e;
}
.ggo-sg-card__price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .ggo-sg-card__sale { font-size: 12.5px; }
  .ggo-sg-card__original { font-size: 10.5px; }
  .ggo-sg-card__price { gap: 5px; margin-top: 3px; }
}

/* 12. Model text */
.ggo-sg-card__model {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #a09888;
  letter-spacing: 0.02em;
  margin-top: 1px;
}
@media (max-width: 768px) {
  .ggo-sg-card__model { font-size: 10px; }
}

/* 13. Product name serif */
.ggo-sg-card__name,
.ggo-sg-card__name a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
  text-decoration: none;
}
@media (max-width: 768px) {
  .ggo-sg-card__name,
  .ggo-sg-card__name a { font-size: 13.5px; }
}

/* 14. Discount badge */
.ggo-sg-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #b8860b;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  z-index: 2;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .ggo-sg-card__badge {
    top: 6px;
    left: 6px;
    font-size: 9.5px;
    padding: 2.5px 6px;
  }
}

/* 15. Wishlist heart on card */
.ggo-sg-card__wishlist {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  color: #1a1a1a;
}
.ggo-sg-card__wishlist:hover { background: #fff; transform: scale(1.1); }
.ggo-sg-card__wishlist.is-wishlisted svg { fill: #c0392b; stroke: #c0392b; }
@media (max-width: 768px) {
  .ggo-sg-card__wishlist { width: 26px; height: 26px; top: 6px; right: 6px; }
  .ggo-sg-card__wishlist svg { width: 14px; height: 14px; }
}

/* SEO pagination — crawlable /page/N/ series (JS hides it; no-JS fallback) */
.ggo-seo-pagination{display:flex;flex-wrap:wrap;gap:6px;justify-content:center;margin:24px 0}
.ggo-seo-pagination__link,
.ggo-seo-pagination__current{min-width:38px;padding:8px 10px;text-align:center;border:1px solid #d8d8d8;border-radius:4px;font-size:14px;line-height:1;text-decoration:none;color:#111}
.ggo-seo-pagination__link:hover{border-color:#111}
.ggo-seo-pagination__current{background:#111;color:#fff;border-color:#111;font-weight:600}
