/** Shopify CDN: Minification failed

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

**/
/* ==============================================
   GOLD SKY — goldsky-global.css
   Brand-specific styles.
   Loaded via layout/theme.liquid (Step 3 will add the link).

   RED COLOR RULE:
   #C8102E is ONLY used for:
     - .gs-btn-atc (Add to Bag button)
     - .gs-badge-off (% off price badge)
     - .gs-urgency (stock / sold indicators)
     - .gs-ann-bar (announcement bar)
     - .gs-section-label (small red eyebrow labels)
   Nowhere else. If you find yourself using red for
   anything outside this list — stop and use black.
   ============================================== */

/* ── GOOGLE FONTS IMPORT ── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── ROOT TOKENS ── */
:root {
  --gs-black:      #0C0C0C;
  --gs-white:      #FFFFFF;
  --gs-off-white:  #F5F3F0;
  --gs-red:        #C8102E;
  --gs-red-dark:   #A50E26;
  --gs-dark:       #1A1A1A;
  --gs-dark2:      #2A2A2A;
  --gs-muted:      #888078;
  --gs-rule:       #E8E4DF;
  --gs-green:      #1A7A2E;

  --gs-font-display: 'Barlow Condensed', sans-serif;
  --gs-font-body:    'Barlow', sans-serif;

  --gs-transition: 0.2s ease;
  --gs-page-pad:  clamp(16px, 2.5vw, 40px);
}

/* ── GLOBAL RESETS ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--gs-font-body);
  font-weight: 400;
  color: var(--gs-black);
  background-color: var(--gs-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── ANNOUNCEMENT BAR ── */
.gs-ann-bar {
  position: relative;
  z-index: 1 !important;
  background: var(--gs-black);
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.gs-ann-track {
  display: flex;
  white-space: nowrap;
  animation: gs-ticker 28s linear infinite;
}
.gs-ann-bar:hover .gs-ann-track {
  animation-play-state: paused;
}
.gs-ann-item {
  display: inline-flex;
  align-items: center;
  font-family: var(--gs-font-display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0 36px;
  flex-shrink: 0;
}
.gs-ann-item b {
  color: var(--gs-white);
  font-weight: 600;
}
.gs-ann-sep {
  color: var(--gs-red);
  font-size: 7px;
  margin: 0 16px;
  opacity: 0.8;
}
@keyframes gs-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION LABEL ── */
/* The small red eyebrow text above section headings.
   Approved red usage. */
.gs-section-label {
  display: block;
  font-family: var(--gs-font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gs-red);
  margin-bottom: 8px;
}

/* ── SECTION TITLE ── */
.gs-section-title {
  font-family: var(--gs-font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gs-black);
  line-height: 1;
}
.gs-section-title--white { color: var(--gs-white); }
.gs-section-title--large {
  font-size: clamp(40px, 6vw, 88px);
  letter-spacing: 0.02em;
  line-height: 0.95;
}

/* ── SECTION HEADER ── */
/* Flex row: label+title on left, see-all on right */
.gs-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

/* ── SEE ALL LINK ── */
.gs-see-all {
  font-family: var(--gs-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gs-black);
  text-decoration: none;
  border-bottom: 1px solid var(--gs-black);
  padding-bottom: 1px;
  transition: opacity var(--gs-transition);
  white-space: nowrap;
}
.gs-see-all:hover { opacity: 0.45; }
.gs-see-all--white {
  color: var(--gs-white);
  border-color: var(--gs-white);
}

/* ── BUTTONS ── */

/* Primary — black fill. Used everywhere EXCEPT Add to Bag */
.gs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--gs-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--gs-black);
  background: var(--gs-black);
  color: var(--gs-white);
  padding: 14px 32px;
  cursor: pointer;
  transition: background var(--gs-transition), color var(--gs-transition), border-color var(--gs-transition);
  line-height: 1;
  appearance: none;
}
.gs-btn:hover {
  background: var(--gs-dark2);
  border-color: var(--gs-dark2);
  color: var(--gs-white);
  opacity: 1;
}

/* Ghost — outline only */
.gs-btn--ghost {
  background: transparent;
  color: var(--gs-black);
  border: 1.5px solid var(--gs-black);
}
.gs-btn--ghost:hover {
  background: var(--gs-black);
  color: var(--gs-white);
}

/* Ghost white — for use on dark/image backgrounds */
.gs-btn--ghost-white {
  background: transparent;
  color: var(--gs-white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.gs-btn--ghost-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gs-white);
  color: var(--gs-white);
}

/* White — for use on dark backgrounds */
.gs-btn--white {
  background: var(--gs-white);
  color: var(--gs-black);
  border-color: var(--gs-white);
}
.gs-btn--white:hover {
  background: var(--gs-off-white);
  border-color: var(--gs-off-white);
  color: var(--gs-black);
}

/* ATC — Add to Bag. RED. Approved use. */
.gs-btn-atc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  font-family: var(--gs-font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gs-red);
  color: var(--gs-white);
  border: none;
  cursor: pointer;
  transition: background var(--gs-transition);
  line-height: 1;
}
.gs-btn-atc:hover { background: var(--gs-red-dark); }
.gs-btn-atc:disabled {
  background: var(--gs-muted);
  cursor: not-allowed;
}

/* ── PRICE COMPONENT ── */
.gs-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.gs-price__now {
  font-family: var(--gs-font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gs-black);
  line-height: 1;
}
.gs-price__was {
  font-family: var(--gs-font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--gs-muted);
  text-decoration: line-through;
}
/* % off badge — RED. Approved use. */
.gs-badge-off {
  display: inline-block;
  background: var(--gs-red);
  color: var(--gs-white);
  font-family: var(--gs-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  line-height: 1.4;
}

/* ── PRODUCT CARD ── */
.gs-pcard {
  cursor: pointer;
  position: relative;
}
.gs-pcard__img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--gs-off-white);
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
}
.gs-pcard__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gs-pcard:hover .gs-pcard__img-wrap img {
  transform: scale(1.05);
}
.gs-pcard__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--gs-font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
  line-height: 1.4;
}
.gs-pcard__badge--black {
  background: var(--gs-black);
  color: var(--gs-white);
}
/* Sale badge — RED. Approved use. */
.gs-pcard__badge--red {
  background: var(--gs-red);
  color: var(--gs-white);
}
.gs-pcard__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(12, 12, 12, 0.92);
  color: var(--gs-white);
  font-family: var(--gs-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px;
  text-align: center;
  border: none;
  cursor: pointer;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gs-pcard:hover .gs-pcard__quick-add {
  transform: translateY(0);
}
.gs-pcard__swatches {
  display: flex;
  gap: 5px;
  margin-bottom: 8px;
}
.gs-swatch {
  width: 14px;
  height: 14px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s;
  flex-shrink: 0;
}
.gs-swatch:hover,
.gs-swatch.is-active {
  border-color: var(--gs-black);
}
.gs-pcard__name {
  font-family: var(--gs-font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gs-black);
  margin-bottom: 3px;
  line-height: 1.15;
}
.gs-pcard__type {
  font-family: var(--gs-font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--gs-muted);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.gs-pcard__stars {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}
.gs-stars-val {
  font-size: 12px;
  color: var(--gs-black);
  letter-spacing: 0.06em;
}
.gs-stars-rc {
  font-size: 11px;
  color: var(--gs-muted);
}

/* ── PRODUCT GRID ── */
.gs-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gs-grid-gap, 20px);
}
@media (max-width: 1024px) {
  .gs-prod-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .gs-prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ── TRUST BAR ── */
.gs-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gs-rule);
  border-bottom: 1px solid var(--gs-rule);
}
.gs-trust-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 12px;
  border-right: 1px solid var(--gs-rule);
}
.gs-trust-cell:last-child { border-right: none; }
.gs-trust-icon { font-size: 17px; }
.gs-trust-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.gs-trust-text strong {
  font-family: var(--gs-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gs-black);
}
.gs-trust-text span {
  font-family: var(--gs-font-body);
  font-size: 10px;
  font-weight: 300;
  color: var(--gs-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .gs-trust-bar { grid-template-columns: repeat(2, 1fr); }
  .gs-trust-cell:nth-child(2) { border-right: none; }
  .gs-trust-cell:nth-child(3) { border-top: 1px solid var(--gs-rule); }
}

/* ── BREADCRUMB ── */
.gs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px var(--gs-page-pad);
  font-family: var(--gs-font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--gs-muted);
  border-bottom: 1px solid var(--gs-rule);
}
.gs-breadcrumb a {
  color: var(--gs-muted);
  text-decoration: none;
  transition: color var(--gs-transition);
}
.gs-breadcrumb a:hover { color: var(--gs-black); }
.gs-breadcrumb__sep { font-size: 9px; }
.gs-breadcrumb__current { color: var(--gs-black); }

/* ── ACCORDION ── */
.gs-acc-wrap {
  border-top: 1px solid var(--gs-rule);
}
.gs-acc-item {
  border-bottom: 1px solid var(--gs-rule);
}
.gs-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  background: none;
  border: none;
  font-family: var(--gs-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gs-black);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.gs-acc-icon {
  font-size: 20px;
  color: var(--gs-muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  font-style: normal;
}
.gs-acc-trigger[aria-expanded="true"] .gs-acc-icon {
  transform: rotate(45deg);
}
.gs-acc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.gs-acc-body.is-open {
  max-height: 600px;
}
.gs-acc-inner {
  padding: 0 0 16px;
}
.gs-acc-inner p {
  font-family: var(--gs-font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gs-muted);
  margin-bottom: 8px;
}
.gs-acc-inner ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.gs-acc-inner ul li {
  font-family: var(--gs-font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--gs-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}
.gs-acc-inner ul li::before {
  content: '—';
  color: var(--gs-red);
  font-size: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ── SCROLL REVEAL ── */
.gs-sr {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.gs-sr.is-visible {
  opacity: 1;
  transform: none;
}
.gs-sr:nth-child(2) { transition-delay: 0.08s; }
.gs-sr:nth-child(3) { transition-delay: 0.16s; }
.gs-sr:nth-child(4) { transition-delay: 0.24s; }
.gs-sr:nth-child(5) { transition-delay: 0.32s; }

/* ── IMAGE UTILS ── */
.gs-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── SECTION SPACING ── */
/* Standard section padding for all custom sections */
.gs-section {
  padding: 72px var(--gs-page-pad);
}
.gs-section--sm {
  padding: 48px var(--gs-page-pad);
}
.gs-section--lg {
  padding: 96px var(--gs-page-pad);
}
.gs-section--dark {
  background: var(--gs-black);
}
.gs-section--off {
  background: var(--gs-off-white);
}
@media (max-width: 768px) {
  .gs-section        { padding: 48px 16px; }
  .gs-section--sm    { padding: 32px 16px; }
  .gs-section--lg    { padding: 64px 16px; }
}

/* ── MOBILE STICKY ATC BAR ── */
/* Shown only on mobile PDP.
   Button inside uses gs-btn-atc (red — approved). */
.gs-mob-atc {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--gs-white);
  border-top: 1px solid var(--gs-rule);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  flex-direction: column;
  gap: 6px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gs-mob-atc.is-visible {
  transform: translateY(0);
}
.gs-mob-atc__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gs-mob-atc__name {
  font-family: var(--gs-font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gs-black);
}
.gs-mob-atc__price {
  font-family: var(--gs-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gs-black);
}
@media (max-width: 768px) {
  .gs-mob-atc { display: flex; }
}

/* ── QUANTITY CONTROL ── */
.gs-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gs-rule);
  width: fit-content;
}
.gs-qty__btn {
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 300;
  color: var(--gs-black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--gs-transition);
  font-family: var(--gs-font-body);
}
.gs-qty__btn:hover { background: var(--gs-off-white); }
.gs-qty__num {
  width: 44px;
  text-align: center;
  font-family: var(--gs-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gs-black);
  border: none;
  outline: none;
  background: none;
  -moz-appearance: textfield;
}
.gs-qty__num::-webkit-inner-spin-button,
.gs-qty__num::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ── FREE SHIPPING PROGRESS BAR ── */
.gs-shipping-bar {
  background: var(--gs-off-white);
  padding: 10px 16px;
  border-bottom: 1px solid var(--gs-rule);
}
.gs-shipping-bar__text {
  font-family: var(--gs-font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--gs-black);
  margin-bottom: 6px;
  text-align: center;
}
.gs-shipping-bar__track {
  height: 3px;
  background: var(--gs-rule);
  overflow: hidden;
}
.gs-shipping-bar__fill {
  height: 100%;
  background: var(--gs-black);
  transition: width 0.5s ease;
}
.gs-shipping-bar__fill--complete { background: var(--gs-green); }

/* ── URGENCY INDICATORS ── */
/* Red-adjacent — warm yellows and soft reds.
   Approved as part of urgency CRO system. */
.gs-stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF3CD;
  border: 1px solid #E8C94A;
  padding: 5px 12px;
  font-family: var(--gs-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #7A5E00;
}
.gs-stock-dot {
  width: 7px;
  height: 7px;
  background: #E8C94A;
  border-radius: 50%;
  flex-shrink: 0;
  animation: gs-pulse 1.5s ease-in-out infinite;
}
.gs-sold-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FEF0F0;
  border: 1px solid #F5BABA;
  padding: 5px 12px;
  font-family: var(--gs-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #8A1A1A;
}
@keyframes gs-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* ── HERO SLIDER ── */
.gs-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 72px);
  min-height: 500px;
  overflow: hidden;
  background: var(--gs-black);
}
.gs-hero__track {
  display: flex;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}
.gs-hero__slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.gs-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6.5s ease-out;
}
.gs-hero__slide.is-active img {
  transform: scale(1);
}
/* Gradient overlay under text */
.gs-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.gs-hero__overlay--bottom-left {
  background: linear-gradient(
    to top,
    rgba(12, 12, 12, 0.72) 0%,
    rgba(12, 12, 12, 0.3) 35%,
    rgba(12, 12, 12, 0.05) 65%,
    transparent 100%
  );
}
.gs-hero__overlay--center {
  background: rgba(12, 12, 12, 0.45);
}
.gs-hero__overlay--bottom-center {
  background: linear-gradient(
    to top,
    rgba(12, 12, 12, 0.70) 0%,
    rgba(12, 12, 12, 0.2) 45%,
    transparent 100%
  );
}
/* Text content positioning */
.gs-hero__content {
  position: absolute;
  z-index: 2;
  max-width: 680px;
}
.gs-hero__content--bottom-left {
  bottom: 72px;
  left: var(--gs-page-pad);
}
.gs-hero__content--bottom-center {
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.gs-hero__content--center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.gs-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--gs-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}
.gs-hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
.gs-hero__content--bottom-center .gs-hero__eyebrow::before,
.gs-hero__content--center .gs-hero__eyebrow::before {
  display: none;
}
.gs-hero__heading {
  font-family: var(--gs-font-display);
  font-size: clamp(48px, 7.5vw, 112px);
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--gs-white);
  line-height: 0.95;
  margin-bottom: 16px;
}
.gs-hero__subheading {
  font-family: var(--gs-font-body);
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 440px;
  margin-bottom: 32px;
}
.gs-hero__content--bottom-center .gs-hero__subheading,
.gs-hero__content--center .gs-hero__subheading {
  margin-left: auto;
  margin-right: auto;
}
.gs-hero__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.gs-hero__content--bottom-center .gs-hero__ctas,
.gs-hero__content--center .gs-hero__ctas {
  justify-content: center;
}
/* Slider UI elements */
.gs-hero__controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
}
.gs-hero__dots {
  display: flex;
  gap: 7px;
}
.gs-hero__dot {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 0.35s ease;
}
.gs-hero__dot.is-active {
  background: var(--gs-white);
  width: 48px;
}
.gs-hero__arrows {
  display: flex;
  gap: 6px;
}
.gs-hero__arrow {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: none;
  color: var(--gs-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--gs-transition);
  padding: 0;
  flex-shrink: 0;
}
.gs-hero__arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}
.gs-hero__arrow:hover {
  background: var(--gs-white);
  color: var(--gs-black);
  border-color: var(--gs-white);
}
.gs-hero__counter {
  font-family: var(--gs-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
}
.gs-hero__counter b { color: var(--gs-white); }
.gs-hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gs-white);
  z-index: 10;
  transition: width 0.1s linear;
}
@media (max-width: 768px) {
  .gs-hero { height: 70vh; min-height: 420px; }
  .gs-hero__content--bottom-left { left: 16px; bottom: 56px; }
  .gs-hero__controls { bottom: 16px; }
  .gs-hero__arrows { display: none; }
}

/* ── COLLECTION TILE ── */
.gs-col-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.gs-col-tile__img {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  position: relative;
}
.gs-col-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.gs-col-tile:hover .gs-col-tile__img img {
  transform: scale(1.06);
}
.gs-col-tile__cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gs-black);
  color: var(--gs-white);
  font-family: var(--gs-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 14px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gs-col-tile:hover .gs-col-tile__cta {
  transform: translateY(0);
}
.gs-col-tile__label {
  padding: 11px 0 4px;
}
.gs-col-tile__name {
  font-family: var(--gs-font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gs-black);
  margin-bottom: 2px;
}
.gs-col-tile__count {
  font-family: var(--gs-font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--gs-muted);
  letter-spacing: 0.06em;
}

/* ── EDITORIAL / FULL-BLEED BANNER ── */
.gs-editorial {
  position: relative;
  overflow: hidden;
}
.gs-editorial img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-editorial__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.gs-editorial__content {
  position: relative;
  z-index: 2;
}

/* ── PROMO STRIP ── */
/* Black background. No red here — red is for ATC only. */
.gs-promo-strip {
  background: var(--gs-black);
  padding: 20px var(--gs-page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.gs-promo-strip__left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.gs-promo-strip__icon { font-size: 22px; }
.gs-promo-strip__text {
  font-family: var(--gs-font-display);
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gs-white);
}
.gs-promo-strip__sub {
  font-family: var(--gs-font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}
@media (max-width: 768px) {
  .gs-promo-strip { flex-direction: column; text-align: center; gap: 14px; }
  .gs-promo-strip__left { flex-direction: column; gap: 6px; }
}

/* ── WHY SECTION (dark) ── */
.gs-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.gs-why-cell {
  padding: 40px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.gs-why-cell:last-child { border-right: none; }
.gs-why-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}
.gs-why-name {
  font-family: var(--gs-font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gs-white);
  margin-bottom: 10px;
}
.gs-why-body {
  font-family: var(--gs-font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 768px) {
  .gs-why-grid { grid-template-columns: repeat(2, 1fr); }
  .gs-why-cell { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
}

/* ── REVIEWS ── */
.gs-rev-card {
  background: var(--gs-white);
  padding: 24px;
}
.gs-rev-stars {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gs-black);
  margin-bottom: 12px;
}
.gs-rev-q {
  font-family: var(--gs-font-body);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--gs-black);
  margin-bottom: 18px;
}
.gs-rev-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gs-rev-avatar {
  width: 36px;
  height: 36px;
  background: var(--gs-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--gs-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gs-white);
  flex-shrink: 0;
  letter-spacing: 0.06em;
}
.gs-rev-name {
  font-family: var(--gs-font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gs-black);
  margin-bottom: 2px;
}
.gs-rev-tag {
  font-family: var(--gs-font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--gs-muted);
  letter-spacing: 0.04em;
}

/* ── VERIFIED BADGE ── */
.gs-verified {
  font-family: var(--gs-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gs-green);
  background: #E8F5EB;
  padding: 3px 9px;
}

/* ── NEWSLETTEr ── */
.gs-footer__newsletter {
  background: var(--gs-dark);
  padding: 64px var(--gs-page-pad);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.gs-footer__nl-inner {
  max-width: 600px;
  margin: 0 auto;
}
.gs-footer__nl-heading {
  font-family: var(--gs-font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gs-white);
  margin: 8px 0 6px;
  line-height: 1;
}
.gs-footer__nl-sub {
  font-family: var(--gs-font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.gs-nl-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  flex-wrap: wrap;
}
.gs-nl-input {
  flex: 1 1 60%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  color: var(--gs-white);
  font-family: var(--gs-font-body);
  font-size: 13px;
  font-weight: 300;
  outline: none;
  transition: border-color var(--gs-transition);
  min-width: 0;
}
.gs-nl-input:focus { border-color: rgba(255, 255, 255, 0.4); }
.gs-nl-input::placeholder { color: rgba(255, 255, 255, 0.3); }
.gs-nl-btn {
  background: var(--gs-white);
  color: var(--gs-black);
  border: 1px solid var(--gs-white);
  padding: 14px 26px;
  font-family: var(--gs-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity var(--gs-transition), background var(--gs-transition), color var(--gs-transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.gs-nl-btn:hover {
  background: var(--gs-off-white);
  opacity: 0.9;
}
.gs-nl-error,
.gs-nl-success {
  width: 100%;
  font-family: var(--gs-font-body);
  font-size: 12px;
  margin-top: 12px;
  letter-spacing: 0.06em;
  text-align: left;
}
.gs-nl-error { color: var(--gs-red); }
.gs-nl-success { color: var(--gs-green); }
@media (max-width: 600px) {
  .gs-nl-form { flex-direction: column; }
  .gs-nl-input { border-right: 1px solid rgba(255, 255, 255, 0.15); margin-bottom: 10px; }
  .gs-nl-btn { width: 100%; }
  .gs-footer__newsletter { padding: 48px 16px; }
}

/* ── FOOTER ── */
.gs-footer {
  background: var(--gs-black);
  color: rgba(255, 255, 255, 0.6);
}
.gs-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px var(--gs-page-pad) 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Brand column */
.gs-footer__brand { max-width: 320px; }
.gs-footer__logo {
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
}
.gs-footer__logo-text {
  font-family: var(--gs-font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gs-white);
  line-height: 1;
}
.gs-footer__logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.gs-footer__tagline {
  font-family: var(--gs-font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 28px;
}

/* Social icons */
.gs-footer__socials {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.gs-footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all var(--gs-transition);
}
.gs-footer__social-link svg {
  width: 16px;
  height: 16px;
  display: block;
}
.gs-footer__social-link:hover {
  background: var(--gs-white);
  border-color: var(--gs-white);
  color: var(--gs-black);
}

/* Link columns */
.gs-footer__col-title {
  font-family: var(--gs-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gs-white);
  margin-bottom: 20px;
}
.gs-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.gs-footer__links li { margin: 0; }
.gs-footer__links a {
  font-family: var(--gs-font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.36);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color var(--gs-transition);
  line-height: 1.6;
  display: inline-block;
}
.gs-footer__links a:hover { color: var(--gs-white); }

/* Contact info column */
.gs-footer__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}
.gs-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.gs-footer__contact a,
.gs-footer__contact span {
  font-family: var(--gs-font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.36);
  text-decoration: none;
  letter-spacing: 0.03em;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: color var(--gs-transition);
}
.gs-footer__contact a:hover { color: var(--gs-white); }
.gs-footer__contact svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.24);
}

/* Richtext block */
.gs-footer__richtext {
  font-family: var(--gs-font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.36);
}
.gs-footer__richtext p { margin-bottom: 10px; }
.gs-footer__richtext a {
  color: var(--gs-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Bottom bar */
.gs-footer__btm {
  padding: 24px var(--gs-page-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.gs-footer__copy {
  font-family: var(--gs-font-body);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
}
.gs-footer__country {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--gs-font-body);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
}
.gs-footer__country svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Payment icons */
.gs-footer__payments {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.gs-footer__payment {
  display: flex;
  align-items: center;
}
.gs-footer__payment-icon {
  height: 20px;
  width: auto;
  opacity: 0.5;
  transition: opacity var(--gs-transition);
}
.gs-footer__payment-icon:hover { opacity: 0.8; }

/* Legal links */
.gs-footer__legal {
  padding: 20px var(--gs-page-pad);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.gs-footer__legal a {
  font-family: var(--gs-font-body);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--gs-transition);
  white-space: nowrap;
}
.gs-footer__legal a:hover { color: rgba(255, 255, 255, 0.55); }

/* Responsive */
@media (max-width: 990px) {
  .gs-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 48px var(--gs-page-pad) 40px;
  }
  .gs-footer__brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 600px) {
  .gs-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 16px 32px;
  }
  .gs-footer__btm {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 16px;
    gap: 12px;
  }
  .gs-footer__payments { flex-wrap: wrap; }
  .gs-footer__legal { gap: 16px; padding: 16px; }
}

/* ── CART DRAWER ── */
.gs-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--gs-white);
  z-index: 500;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  border-left: 1px solid var(--gs-rule);
}
.gs-cart-drawer.is-open {
  transform: translateX(0);
}
.gs-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 12, 0.45);
  z-index: 899;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.gs-cart-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}
.gs-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--gs-rule);
  flex-shrink: 0;
}
.gs-cart-drawer__title {
  font-family: var(--gs-font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gs-black);
}
.gs-cart-drawer__close {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--gs-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--gs-transition);
}
.gs-cart-drawer__close:hover { opacity: 0.5; }
.gs-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}
.gs-cart-drawer__footer {
  padding: 16px 20px;
  border-top: 1px solid var(--gs-rule);
  flex-shrink: 0;
}

/* ── UTILITY ── */
.gs-hide-mobile  { display: block; }
.gs-show-mobile  { display: none; }
@media (max-width: 768px) {
  .gs-hide-mobile { display: none; }
  .gs-show-mobile { display: block; }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
/* ── RECOMMENDATIONS SCROLL ── */
.gs-rec-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.gs-rec-scroll::-webkit-scrollbar { display: none; }
.gs-rec-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
}
.gs-rec-card__img-wrap {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F5F3F0;
  margin-bottom: 12px;
  text-decoration: none;
}
.gs-rec-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gs-rec-card:hover .gs-rec-card__img-wrap img { transform: scale(1.04); }
.gs-rec-card__info { padding-top: 2px; }
.gs-rec-card__name-link { text-decoration: none; display: block; }
@media (max-width: 768px) {
  .gs-rec-card { flex: 0 0 160px; }
}
/* ══ CART PAGE ══ */
.gs-cart-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px clamp(16px,2.5vw,40px) 80px;
}
.gs-cart-page__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8E4DF;
}
.gs-cart-page__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px,4vw,48px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0C0C0C;
  line-height: 1;
}
.gs-cart-page__count {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #888078;
  letter-spacing: 0.06em;
}
.gs-cart-form { margin-top: 0; }
.gs-cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* Cart items */
.gs-cart-items { display: flex; flex-direction: column; gap: 0; }
.gs-cart-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #E8E4DF;
}
.gs-cart-item__img-wrap {
  display: block;
  width: 120px;
  height: 120px;
  overflow: hidden;
  background: #F5F3F0;
  flex-shrink: 0;
  text-decoration: none;
}
.gs-cart-item__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gs-cart-item__img-wrap:hover img { transform: scale(1.04); }
.gs-cart-item__info { display: flex; flex-direction: column; gap: 8px; }
.gs-cart-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.gs-cart-item__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0C0C0C;
  text-decoration: none;
  line-height: 1.2;
  transition: opacity 0.2s;
}
.gs-cart-item__name:hover { opacity: 0.65; }
.gs-cart-item__variant {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #888078;
  letter-spacing: 0.04em;
}
.gs-cart-item__remove {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #888078;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s;
}
.gs-cart-item__remove:hover { color: #0C0C0C; }
.gs-cart-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}
.gs-cart-item__qty { flex-shrink: 0; }
.gs-cart-item__price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.gs-cart-item__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0C0C0C;
}
.gs-cart-item__price-was {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #888078;
  text-decoration: line-through;
}
.gs-cart-item__discounts {
  list-style: none;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #1A7A2E;
  letter-spacing: 0.04em;
}

/* Order summary */
.gs-cart-summary {
  position: sticky;
  top: 80px;
  background: #F5F3F0;
  padding: 28px 24px;
}
.gs-cart-summary__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0C0C0C;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E8E4DF;
}
.gs-cart-summary__lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E8E4DF;
}
.gs-cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #0C0C0C;
  letter-spacing: 0.02em;
}
.gs-cart-summary__row--discount { color: #1A7A2E; }
.gs-cart-summary__row--total {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 10px;
  border-top: 1px solid #E8E4DF;
  margin-top: 4px;
}
.gs-cart-discount {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}
.gs-cart-discount__input {
  flex: 1;
  padding: 11px 14px;
  border: 1.5px solid #E8E4DF;
  border-right: none;
  background: #ffffff;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #0C0C0C;
  outline: none;
  transition: border-color 0.2s;
}
.gs-cart-discount__input:focus { border-color: #0C0C0C; }
.gs-cart-discount__input::placeholder { color: #888078; }
.gs-cart-discount__btn {
  background: #0C0C0C;
  color: #ffffff;
  border: 1.5px solid #0C0C0C;
  padding: 0 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.gs-cart-discount__btn:hover { background: #2A2A2A; }
.gs-cart-checkout-btn {
  width: 100%;
  height: 52px;
  font-size: 16px;
  margin-bottom: 14px;
}
.gs-cart-summary__note {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #888078;
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  line-height: 1.6;
}
.gs-cart-continue {
  display: block;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888078;
  text-decoration: none;
  transition: color 0.2s;
}
.gs-cart-continue:hover { color: #0C0C0C; }

/* Empty cart */
.gs-cart-empty {
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.gs-cart-empty__icon { margin-bottom: 8px; }
.gs-cart-empty__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0C0C0C;
}
.gs-cart-empty__text {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #888078;
}

/* Upsell strip */
.gs-cart-upsell {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #E8E4DF;
}
.gs-cart-upsell-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.gs-cart-upsell-scroll::-webkit-scrollbar { display: none; }
.gs-cart-upsell-card {
  flex: 0 0 160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gs-cart-upsell-card__img {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F5F3F0;
  text-decoration: none;
}
.gs-cart-upsell-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gs-cart-upsell-card:hover .gs-cart-upsell-card__img img { transform: scale(1.04); }
.gs-cart-upsell-card__info { display: flex; flex-direction: column; gap: 4px; }
.gs-cart-upsell-card__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0C0C0C;
  line-height: 1.2;
}
.gs-cart-upsell-card__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0C0C0C;
}
.gs-cart-upsell-card__btn {
  background: none;
  border: 1.5px solid #0C0C0C;
  color: #0C0C0C;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 12px;
  cursor: pointer;
  transition: all 0.2s;
  width: fit-content;
}
.gs-cart-upsell-card__btn:hover {
  background: #0C0C0C;
  color: #ffffff;
}

/* ══ CART DRAWER ══ */
.gs-cart-drawer__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  background: #0C0C0C;
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  padding: 0 4px;
  margin-left: 8px;
}

/* Drawer shipping bar */
.gs-drawer-shipping {
  padding: 10px 20px;
  background: #F5F3F0;
  border-bottom: 1px solid #E8E4DF;
}
.gs-drawer-shipping__text {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #0C0C0C;
  margin-bottom: 6px;
  text-align: center;
  letter-spacing: 0.03em;
}
.gs-drawer-shipping__track {
  height: 3px;
  background: #E8E4DF;
  overflow: hidden;
}
.gs-drawer-shipping__fill {
  height: 100%;
  background: #0C0C0C;
  transition: width 0.5s ease;
}
.gs-drawer-shipping__fill--done { background: #1A7A2E; }

/* Drawer items */
.gs-drawer-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #E8E4DF;
}
.gs-drawer-item:last-child { border-bottom: none; }
.gs-drawer-item__img {
  display: block;
  width: 88px;
  height: 88px;
  overflow: hidden;
  background: #F5F3F0;
  text-decoration: none;
  flex-shrink: 0;
}
.gs-drawer-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-drawer-item__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.gs-drawer-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.gs-drawer-item__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0C0C0C;
  text-decoration: none;
  line-height: 1.2;
  display: block;
  transition: opacity 0.2s;
}
.gs-drawer-item__name:hover { opacity: 0.65; }
.gs-drawer-item__remove {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #888078;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s;
}
.gs-drawer-item__remove:hover { color: #0C0C0C; }
.gs-drawer-item__variant {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #888078;
  letter-spacing: 0.04em;
}
.gs-drawer-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}
.gs-drawer-item__qty { transform: scale(0.85); transform-origin: left center; }
.gs-drawer-item__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0C0C0C;
  letter-spacing: 0.02em;
}

/* Drawer empty */
.gs-drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 48px 20px;
  text-align: center;
  height: 100%;
}
.gs-drawer-empty__text {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #888078;
}

/* Drawer footer */
.gs-drawer-totals {
  margin-bottom: 16px;
}
.gs-drawer-totals__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0C0C0C;
  margin-bottom: 4px;
}
.gs-drawer-totals__note {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #888078;
  letter-spacing: 0.03em;
}
.gs-drawer-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  font-size: 16px;
  text-decoration: none;
  margin-bottom: 12px;
}
.gs-drawer-view-cart {
  display: block;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888078;
  text-decoration: none;
  transition: color 0.2s;
}
.gs-drawer-view-cart:hover { color: #0C0C0C; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .gs-cart-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .gs-cart-summary {
    position: static;
    order: -1;
  }
  .gs-cart-item { grid-template-columns: 90px 1fr; gap: 14px; }
  .gs-cart-item__img-wrap { width: 90px; height: 90px; }
}
@media (max-width: 480px) {
  .gs-cart-page { padding: 24px 16px 80px; }
}
/* ── ABOUT PAGE ── */
.gs-about-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #0C0C0C;
  display: flex;
  align-items: flex-end;
}
.gs-about-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.75) 0%, rgba(12,12,12,0.2) 60%, transparent 100%);
  z-index: 1;
}
.gs-about-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(16px,2.5vw,56px) 56px;
  max-width: 680px;
}
.gs-about-hero__plain {
  padding: 64px clamp(16px,2.5vw,56px);
  background: #F5F3F0;
  width: 100%;
}
.gs-about-hero__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px,6vw,88px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 0.95;
  margin-bottom: 16px;
}
.gs-about-hero__heading--dark { color: #0C0C0C; }
.gs-about-hero__sub {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
}
.gs-about-hero__sub--dark { color: #888078; }

/* Split row */
.gs-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-top: 1px solid #E8E4DF;
}
.gs-about-split--flip .gs-about-split__img { order: 2; }
.gs-about-split--flip .gs-about-split__text { order: 1; }
.gs-about-split__img { overflow: hidden; position: relative; }
.gs-about-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-about-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 52px;
  background: #ffffff;
}
.gs-about-split--dark .gs-about-split__text { background: #0C0C0C; }
.gs-about-split__h {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px,3vw,42px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0C0C0C;
  line-height: 1.05;
  margin-bottom: 16px;
}
.gs-about-split--dark .gs-about-split__h { color: #ffffff; }
.gs-about-split__body {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: #888078;
}
.gs-about-split--dark .gs-about-split__body { color: rgba(255,255,255,0.45); }
.gs-about-split__body p { margin-bottom: 14px; }
.gs-about-split__body p:last-child { margin-bottom: 0; }

/* Stats */
.gs-about-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: #F5F3F0;
  border-top: 1px solid #E8E4DF;
  border-bottom: 1px solid #E8E4DF;
}
.gs-about-stat {
  padding: 40px 28px;
  border-right: 1px solid #E8E4DF;
  text-align: center;
}
.gs-about-stat:last-child { border-right: none; }
.gs-about-stat__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #0C0C0C;
  margin-bottom: 6px;
  line-height: 1;
}
.gs-about-stat__lbl {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888078;
}

/* Quote */
.gs-about-quote {
  background: #0C0C0C;
  padding: 80px clamp(16px,2.5vw,56px);
  text-align: center;
}
.gs-about-quote__text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px,4vw,52px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.gs-about-quote__attr {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-style: normal;
}

/* Page content */
.gs-about-page-content {
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #888078;
}
.gs-about-page-content h2,
.gs-about-page-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: #0C0C0C;
  margin-bottom: 12px;
  margin-top: 32px;
  letter-spacing: 0.04em;
}
.gs-about-page-content p { margin-bottom: 16px; }

@media (max-width: 768px) {
  .gs-about-split { grid-template-columns: 1fr; min-height: auto; }
  .gs-about-split--flip .gs-about-split__img { order: 0; }
  .gs-about-split--flip .gs-about-split__text { order: 0; }
  .gs-about-split__img { aspect-ratio: 4/3; }
  .gs-about-split__text { padding: 40px 20px; }
  .gs-about-stats { grid-template-columns: repeat(2,1fr); }
  .gs-about-stat:nth-child(2) { border-right: none; }
  .gs-about-stat:nth-child(3) { border-top: 1px solid #E8E4DF; }
}
/* ── CONTACT PAGE ── */
.gs-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px clamp(16px,2.5vw,40px) 80px;
  align-items: start;
}
.gs-contact-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px,5vw,64px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0C0C0C;
  line-height: 1;
  margin-bottom: 14px;
}
.gs-contact-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: #888078;
  margin-bottom: 36px;
}
.gs-contact-channels { display: flex; flex-direction: column; gap: 24px; }
.gs-contact-channel { display: flex; align-items: flex-start; gap: 14px; }
.gs-contact-channel__icon {
  width: 40px;
  height: 40px;
  border: 1px solid #E8E4DF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0C0C0C;
}
.gs-contact-channel__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888078;
  margin-bottom: 3px;
}
.gs-contact-channel__val {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #0C0C0C;
  text-decoration: none;
  transition: opacity 0.2s;
}
.gs-contact-channel__val:hover { opacity: 0.65; }
.gs-contact-form-wrap {
  background: #F5F3F0;
  padding: 36px 32px;
}
.gs-contact-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.gs-contact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0C0C0C;
}
.gs-contact-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E8E4DF;
  background: #ffffff;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #0C0C0C;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.gs-contact-input:focus { border-color: #0C0C0C; }
.gs-contact-input::placeholder { color: #888078; }
.gs-contact-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888078' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.gs-contact-textarea { resize: vertical; min-height: 120px; }
.gs-contact-errors {
  background: #FEF0F0;
  border: 1px solid #F5BABA;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #8A1A1A;
}
.gs-contact-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #E8F5EB;
  border: 1px solid #B8DFC2;
  padding: 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1A7A2E;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .gs-contact-wrap { grid-template-columns: 1fr; gap: 40px; padding: 40px 16px 64px; }
  .gs-contact-form-wrap { padding: 24px 20px; }
}
/* ── FAQ PAGE ── */
.gs-faq-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px clamp(16px,2.5vw,40px) 80px;
}
.gs-faq-page__header {
  text-align: center;
  margin-bottom: 48px;
}
.gs-faq-page__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px,5vw,56px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0C0C0C;
  line-height: 1;
  margin-bottom: 12px;
}
.gs-faq-page__sub {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #888078;
  line-height: 1.7;
}
.gs-faq-category {
  margin-top: 36px;
  margin-bottom: 4px;
  padding-top: 36px;
  border-top: 2px solid #0C0C0C;
}
.gs-faq-category__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0C0C0C;
}
.gs-faq-trigger {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}
.gs-faq-cta {
  margin-top: 56px;
  background: #F5F3F0;
  padding: 40px 36px;
  text-align: center;
  border-top: 3px solid #0C0C0C;
}
.gs-faq-cta__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0C0C0C;
  margin-bottom: 8px;
}
.gs-faq-cta__text {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #888078;
  margin-bottom: 20px;
}
/* ── SIZE GUIDE PAGE ── */
.gs-size-guide {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px clamp(16px,2.5vw,40px) 80px;
}
.gs-size-guide__header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #E8E4DF;
}
.gs-size-guide__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px,5vw,56px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0C0C0C;
  line-height: 1;
  margin-bottom: 12px;
}
.gs-size-guide__intro {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #888078;
  line-height: 1.7;
}
.gs-size-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #E8E4DF;
}
.gs-size-section__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0C0C0C;
  margin-bottom: 10px;
}
.gs-size-section__desc {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #888078;
  margin-bottom: 20px;
  line-height: 1.65;
}
.gs-size-table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
}
.gs-size-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
}
.gs-size-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0C0C0C;
  padding: 12px 16px;
  border-bottom: 2px solid #0C0C0C;
  text-align: left;
  white-space: nowrap;
}
.gs-size-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #E8E4DF;
  color: #888078;
  font-weight: 300;
}
.gs-size-table tr:last-child td { border-bottom: none; }
.gs-size-table tr:hover td { background: #F5F3F0; }
.gs-size-table td:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0C0C0C;
  white-space: nowrap;
}
.gs-size-section__img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin-top: 16px;
}
.gs-size-tip {
  background: #F5F3F0;
  border-left: 3px solid #0C0C0C;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #888078;
  line-height: 1.65;
}
.gs-size-tip strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0C0C0C;
  margin-right: 6px;
}
.gs-size-guide__content {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: #888078;
}
/* ── SEARCH PAGE ── */
.gs-search-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px clamp(16px,2.5vw,40px) 80px;
}
.gs-search-page__header { margin-bottom: 32px; }
.gs-search-page__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px,4vw,48px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0C0C0C;
  line-height: 1;
}
.gs-search-page__form { margin-bottom: 8px; }
.gs-search-page__input-wrap {
  display: flex;
  border: 2px solid #0C0C0C;
  max-width: 600px;
}
.gs-search-page__input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #0C0C0C;
  outline: none;
  background: none;
}
.gs-search-page__input::placeholder { color: #888078; }
.gs-search-page__btn {
  width: 52px;
  background: #0C0C0C;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.gs-search-page__btn:hover { background: #2A2A2A; }
.gs-search-empty {
  text-align: center;
  padding: 64px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.gs-search-empty__text {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #888078;
  max-width: 480px;
  line-height: 1.7;
}
/* ── 404 PAGE ── */
.gs-404 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px clamp(16px,2.5vw,40px) 80px;
}
.gs-404__content {
  text-align: center;
  margin-bottom: 72px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.gs-404__number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(100px,20vw,200px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #E8E4DF;
  line-height: 1;
  margin-bottom: -20px;
}
.gs-404__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px,4vw,48px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0C0C0C;
  line-height: 1;
  margin-bottom: 14px;
}
.gs-404__text {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #888078;
  line-height: 1.75;
  margin-bottom: 32px;
}
.gs-404__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.gs-404__products { margin-top: 0; }

/* ══ AUTH PAGES (Login / Register) ══ */
.gs-auth-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 70vh;
  padding: 64px clamp(16px,2.5vw,40px) 80px;
  background: #F5F3F0;
}
.gs-auth-box {
  background: #ffffff;
  padding: 48px 40px;
  width: 100%;
  max-width: 460px;
}
.gs-auth-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px,4vw,40px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0C0C0C;
  line-height: 1;
  margin-bottom: 28px;
  text-align: center;
}
.gs-auth-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #888078;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.6;
}
.gs-auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.gs-auth-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gs-auth-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0C0C0C;
}
.gs-auth-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gs-auth-forgot {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #C8102E;
  text-decoration: none;
  border-bottom: 1px solid #C8102E;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.gs-auth-forgot:hover { opacity: 0.7; }
.gs-auth-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E8E4DF;
  background: #ffffff;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #0C0C0C;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.gs-auth-input:focus { border-color: #0C0C0C; }
.gs-auth-input::placeholder { color: #888078; }
.gs-auth-error {
  background: #FEF0F0;
  border: 1px solid #F5BABA;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #8A1A1A;
}
.gs-auth-success {
  background: #E8F5EB;
  border: 1px solid #B8DFC2;
  padding: 16px;
  margin-bottom: 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #1A7A2E;
  text-align: center;
}
.gs-auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: #E8E4DF;
}
.gs-auth-divider::before,
.gs-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E8E4DF;
}
.gs-auth-divider span {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #888078;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gs-auth-switch {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #888078;
  text-align: center;
}
.gs-auth-switch__link {
  color: #0C0C0C;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #0C0C0C;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.gs-auth-switch__link:hover { opacity: 0.65; }
.gs-auth-terms {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #888078;
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}
.gs-auth-terms a {
  color: #0C0C0C;
  text-decoration: none;
  border-bottom: 1px solid #E8E4DF;
}

/* ══ ACCOUNT DASHBOARD ══ */
.gs-account-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 70vh;
}
.gs-account-sidebar {
  border-right: 1px solid #E8E4DF;
  padding: 40px 28px;
  background: #F5F3F0;
}
.gs-account-greeting {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid #E8E4DF;
}
.gs-account-avatar {
  width: 44px;
  height: 44px;
  background: #0C0C0C;
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.06em;
}
.gs-account-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0C0C0C;
  margin-bottom: 2px;
}
.gs-account-email {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #888078;
  letter-spacing: 0.02em;
}
.gs-account-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gs-account-nav__link {
  display: block;
  padding: 10px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888078;
  text-decoration: none;
  transition: all 0.2s;
}
.gs-account-nav__link:hover { color: #0C0C0C; background: #E8E4DF; }
.gs-account-nav__link--active { color: #0C0C0C; background: #E8E4DF; }
.gs-account-nav__link--logout { color: #C8102E; margin-top: 16px; }
.gs-account-nav__link--logout:hover { background: #FEF0F0; }
.gs-account-main {
  padding: 40px clamp(20px,3vw,48px);
}
.gs-account-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8E4DF;
  gap: 20px;
  flex-wrap: wrap;
}
.gs-account-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px,3vw,40px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0C0C0C;
  line-height: 1;
}
.gs-account-empty {
  text-align: center;
  padding: 64px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.gs-account-empty__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0C0C0C;
}
.gs-account-empty__text {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #888078;
}

/* Order list */
.gs-order-list { display: flex; flex-direction: column; gap: 16px; }
.gs-order-card {
  border: 1px solid #E8E4DF;
  background: #ffffff;
}
.gs-order-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #E8E4DF;
  gap: 16px;
}
.gs-order-card__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0C0C0C;
  margin-bottom: 3px;
}
.gs-order-card__date {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #888078;
}
.gs-order-card__right { text-align: right; }
.gs-order-card__total {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0C0C0C;
  margin-top: 4px;
}
.gs-order-status {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: #F5F3F0;
  color: #888078;
}
.gs-order-status--paid { background: #E8F5EB; color: #1A7A2E; }
.gs-order-status--fulfilled { background: #E8F5EB; color: #1A7A2E; }
.gs-order-status--refunded { background: #FEF0F0; color: #8A1A1A; }
.gs-order-status--partial { background: #FFF3CD; color: #7A5E00; }
.gs-order-card__items { padding: 16px 20px; border-bottom: 1px solid #E8E4DF; }
.gs-order-line {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #F5F3F0;
}
.gs-order-line:last-child { border-bottom: none; }
.gs-order-line__img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  display: block;
  background: #F5F3F0;
}
.gs-order-line__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0C0C0C;
  margin-bottom: 2px;
}
.gs-order-line__variant,
.gs-order-line__qty {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: #888078;
}
.gs-order-line__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0C0C0C;
  white-space: nowrap;
}
.gs-order-more {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #888078;
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.gs-order-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  flex-wrap: wrap;
}

/* ══ ORDER DETAIL ══ */
.gs-order-detail-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px clamp(16px,2.5vw,40px) 80px;
}
.gs-order-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8E4DF;
  flex-wrap: wrap;
}
.gs-order-detail-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px,4vw,44px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0C0C0C;
  line-height: 1;
  margin-bottom: 6px;
}
.gs-order-detail-date {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #888078;
}
.gs-order-status-bar {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: #F5F3F0;
  margin-bottom: 32px;
}
.gs-order-status-bar__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.gs-order-status-bar__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888078;
}
.gs-order-track-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #C8102E;
  text-decoration: none;
  border-bottom: 1px solid #C8102E;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.gs-order-track-link:hover { opacity: 0.7; }
.gs-order-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.gs-order-detail-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0C0C0C;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0C0C0C;
}
.gs-order-detail-line {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #E8E4DF;
}
.gs-order-detail-line__img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  display: block;
  background: #F5F3F0;
}
.gs-order-detail-line__img--placeholder { background: #F5F3F0; }
.gs-order-detail-line__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0C0C0C;
  margin-bottom: 4px;
}
.gs-order-detail-line__variant,
.gs-order-detail-line__qty,
.gs-order-detail-line__discount {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #888078;
  margin-bottom: 2px;
}
.gs-order-detail-line__discount { color: #1A7A2E; }
.gs-order-detail-line__price { text-align: right; }
.gs-order-detail-line__total {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0C0C0C;
  display: block;
}
.gs-order-detail-line__was {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #888078;
  text-decoration: line-through;
  display: block;
}
.gs-order-detail-summary {
  background: #F5F3F0;
  padding: 24px;
  position: sticky;
  top: 80px;
}
.gs-order-detail-summary__lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E8E4DF;
}
.gs-order-detail-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #0C0C0C;
}
.gs-order-detail-summary__row--discount { color: #1A7A2E; }
.gs-order-detail-summary__row--total {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-top: 10px;
  border-top: 1px solid #E8E4DF;
  margin-top: 4px;
}
.gs-order-detail-address {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #E8E4DF;
}
.gs-order-detail-address__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888078;
  margin-bottom: 10px;
}
.gs-order-detail-address__body {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: #0C0C0C;
  font-style: normal;
}

/* ══ ADDRESSES PAGE ══ */
.gs-addr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gs-addr-card {
  border: 1px solid #E8E4DF;
  padding: 22px;
  background: #ffffff;
  position: relative;
}
.gs-addr-card__default {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #0C0C0C;
  color: #ffffff;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.gs-addr-card__body {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: #0C0C0C;
  font-style: normal;
  margin-bottom: 18px;
}
.gs-addr-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gs-addr-card__btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: none;
  border: 1.5px solid #E8E4DF;
  color: #0C0C0C;
  padding: 7px 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.gs-addr-card__btn:hover { border-color: #0C0C0C; }
.gs-addr-card__btn--delete { color: #888078; }
.gs-addr-card__btn--delete:hover { border-color: #C8102E; color: #C8102E; }
.gs-addr-form-wrap {
  background: #F5F3F0;
  padding: 28px;
  margin-bottom: 28px;
}
.gs-addr-form-wrap--inline { margin-top: 20px; margin-bottom: 0; }
.gs-addr-form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0C0C0C;
  margin-bottom: 20px;
}
.gs-addr-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gs-addr-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .gs-account-wrap { grid-template-columns: 1fr; }
  .gs-account-sidebar {
    border-right: none;
    border-bottom: 1px solid #E8E4DF;
    padding: 24px 20px;
  }
  .gs-account-nav { flex-direction: row; flex-wrap: wrap; gap: 4px; }
  .gs-order-detail-layout { grid-template-columns: 1fr; }
  .gs-order-detail-summary { position: static; }
  .gs-auth-field-row { grid-template-columns: 1fr; }
  .gs-addr-field-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .gs-auth-box { padding: 32px 20px; }
  .gs-order-detail-line { grid-template-columns: 80px 1fr; }
 