/* ==========================================================================
   Golden Goose Outlet — blocks.css
   Production styles for the GG Outlet WordPress plugin.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --ggo-gold: #b8860b;
  --ggo-gold-light: #d4a537;
  --ggo-dark: #1a1a1a;
  --ggo-cream: #f9f6f0;
  --ggo-cream-dark: #f0ece4;
  --ggo-border: #e8e2d8;
  --ggo-text: #1a1a1a;
  --ggo-text-muted: #8a8278;
  --ggo-text-light: #a09888;
  --ggo-text-faint: #6b6560;
  --ggo-font-serif: 'Cormorant Garamond', Georgia, serif;
  --ggo-font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ggo-container: 1200px;
  --ggo-page-max: 1440px;
}

/* --------------------------------------------------------------------------
   2. Keyframes
   -------------------------------------------------------------------------- */
@keyframes ggo-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes ggo-fadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ggo-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes ggo-slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   3. Base
   -------------------------------------------------------------------------- */
.ggo-fullwidth-main {
  background: var(--ggo-cream);
  font-family: var(--ggo-font-sans);
  color: var(--ggo-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   4. Marquee
   -------------------------------------------------------------------------- */
.ggo-marquee {
  background: var(--ggo-dark);
  color: #d4c9b8;
  font-family: var(--ggo-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ggo-marquee__track {
  display: inline-block;
  animation: ggo-marquee var(--ggo-speed, 30s) linear infinite;
}

.ggo-marquee__item {
  margin: 0 24px;
}


/* --------------------------------------------------------------------------
   5. Nav (from child theme, ggo- prefix)
   -------------------------------------------------------------------------- */
.ggo-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 246, 240, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8e2d8;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
/* Left group: hamburger (mobile) + logo */
.ggo-nav__left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ggo-nav__logo {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #1a1a1a;
}
.ggo-nav__logo-star { flex-shrink: 0; }
.ggo-nav__logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.ggo-nav__logo-outlet {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #b8860b;
  text-transform: uppercase;
}

/* Hamburger — hidden on desktop */
.ggo-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
}
.ggo-nav__hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #1a1a1a;
}
.ggo-nav__hamburger-short { width: 13px !important; }

/* Center nav links */
.ggo-nav__links { display: flex; gap: 32px; align-items: center; }
.ggo-nav__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  transition: color .2s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.ggo-nav__link:hover { color: #b8860b; }
.ggo-nav__link--gold {
  color: #b8860b;
  border-bottom: 1px dashed #d4a537;
  padding-bottom: 1px;
}

/* Dropdown menus */
.ggo-nav__dropdown-wrap {
  position: relative;
}
.ggo-nav__link--has-sub {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ggo-nav__arrow-svg {
  transition: transform .25s ease;
  flex-shrink: 0;
}
.ggo-nav__dropdown-wrap:hover .ggo-nav__arrow-svg {
  transform: rotate(180deg);
}
.ggo-nav__submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 420px;
  background: #ffffff;
  border: 1px solid #e8e2d8;
  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;
}
.ggo-nav__submenu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 24px;
}
.ggo-nav__dropdown-wrap:hover .ggo-nav__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.ggo-nav__submenu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  color: #1a1a1a;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
  break-inside: avoid;
  page-break-inside: avoid;
}
.ggo-nav__submenu-item:hover {
  background: #f5f5f5;
  color: #b8860b;
}
.ggo-nav__submenu-item--all {
  font-weight: 600;
  border-bottom: 1px solid #e8e2d8;
  margin-bottom: 4px;
  padding-bottom: 8px;
  column-span: all;
}
.ggo-nav__submenu-thumb {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}
/* Hide dropdowns on mobile */
@media (max-width: 767px) {
  .ggo-nav__dropdown { position: static; }
  .ggo-nav__submenu { display: none !important; }
}
.ggo-nav__logo-wrap {
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  line-height: 1;
}
.ggo-nav__logo-wrap a {
  color: #1a1a1a;
  text-decoration: none;
  display: inline-block;    /* inline-block: link wraps only the name, not full cell */
  outline: none;
  border: none;
}
.ggo-nav__logo-wrap a:focus,
.ggo-nav__logo-wrap a:focus-visible {
  outline: none;
  box-shadow: none;
}
.ggo-nav__logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.1;
  color: #1a1a1a;
}
.ggo-nav__logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: .2em;
  color: #b8860b;
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
}
.ggo-nav__right { display: flex; gap: 24px; align-items: center; }
.ggo-nav__search { display: none !important; }
.ggo-nav__wishlist {
  display: flex;
  align-items: center;
  position: relative;
  color: #1a1a1a;
  transition: opacity .2s;
}
.ggo-nav__wishlist:hover { opacity: .6; }
.ggo-nav__wishlist-count {
  position: absolute;
  top: -5px; right: -7px;
  background: var(--ggo-gold, #b8860b);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  width: 15px; height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ggo-cart-icon  {
  position: relative;
  cursor: pointer;
  line-height: 0;
  background: none;
  border: none;
  padding: 4px;
  color: #1a1a1a;
  transition: opacity .2s;
}
.ggo-cart-icon:hover { opacity: .6; }
.ggo-nav__cart {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  line-height: 0;
}
.ggo-cart-count {
  position: absolute;
  top: -5px; right: -7px;
  background: #b8860b;
  color: #fff;
  border-radius: 50%;
  width: 15px; height: 15px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
}
/* 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 #e8e2d8;
  flex-shrink: 0;
}
.mini-cart-panel__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}
.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: #1a1a1a; }
.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 #e8e2d8;
  border-top-color: #b8860b;
  border-radius: 50%;
  animation: gooseGridSpin .7s linear infinite;
}

/* Hamburger */
.ggo-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
}
.ggo-hamburger__bar {
  display: block;
  width: 22px; height: 1.5px;
  background: #1a1a1a;
  transition: all .25s;
}

@media (max-width: 767px) {
  .ggo-nav { padding: 0 16px; height: 56px; }
  .ggo-nav__links { display: none; }
  .ggo-nav__link--pkgguide { display: none; }
  .ggo-nav__link--hiw { display: none; }
  .ggo-nav__logo-wrap { position: absolute; left: 50%; transform: translateX(-50%); }
  .ggo-nav__logo-name { font-size: 18px; }
  .ggo-hamburger { display: flex; }
}

/* --------------------------------------------------------------------------
   5. Mobile drawer & overlay
   -------------------------------------------------------------------------- */
.ggo-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.42);
  z-index: 299;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.ggo-overlay.is-open { opacity: 1; pointer-events: all; }

.ggo-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(300px, 82vw);
  background: #f9f6f0;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.ggo-drawer.is-open { transform: translateX(0); }
.ggo-drawer__item {
  display: block;
  padding: 15px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #f0ece4;
  letter-spacing: 0.04em;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

/* --------------------------------------------------------------------------
   6. Sidebar
   -------------------------------------------------------------------------- */
.ggo-sidebar__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.ggo-sidebar.is-open .ggo-sidebar__overlay {
  opacity: 1;
  pointer-events: auto;
}

.ggo-sidebar__panel {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(300px, 82vw);
  background: var(--ggo-cream);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.ggo-sidebar.is-open .ggo-sidebar__panel {
  transform: translateX(0);
}

.ggo-sidebar__head {
  padding: 18px 20px;
  border-bottom: 1px solid var(--ggo-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ggo-sidebar__logo {
  font-family: var(--ggo-font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--ggo-dark);
}

.ggo-sidebar__logo-text {
  font-family: var(--ggo-font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--ggo-dark);
  letter-spacing: 0.04em;
}

.ggo-sidebar__logo-outlet {
  font-family: var(--ggo-font-sans);
  font-size: 8px;
  font-weight: 700;
  color: var(--ggo-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ggo-sidebar__close {
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ggo-dark);
  padding: 0;
  line-height: 1;
}

.ggo-sidebar__nav {
  flex: 1;
  overflow-y: auto;
}

.ggo-sidebar__item {
  border-bottom: 1px solid #f0ece4;
  padding: 15px 20px;
}

.ggo-sidebar__item-head,
.ggo-sidebar__item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--ggo-font-sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ggo-text);
  text-decoration: none;
  cursor: pointer;
}

.ggo-sidebar__item-head a,
.ggo-sidebar__item a {
  color: inherit;
  text-decoration: none;
}

.ggo-sidebar__chevron {
  font-size: 11px;
  color: var(--ggo-text-light);
  transition: transform 0.3s ease;
}

.ggo-sidebar__has-sub.is-open .ggo-sidebar__chevron {
  transform: rotate(90deg);
}

.ggo-sidebar__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #f4f0e8;
}

.ggo-sidebar__has-sub.is-open .ggo-sidebar__sub {
  max-height: 800px;
}

.ggo-sidebar__sub-viewall {
  display: block;
  font-family: var(--ggo-font-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--ggo-gold);
  text-decoration: none;
  padding: 10px 20px 10px 28px;
}

.ggo-sidebar__sub-link {
  display: block;
  font-family: var(--ggo-font-sans);
  font-size: 12.5px;
  color: var(--ggo-text);
  text-decoration: none;
  padding: 9px 20px 9px 28px;
}

.ggo-sidebar__footer {
  padding: 18px 20px;
  border-top: 1px solid var(--ggo-border);
  font-family: var(--ggo-font-sans);
  font-size: 9.5px;
  color: var(--ggo-text-light);
}

/* --------------------------------------------------------------------------
   7. Mini Cart
   -------------------------------------------------------------------------- */
.ggo-minicart__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.ggo-minicart.is-open .ggo-minicart__overlay {
  opacity: 1;
  pointer-events: auto;
}

.ggo-minicart__content {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(400px, 85vw);
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.ggo-minicart.is-open .ggo-minicart__content {
  transform: translateX(0);
}

.ggo-minicart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--ggo-border);
}

.ggo-minicart__title {
  font-family: var(--ggo-font-sans);
  font-size: 13px;
  font-weight: 600;
}

.ggo-minicart__close {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ggo-dark);
  padding: 0;
  line-height: 1;
}

.ggo-minicart__body {
  flex: 1;
  overflow-y: auto;
}

/* --------------------------------------------------------------------------
   7b. Search Panel
   -------------------------------------------------------------------------- */
.ggo-search {
  display: none;
}

.ggo-search.is-open {
  display: block;
}

.ggo-search__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 998;
}

.ggo-search__content {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--ggo-cream);
  border-bottom: 1px solid var(--ggo-border);
  padding: 0;
  animation: ggo-slideDown 0.25s ease both;
}

.ggo-search__form {
  display: flex;
  align-items: center;
  max-width: var(--ggo-container);
  margin: 0 auto;
  padding: 16px 48px;
  gap: 12px;
}

.ggo-search__icon {
  flex-shrink: 0;
  color: var(--ggo-text-light);
}

.ggo-search__input {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--ggo-font-sans);
  font-size: 16px;
  color: var(--ggo-text);
  outline: none;
  letter-spacing: 0.02em;
}

.ggo-search__input::placeholder {
  color: var(--ggo-text-light);
}

.ggo-search__close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--ggo-text);
  padding: 4px;
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.ggo-hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.ggo-hero.is-visible {
  opacity: 1;
}

.ggo-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.ggo-hero__img--mobile {
  display: none;
}

@media (max-width: 600px) {
  .ggo-hero__img--desktop {
    display: none;
  }
  .ggo-hero__img--mobile {
    display: block;
  }
}

.ggo-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.35) 80%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.ggo-hero__badge {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1.5px solid rgba(184, 134, 11, 0.5);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.ggo-hero__badge-label {
  font-family: var(--ggo-font-sans);
  font-size: 9px;
  font-weight: 700;
  color: var(--ggo-gold);
  text-transform: uppercase;
}

.ggo-hero__badge-num {
  font-family: var(--ggo-font-serif);
  font-size: 28px;
  color: #fff;
  line-height: 1;
}

.ggo-hero__badge-off {
  font-family: var(--ggo-font-sans);
  font-size: 8px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.ggo-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 0 60px 56px;
}

.ggo-hero__overline {
  font-family: var(--ggo-font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ggo-gold);
  animation: ggo-slideDown 0.3s ease;
}

.ggo-hero__heading {
  font-family: var(--ggo-font-serif);
  font-size: 58px;
  font-weight: 300;
  color: #fff;
  line-height: 1.08;
  margin: 0;
}

.ggo-hero__heading em {
  font-family: var(--ggo-font-serif);
  font-size: 58px;
  font-weight: 600;
  font-style: italic;
  color: var(--ggo-gold-light);
}

.ggo-hero__body {
  font-family: var(--ggo-font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 440px;
  line-height: 1.6;
  margin-top: 12px;
}

.ggo-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 38px;
  background: var(--ggo-gold);
  color: #fff;
  font-family: var(--ggo-font-sans);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

/* --------------------------------------------------------------------------
   9. Trust Strip
   -------------------------------------------------------------------------- */
.ggo-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  background: var(--ggo-dark);
  padding: 16px 24px;
}

.ggo-trust__item {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.ggo-trust__icon {
  font-size: 14px;
  color: var(--ggo-gold);
  flex-shrink: 0;
}

.ggo-trust__text {
  font-family: var(--ggo-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

/* Scrollbar hiding for trust strip */
.ggo-trust::-webkit-scrollbar {
  display: none;
}
.ggo-trust {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* --------------------------------------------------------------------------
   10. Product Grid
   -------------------------------------------------------------------------- */
.ggo-products {
  /* Section wrapper */
}

.ggo-products__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  margin-bottom: 40px;
  gap: 0;
}

.ggo-products__tab {
  font-family: var(--ggo-font-serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #c5bdb2;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 16px;
  position: relative;
  transition: color 0.2s ease;
}

.ggo-products__tab.is-active {
  font-weight: 600;
  color: var(--ggo-dark);
}

.ggo-products__tab.is-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: var(--ggo-gold);
}

.ggo-products__tab-sep {
  font-family: var(--ggo-font-serif);
  font-size: 28px;
  color: #d8d2c8;
  padding: 0;
  margin: 0;
  user-select: none;
}

.ggo-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 16px;
  max-width: var(--ggo-container);
  margin: 0 auto;
  padding: 0 48px;
}

.ggo-products__grid.is-hidden {
  display: none;
}

.ggo-products__viewall {
  text-align: center;
  margin: 40px auto 64px;
}

.ggo-products__viewall-btn {
  display: inline-block;
  font-family: var(--ggo-font-sans);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  border: 1px solid var(--ggo-dark);
  padding: 13px 44px;
  background: none;
  color: var(--ggo-dark);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.ggo-products__viewall-btn:hover {
  background: var(--ggo-dark);
  color: #fff;
}

/* --------------------------------------------------------------------------
   11. Product Card
   -------------------------------------------------------------------------- */
.ggo-product-card {
  cursor: pointer;
  animation: ggo-fadeUp 0.45s ease both;
}

.ggo-product-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ggo-cream-dark);
}

.ggo-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ggo-product-card:hover .ggo-product-card__img,
.ggo-product-card.is-hovered .ggo-product-card__img {
  transform: scale(1.06);
}

.ggo-product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ggo-gold);
  color: #fff;
  font-family: var(--ggo-font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  z-index: 2;
}

.ggo-product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.92);
  color: #fff;
  font-family: var(--ggo-font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  width: 100%;
  text-decoration: none;
  font-weight: 600;
}

.ggo-product-card:hover .ggo-product-card__quick-add,
.ggo-product-card.is-hovered .ggo-product-card__quick-add {
  transform: translateY(0);
}

.ggo-product-card__body {
  padding: 10px 2px 0;
}

.ggo-product-card__name {
  font-family: var(--ggo-font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--ggo-dark);
  line-height: 1.2;
}

.ggo-product-card__name a {
  color: inherit;
  text-decoration: none;
}

.ggo-product-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 5px;
}

.ggo-product-card__sale {
  font-family: var(--ggo-font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--ggo-gold);
}

.ggo-product-card__original {
  font-family: var(--ggo-font-sans);
  font-size: 12.5px;
  color: #b0a99e;
  text-decoration: line-through;
}

/* --------------------------------------------------------------------------
   12. Why Outlet
   -------------------------------------------------------------------------- */
.ggo-why {
  max-width: var(--ggo-container);
  margin: 0 auto;
  padding: 80px 48px;
}

.ggo-why__header {
  text-align: center;
  margin-bottom: 8px;
}

.ggo-why__heading {
  font-family: var(--ggo-font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--ggo-text);
  margin: 0;
}

.ggo-why__subtitle {
  font-family: var(--ggo-font-sans);
  font-size: 13px;
  color: var(--ggo-text-muted);
  margin-top: 8px;
}

.ggo-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.ggo-why__card {
  border: 1px solid var(--ggo-border);
  padding: 36px 28px;
  text-align: center;
}

.ggo-why__num {
  font-family: var(--ggo-font-serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--ggo-gold);
  line-height: 1;
}

.ggo-why__card-content {
  flex: 1;
}

.ggo-why__title {
  font-family: var(--ggo-font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 16px 0 10px;
}

.ggo-why__desc {
  font-family: var(--ggo-font-sans);
  font-size: 12.5px;
  color: var(--ggo-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   13. Authenticate
   -------------------------------------------------------------------------- */
.ggo-auth {
  background: var(--ggo-dark);
  padding: 72px 48px;
}

.ggo-auth__container {
  max-width: var(--ggo-container);
  margin: 0 auto;
}

.ggo-auth__header {
  text-align: center;
  margin-bottom: 48px;
}

.ggo-auth__heading {
  font-family: var(--ggo-font-serif);
  font-size: 36px;
  font-weight: 400;
  color: #f5f0e8;
  margin: 0;
}

.ggo-auth__subtitle {
  font-family: var(--ggo-font-sans);
  font-size: 13px;
  color: var(--ggo-text-faint);
  margin-top: 8px;
}

.ggo-auth__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.ggo-auth__step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.ggo-auth__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 0;
  width: 1px;
  height: 48px;
  background: #2e2a26;
}

.ggo-auth__circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--ggo-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-family: var(--ggo-font-serif);
  font-size: 18px;
  color: var(--ggo-gold);
}

.ggo-auth__step-title {
  font-family: var(--ggo-font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f5f0e8;
  margin-bottom: 5px;
}

.ggo-auth__step-desc {
  font-family: var(--ggo-font-sans);
  font-size: 12px;
  color: var(--ggo-text-faint);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   14. Reviews
   -------------------------------------------------------------------------- */
.ggo-reviews {
  max-width: var(--ggo-container);
  margin: 0 auto;
  padding: 80px 48px;
}

.ggo-reviews__header {
  text-align: center;
  margin-bottom: 44px;
}

.ggo-reviews__heading {
  font-family: var(--ggo-font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--ggo-text);
  margin: 0;
}

.ggo-reviews__stars {
  color: var(--ggo-gold);
  font-size: 18px;
  letter-spacing: 3px;
  margin-top: 6px;
}

.ggo-reviews__rating {
  font-family: var(--ggo-font-sans);
  font-size: 12px;
  color: var(--ggo-text-muted);
  margin-top: 4px;
}

.ggo-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Scrollbar hiding for reviews grid */
.ggo-reviews__grid::-webkit-scrollbar {
  display: none;
}
.ggo-reviews__grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ggo-reviews__card {
  border: 1px solid var(--ggo-border);
  padding: 28px 24px;
}

.ggo-reviews__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.ggo-reviews__name {
  font-family: var(--ggo-font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ggo-reviews__verified {
  font-family: var(--ggo-font-sans);
  font-size: 9px;
  font-weight: 700;
  color: var(--ggo-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ggo-reviews__card-stars {
  color: var(--ggo-gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.ggo-reviews__text {
  font-family: var(--ggo-font-sans);
  font-size: 12.5px;
  color: var(--ggo-text-faint);
  line-height: 1.6;
}

.ggo-reviews__purchased {
  font-family: var(--ggo-font-sans);
  font-size: 10px;
  color: var(--ggo-text-light);
  margin-top: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   15. CTA Banner
   -------------------------------------------------------------------------- */
.ggo-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2520 100%);
  color: #f5f0e8;
  text-align: center;
  padding: 56px 24px;
  margin: 0 48px 80px;
}

.ggo-cta__heading {
  font-family: var(--ggo-font-serif);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
  color: #f5f0e8 !important;
}

.ggo-cta__sub {
  font-family: var(--ggo-font-sans);
  font-size: 12px;
  color: var(--ggo-text-light);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.ggo-cta__btn {
  display: inline-block;
  border: 1px solid var(--ggo-gold);
  color: var(--ggo-gold);
  font-family: var(--ggo-font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 40px;
  background: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.ggo-cta__btn:hover {
  background: var(--ggo-gold);
  color: #fff;
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.ggo-footer {
  display: none !important;
  border-top: 1px solid var(--ggo-border);
  padding: 40px 48px;
}

.ggo-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ggo-footer__logo {
  font-family: var(--ggo-font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ggo-dark);
}

.ggo-footer__logo em {
  font-style: italic;
  color: var(--ggo-gold);
}

.ggo-footer__disclaimer {
  font-family: var(--ggo-font-sans);
  font-size: 11px;
  color: var(--ggo-text-light);
  letter-spacing: 0.05em;
  max-width: 400px;
  text-align: right;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   17. Sticky Bar
   -------------------------------------------------------------------------- */
.ggo-sticky-bar {
  display: none;
}

/* --------------------------------------------------------------------------
   18. Shop Page Layout (category / archive)
   -------------------------------------------------------------------------- */

/* 18.1 – Shop container */
.ggo-shop {
  max-width: 1440px;
  margin: 0 auto;
  font-family: var(--ggo-font-sans);
}

/* 18.2 – Breadcrumb */
.ggo-shop__breadcrumb {
  padding: 20px 48px 0;
  font-family: var(--ggo-font-sans);
  font-size: 11px;
  color: #a09888;
  letter-spacing: 0.04em;
}

.ggo-shop__breadcrumb a {
  color: #a09888;
  text-decoration: none;
}

.ggo-shop__breadcrumb a:hover {
  color: var(--ggo-gold);
}

.ggo-shop__breadcrumb span:last-child {
  color: var(--ggo-text);
  font-weight: 600;
}

.ggo-shop__breadcrumb-sep {
  margin: 0 6px;
  color: #a09888;
}

/* 18.3 – Title row */
.ggo-shop__title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 28px 48px 20px;
}

.ggo-shop__heading {
  font-family: var(--ggo-font-serif);
  font-size: 38px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
}

.ggo-shop__count {
  font-family: var(--ggo-font-sans);
  font-size: 12px;
  color: #8a8278;
}

/* 18.4 – Toolbar */
.ggo-shop__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px 20px;
}

.ggo-shop__toolbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ggo-filter-drawer-open {
  font-family: var(--ggo-font-sans);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: none;
  border: 1px solid #ddd8d0;
  padding: 8px 16px;
  cursor: pointer;
  color: var(--ggo-text);
  display: none; /* hidden on desktop, shown on mobile */
}

.ggo-filter-count {
  display: inline-block;
  background: var(--ggo-gold);
  color: #fff;
  font-size: 9px;
  padding: 1px 6px;
  border-radius: 10px;
  margin-left: 4px;
}

.ggo-clear-all,
#ggo-clear-all {
  color: var(--ggo-gold);
  font-family: var(--ggo-font-sans);
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: underline;
  letter-spacing: 0.06em;
  cursor: pointer;
  background: none;
  border: none;
}

/* 18.5 – Sort dropdown */
.ggo-sort {
  position: relative;
}

.ggo-sort-btn {
  font-family: var(--ggo-font-sans);
  font-size: 11.5px;
  color: #4a4540;
  background: #fff;
  border: 1px solid #ddd8d0;
  padding: 8px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ggo-sort-btn__label {
  font-weight: 600;
}

.ggo-sort-panel {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ddd8d0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 50;
  margin-top: 4px;
}

.ggo-sort-panel.is-open {
  display: block;
}

.ggo-sort-option {
  display: block;
  width: 100%;
  padding: 9px 18px;
  text-align: left;
  font-family: var(--ggo-font-sans);
  font-size: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ggo-text);
}

.ggo-sort-option:hover {
  background: var(--ggo-cream);
}

.ggo-sort-option.is-active {
  color: var(--ggo-gold);
  font-weight: 700;
}

/* 18.6 – Filter chips */
.ggo-shop__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 48px 16px;
}

.ggo-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ggo-cream-dark);
  border: 1px solid var(--ggo-border);
  padding: 5px 10px;
  font-family: var(--ggo-font-sans);
  font-size: 11px;
  color: var(--ggo-text);
}

.ggo-filter-chip__remove {
  color: #8a8278;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.ggo-filter-chip__remove:hover {
  color: var(--ggo-text);
}

/* 18.7 – Main layout */
.ggo-shop__layout {
  display: flex;
  gap: 32px;
  padding: 0 48px 60px;
}

/* 18.8 – Desktop sidebar */
.ggo-shop__sidebar {
  width: 240px;
  flex-shrink: 0;
}

.ggo-shop__sidebar-heading {
  font-family: var(--ggo-font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ggo-border);
  margin-bottom: 4px;
}

.ggo-shop__main {
  flex: 1;
  min-width: 0;
}

/* 18.9 – Product grid */
.ggo-shop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 16px;
}

/* 18.10 – Product card */
.ggo-sg-card {
  position: relative;
  cursor: pointer;
}

.ggo-sg-card--oos {
  opacity: 0.6;
}

.ggo-sg-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f0ece4;
}

.ggo-sg-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ggo-sg-card:hover .ggo-sg-card__img-wrap img {
  transform: scale(1.06);
}

.ggo-sg-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 11px;
  color: #a09888;
  text-transform: uppercase;
}

.ggo-sg-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ggo-gold);
  color: #fff;
  font-family: var(--ggo-font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  z-index: 2;
}

.ggo-sg-card__badge--oos {
  background: #666;
}

.ggo-sg-card__add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.92);
  color: #fff;
  font-family: var(--ggo-font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  padding: 12px 10px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  z-index: 2;
}

.ggo-sg-card:hover .ggo-sg-card__add {
  transform: translateY(0);
}

.ggo-sg-card__body {
  padding: 10px 0 0;
}

.ggo-sg-card__name {
  font-family: var(--ggo-font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ggo-text);
  margin: 0;
}

.ggo-sg-card__name a {
  color: inherit;
  text-decoration: none;
}

.ggo-sg-card__name a:hover {
  color: var(--ggo-gold);
}

.ggo-sg-card__price {
  font-family: var(--ggo-font-sans);
  font-size: 12px;
  margin-top: 4px;
}

.ggo-sg-card__price del {
  color: #a09888;
  margin-right: 6px;
}

.ggo-sg-card__price ins {
  color: var(--ggo-gold);
  font-weight: 700;
  text-decoration: none;
}

/* 18.11 – Sidebar inner */
.ggo-sidebar-inner {
  /* wrapper for all filter groups */
}

/* 18.12 – Filter groups (accordion) */
.ggo-filter-group {
  border-bottom: 1px solid var(--ggo-border);
}

.ggo-filter-group__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--ggo-font-sans);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ggo-text);
}

.ggo-filter-group__icon {
  font-size: 14px;
  color: #a09888;
  transition: transform 0.25s ease;
}

.ggo-filter-group__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.ggo-filter-group.is-open {
  padding-bottom: 16px;
}

.ggo-filter-group.is-open .ggo-filter-group__body {
  max-height: 600px;
}

/* 18.13 – Category filter items */
.ggo-category-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ggo-cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 4px;
  cursor: pointer;
  font-family: var(--ggo-font-sans);
  font-size: 12px;
  color: var(--ggo-text);
  border-radius: 4px;
  transition: background 0.15s ease;
}

.ggo-cat-item:hover {
  background: rgba(0, 0, 0, 0.03);
}

.ggo-cat-check {
  display: none;
  color: var(--ggo-gold);
  font-size: 12px;
}

.ggo-cat-item.is-active {
  font-weight: 700;
}

.ggo-cat-item.is-active .ggo-cat-check {
  display: inline;
}

/* 18.14 – Color swatches */
.ggo-color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ggo-color-swatch {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px 4px 4px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: border-color 0.15s ease;
  font-family: var(--ggo-font-sans);
  font-size: 11px;
}

.ggo-color-swatch:hover {
  border-color: var(--ggo-border);
}

.ggo-color-swatch.is-active {
  border-color: var(--ggo-gold);
}

.ggo-color-swatch__dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #ddd8d0;
  flex-shrink: 0;
  display: inline-block;
}

.ggo-color-swatch__dot--img {
  background-size: cover;
  background-position: center;
}

.ggo-color-swatch__label {
  white-space: nowrap;
}

/* 18.15 – Size buttons */
.ggo-size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ggo-size-btn {
  width: 40px;
  height: 40px;
  font-family: var(--ggo-font-sans);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd8d0;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  color: #4a4540;
}

.ggo-size-btn:hover {
  border-color: var(--ggo-text);
}

.ggo-size-btn.is-active {
  background: var(--ggo-gold);
  color: #fff;
  border-color: var(--ggo-gold);
}

/* 18.16 – Size unit toggle (EU/US) */
.ggo-size-unit-toggle {
  font-family: var(--ggo-font-sans);
  font-size: 10px;
  color: #8a8278;
  margin-bottom: 10px;
}

.ggo-size-unit-switch {
  display: inline;
  background: none;
  border: none;
  color: var(--ggo-gold);
  font-family: var(--ggo-font-sans);
  font-size: 10px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  margin-left: 4px;
}

/* 18.17 – Price range slider */
.ggo-price-range {
  padding: 4px 0;
}

.ggo-price-range__labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--ggo-font-sans);
  font-size: 11.5px;
  color: #6b6560;
  margin-bottom: 8px;
}

.ggo-price-range__track-wrap {
  position: relative;
  height: 24px;
}

.ggo-price-range__track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: #ddd8d0;
  transform: translateY(-50%);
  border-radius: 2px;
}

.ggo-price-range__fill {
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--ggo-gold);
  border-radius: 2px;
}

.ggo-price-range__thumb {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  background: var(--ggo-gold);
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  z-index: 2;
  cursor: grab;
}

.ggo-price-range__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  z-index: 3;
}

.ggo-price-range__input--min {
  z-index: 3;
}

.ggo-price-range__input--max {
  z-index: 4;
}

/* 18.18 – Load more */
.ggo-load-more {
  text-align: center;
  padding: 24px 0 40px;
}

.ggo-load-more__btn {
  font-family: var(--ggo-font-sans);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  border: 1px solid var(--ggo-text);
  padding: 13px 44px;
  cursor: pointer;
  background: transparent;
  color: var(--ggo-text);
  transition: all 0.2s ease;
}

.ggo-load-more__btn:hover {
  background: var(--ggo-text);
  color: #fff;
}

.ggo-load-more__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* 18.19 – Filter drawer (mobile bottom sheet) */
.ggo-filter-drawer {
  display: none;
}

.ggo-filter-drawer.is-open {
  display: block;
}

.ggo-filter-drawer__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 998;
}

.ggo-filter-drawer__panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 85vh;
  background: var(--ggo-cream);
  z-index: 999;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ggo-filter-drawer.is-open .ggo-filter-drawer__panel {
  transform: translateY(0);
}

.ggo-filter-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ggo-border);
}

.ggo-filter-drawer__title {
  font-family: var(--ggo-font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ggo-filter-drawer__close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--ggo-text);
  line-height: 1;
}

.ggo-filter-drawer__body {
  padding: 8px 20px 24px;
}

/* 18.20 – No results */
.ggo-shop__no-results {
  text-align: center;
  padding: 60px 20px;
}

.ggo-shop__no-results-heading {
  font-family: var(--ggo-font-serif);
  font-size: 24px;
  color: #c5bdb2;
  margin: 0 0 8px;
}

.ggo-shop__no-results-sub {
  font-family: var(--ggo-font-sans);
  font-size: 12px;
  color: #a09888;
  margin: 0;
}

.ggo-shop__no-results-sub a {
  color: var(--ggo-gold);
  text-decoration: underline;
}

.ggo-shop__empty {
  text-align: center;
  padding: 16px;
}

.ggo-shop__empty a {
  color: var(--ggo-gold);
  font-family: var(--ggo-font-sans);
  font-size: 12px;
  text-decoration: underline;
}

/* 18.21 – SEO content block */
.ggo-cat-desc {
  padding: 32px 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.ggo-cat-desc__container {
  font-family: var(--ggo-font-sans);
  font-size: 13px;
  line-height: 1.7;
  color: #6b6560;
}

.ggo-cat-desc__summary {
  cursor: pointer;
  color: var(--ggo-gold);
  font-weight: 600;
  font-size: 12px;
  margin-top: 8px;
  list-style: none;
}

.ggo-cat-desc__summary::-webkit-details-marker {
  display: none;
}

.ggo-cat-desc__details[open] .ggo-cat-desc__more {
  display: none;
}

.ggo-cat-desc__details:not([open]) .ggo-cat-desc__less {
  display: none;
}

/* 18.22 – Show more toggle for long filter lists */
.ggo-filter-show-more {
  display: block;
  margin-top: 8px;
  background: none;
  border: none;
  color: var(--ggo-gold);
  font-family: var(--ggo-font-sans);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

/* 18.23 – Grid loading state */
.ggo-grid-loading {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* --------------------------------------------------------------------------
   19. Responsive — Mobile (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {

  /* Nav */
  .ggo-nav {
    padding: 12px 16px;
  }

  .ggo-nav__logo-star {
    width: 18px;
    height: 18px;
  }

  .ggo-nav__logo-text {
    font-size: 14.5px;
  }

  .ggo-nav__logo-outlet {
    font-size: 7.5px;
  }

  .ggo-nav__hamburger {
    display: flex;
  }

  .ggo-nav__links {
    display: none;
  }

  .ggo-nav__right {
    gap: 14px;
  }

  .ggo-nav__wishlist {
    display: flex;
  }

  .ggo-search__form {
    padding: 12px 16px;
  }

  /* Hero */
  .ggo-hero {
    height: 360px;
  }

  .ggo-hero__badge {
    top: 12px;
    right: 12px;
    width: 62px;
    height: 62px;
  }

  .ggo-hero__badge-num {
    font-size: 20px;
  }

  .ggo-hero__badge-label {
    font-size: 7px;
  }

  .ggo-hero__badge-off {
    font-size: 6px;
  }

  .ggo-hero__content {
    padding: 0 20px 24px;
  }

  .ggo-hero__heading,
  .ggo-hero__heading em {
    font-size: 32px;
  }

  .ggo-hero__body {
    font-size: 11.5px;
  }

  .ggo-hero__btn {
    display: none;
  }

  /* Trust strip — 2-column grid on mobile */
  .ggo-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .ggo-trust__item {
    gap: 6px;
    padding: 12px 14px;
    border-right: 1px solid #2e2a26;
    border-bottom: 1px solid #2e2a26;
    justify-content: center;
  }
  .ggo-trust__item:nth-child(2n) { border-right: none; }

  .ggo-trust__icon {
    font-size: 11px;
  }

  .ggo-trust__text {
    font-size: 9px;
    white-space: normal;
  }

  /* Product grid */
  .ggo-products__tabs {
    margin-top: 28px;
    margin-bottom: 20px;
  }

  .ggo-products__tab {
    font-size: 22px;
  }

  .ggo-products__tab-sep {
    font-size: 22px;
  }

  .ggo-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 8px;
    padding: 0 16px;
  }

  .ggo-products__viewall {
    margin-bottom: 36px;
  }

  .ggo-products__viewall-btn {
    font-size: 10.5px;
    padding: 11px 32px;
  }

  /* Product card */
  .ggo-product-card__badge {
    top: 6px;
    left: 6px;
    font-size: 9.5px;
    padding: 2.5px 6px;
  }

  .ggo-product-card__quick-add {
    display: none;
  }

  .ggo-product-card__body {
    padding: 7px 1px 0;
  }

  .ggo-product-card__name {
    font-size: 13.5px;
  }

  .ggo-product-card__price {
    gap: 5px;
    margin-top: 2px;
  }

  .ggo-product-card__sale {
    font-size: 12.5px;
  }

  .ggo-product-card__original {
    font-size: 10.5px;
  }

  /* Why Outlet */
  .ggo-why {
    padding: 40px 16px;
  }

  .ggo-why__header {
    margin-bottom: 4px;
  }

  .ggo-why__heading {
    font-size: 26px;
  }

  .ggo-why__subtitle {
    font-size: 11.5px;
  }

  .ggo-why__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ggo-why__card {
    padding: 20px 16px;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
  }

  .ggo-why__num {
    font-size: 28px;
    flex-shrink: 0;
  }

  .ggo-why__title {
    font-size: 11px;
    margin: 0 0 5px;
  }

  .ggo-why__desc {
    font-size: 11.5px;
  }

  /* Authenticate */
  .ggo-auth {
    padding: 40px 16px;
  }

  .ggo-auth__header {
    margin-bottom: 28px;
  }

  .ggo-auth__heading {
    font-size: 26px;
  }

  .ggo-auth__subtitle {
    font-size: 11px;
  }

  .ggo-auth__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
  }

  .ggo-auth__step {
    padding: 0 4px;
  }

  .ggo-auth__step::after {
    display: none;
  }

  .ggo-auth__circle {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .ggo-auth__step-title {
    font-size: 9.5px;
  }

  .ggo-auth__step-desc {
    font-size: 10px;
  }

  /* Reviews */
  .ggo-reviews {
    padding: 40px 16px;
  }

  .ggo-reviews__header {
    margin-bottom: 24px;
  }

  .ggo-reviews__heading {
    font-size: 26px;
  }

  .ggo-reviews__stars {
    font-size: 15px;
  }

  .ggo-reviews__grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }

  .ggo-reviews__card {
    flex-shrink: 0;
    width: 78vw;
    max-width: 280px;
    scroll-snap-align: start;
    padding: 20px 16px;
  }

  .ggo-reviews__card-header {
    margin-bottom: 8px;
  }

  .ggo-reviews__name {
    font-size: 10.5px;
  }

  .ggo-reviews__verified {
    font-size: 8px;
  }

  .ggo-reviews__card-stars {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .ggo-reviews__text {
    font-size: 11.5px;
  }

  .ggo-reviews__purchased {
    font-size: 9px;
    margin-top: 10px;
  }

  /* CTA Banner */
  .ggo-cta {
    padding: 36px 20px;
    margin: 0 16px 32px;
  }

  .ggo-cta__heading {
    font-size: 22px;
  }

  .ggo-cta__sub {
    font-size: 10px;
  }

  .ggo-cta__btn {
    padding: 11px 24px;
  }

  /* Footer */
  .ggo-footer {
    padding: 28px 16px;
  }

  .ggo-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .ggo-footer__logo {
    font-size: 15px;
  }

  .ggo-footer__disclaimer {
    font-size: 10px;
    text-align: center;
  }

  /* Sticky Bar */
  .ggo-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--ggo-dark);
    padding: 11px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #2e2a26;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .ggo-sticky-bar.is-visible {
    transform: translateY(0);
  }

  .ggo-sticky-bar__info strong {
    display: block;
    font-family: var(--ggo-font-sans);
    font-size: 9.5px;
    font-weight: 700;
    color: var(--ggo-gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .ggo-sticky-bar__info span {
    display: block;
    font-family: var(--ggo-font-sans);
    font-size: 8.5px;
    color: var(--ggo-text-faint);
    letter-spacing: 0.06em;
    margin-top: 1.5px;
  }

  .ggo-sticky-bar__btn {
    background: var(--ggo-gold);
    color: #fff;
    font-family: var(--ggo-font-sans);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 22px;
    border: none;
    cursor: pointer;
    text-decoration: none;
  }

  /* Shop page mobile overrides */
  .ggo-shop__breadcrumb {
    padding: 14px 16px 0;
  }

  .ggo-shop__title-row {
    padding: 16px 16px 14px;
  }

  .ggo-shop__heading {
    font-size: 26px;
  }

  .ggo-shop__count {
    font-size: 10.5px;
  }

  .ggo-shop__toolbar {
    padding: 0 16px 14px;
  }

  .ggo-filter-drawer-open {
    display: flex;
    align-items: center;
  }

  .ggo-shop__sidebar {
    display: none;
  }

  .ggo-shop__layout {
    padding: 0 16px 20px;
  }

  .ggo-shop__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 8px;
  }

  .ggo-shop__chips {
    padding: 0 16px 12px;
  }

  .ggo-sg-card__add {
    display: none;
  }

  .ggo-sg-card__name {
    font-size: 13.5px;
  }

  .ggo-load-more__btn {
    padding: 11px 32px;
  }

  .ggo-cat-desc {
    padding: 24px 16px;
  }
}
