/* ===============================================================
   GABAYA - site styles
   Layered on assets/css/design-system.css ("Classical").

   Every colour, font, space, radius and shadow below comes from a
   design-system token. No raw hex, no invented font, no magic px in
   the spacing scale - per docs/DESIGN-SYSTEM.md.

   Structural values that ARE literal here (aspect ratios, hero
   heights, grid minimums) are taken verbatim from the design canvas
   and docs/IMAGE_PROMPTS.md, so image slots match the export sizes.
   =============================================================== */

/* --- Layout primitives ---------------------------------------- */
.gb-page { min-height: 60vh; }

.gb-section {
  padding: clamp(56px, 9vw, 88px) clamp(24px, 6vw, 64px);
  border-bottom: 1px solid var(--color-divider);
}
.gb-section--tight { padding: clamp(40px, 6vw, 64px) clamp(24px, 6vw, 64px); }
.gb-section--center { text-align: center; }
.gb-section--dark {
  background: var(--color-neutral-900);
  color: var(--color-neutral-100);
  border-bottom: none;
}
.gb-section--flush { padding-left: 0; padding-right: 0; }
.gb-section:last-child { border-bottom: none; }

.gb-wrap { max-width: 1440px; margin-inline: auto; width: 100%; }
.gb-wrap--narrow { max-width: 760px; }
.gb-wrap--prose { max-width: 68ch; }

.gb-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin: 0 0 var(--space-2);
  font-feature-settings: "tnum";
}
.gb-section-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  margin: 0 0 var(--space-6);
  line-height: 1.15;
}
.gb-lede {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  opacity: 0.82;
  max-width: 62ch;
}

/* --- Skip link -------------------------------------------------- */
.gb-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  color: var(--color-text);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-accent);
}
.gb-skip:focus { left: var(--space-4); top: var(--space-4); }

/* --- Header ----------------------------------------------------- */
.gb-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--color-divider);
}
.gb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) clamp(20px, 5vw, 56px);
}
.gb-nav { display: flex; gap: var(--space-6); flex: 1; align-items: center; }
.gb-nav--right { justify-content: flex-end; gap: var(--space-4); }

.gb-nav a {
  text-decoration: none;
  color: inherit;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-block: var(--space-1);
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.gb-nav a:hover { border-bottom-color: var(--color-accent); }
.gb-nav a[aria-current="page"] { border-bottom-color: var(--color-accent); }

.gb-brand {
  font-family: var(--font-heading);
  font-size: 26px;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: inherit;
  text-align: center;
  white-space: nowrap;
  font-weight: 400;
}

.gb-divider-v { width: 1px; height: 16px; background: var(--color-divider); }

.gb-iconbtn {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
}
.gb-iconbtn:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); }

.gb-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-accent);
  color: var(--color-neutral-100);
  font-size: 10px;
  min-width: 16px;
  height: 16px;
  padding-inline: 3px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-feature-settings: "tnum";
}

/* Mobile drawer */
.gb-menu-toggle { display: none; }
.gb-drawer {
  display: none;
  border-top: 1px solid var(--color-divider);
  padding: var(--space-4) clamp(20px, 5vw, 56px) var(--space-6);
  flex-direction: column;
  gap: var(--space-3);
  background: var(--color-bg);
}
.gb-drawer.is-open { display: flex; }
.gb-drawer a {
  text-decoration: none;
  color: inherit;
  font-size: 15px;
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--color-divider);
}
.gb-drawer a:last-child { border-bottom: none; }

/* --- Announcement bar ------------------------------------------- */
.gb-announce {
  background: var(--color-neutral-900);
  color: var(--color-neutral-100);
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
}

/* --- Hero -------------------------------------------------------
   Slot per docs/IMAGE_PROMPTS.md 1.1: full-bleed,
   height clamp(420px, 86vh, 860px), object-position center 38%,
   content bottom-left over a scrim, left 45% kept quiet.        */
.gb-hero {
  position: relative;
  height: clamp(420px, 86vh, 860px);
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--color-divider);
  overflow: hidden;
}
.gb-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
/* Two gradients, not one. The vertical scrim alone assumes a dark
   photograph; over a light one the eyebrow and sub-heading disappear.
   The horizontal pass darkens the left ~55% where the copy sits — which
   is also the area docs/IMAGE_PROMPTS.md 1.1 asks to be kept quiet — so
   the text stays legible whatever the image behind it. */
.gb-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      color-mix(in srgb, var(--color-neutral-900) 58%, transparent) 0%,
      color-mix(in srgb, var(--color-neutral-900) 34%, transparent) 38%,
      transparent 62%
    ),
    linear-gradient(
      to top,
      color-mix(in srgb, var(--color-neutral-900) 62%, transparent) 0%,
      color-mix(in srgb, var(--color-neutral-900) 24%, transparent) 38%,
      transparent 68%
    );
}

@media (max-width: 860px) {
  /* Copy spans the full width on mobile, so the horizontal pass would
     only mute the photograph. Bottom-weight it instead. */
  .gb-hero__scrim {
    background: linear-gradient(
      to top,
      color-mix(in srgb, var(--color-neutral-900) 72%, transparent) 0%,
      color-mix(in srgb, var(--color-neutral-900) 34%, transparent) 46%,
      transparent 78%
    );
  }
}

/* On the scrim these sit on a dark ground; 0.6 is too faint to read. */
.gb-hero .gb-eyebrow { opacity: 0.85; }
.gb-hero__content {
  position: relative;
  padding: clamp(28px, 5vw, 68px);
  max-width: 45%;
  color: var(--color-neutral-100);
}
.gb-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.03;
  font-weight: 400;
  margin: 0 0 var(--space-3);
}
.gb-hero__sub {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.7;
  opacity: 0.88;
  margin: 0 0 var(--space-6);
  max-width: 46ch;
}
.gb-hero__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* Hero buttons sit on a dark scrim, so they invert the outline. */
.gb-hero .btn {
  border-color: var(--color-neutral-100);
  color: var(--color-neutral-100);
}
.gb-hero .btn:hover {
  background: color-mix(in srgb, var(--color-neutral-100) 14%, transparent);
}
.gb-hero .btn-primary { border-color: var(--color-accent-300); color: var(--color-accent-200); }

/* Page banner (shorter hero for About etc.) - 21:9 slot, 5.1 */
.gb-banner {
  position: relative;
  height: clamp(300px, 55vh, 520px);
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--color-divider);
  overflow: hidden;
}
.gb-banner__title {
  position: relative;
  font-family: var(--font-heading);
  font-size: clamp(34px, 6vw, 58px);
  margin: 0;
  padding: clamp(28px, 5vw, 60px);
  font-weight: 400;
  color: var(--color-neutral-100);
}

/* --- Plate (the design system's image treatment) ----------------
   Every photograph goes through .plate. These modifiers only fix
   the aspect ratio of the slot so real photography drops in with
   no layout shift.                                              */
.gb-plate { display: block; position: relative; overflow: hidden; }
.gb-plate img,
.gb-plate .gb-ph {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gb-ratio-4-5   { aspect-ratio: 4 / 5; }
.gb-ratio-1-1   { aspect-ratio: 1 / 1; }
.gb-ratio-16-11 { aspect-ratio: 16 / 11; }
.gb-ratio-3-2   { aspect-ratio: 3 / 2; }
.gb-ratio-4-3   { aspect-ratio: 4 / 3; }
.gb-ratio-5-2   { aspect-ratio: 5 / 2; }
.gb-ratio-3-1   { aspect-ratio: 3 / 1; }

/* Neutral placeholder block - deliberately plain, not stock imagery. */
.gb-ph {
  background:
    repeating-linear-gradient(
      45deg,
      var(--color-neutral-200) 0 12px,
      var(--color-neutral-100) 12px 24px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-neutral-600);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: var(--space-3);
}

/* --- Category strip --------------------------------------------- */
.gb-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.gb-category {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: border-color 0.18s ease;
}
.gb-category:hover { border-color: var(--color-divider); }
.gb-category__media {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--color-divider);
}
.gb-category__name {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}
.gb-category__count { font-size: 11px; opacity: 0.55; font-feature-settings: "tnum"; }

/* --- Product grid ----------------------------------------------- */
.gb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(20px, 3vw, 40px) clamp(16px, 2vw, 28px);
}

.gb-card { display: flex; flex-direction: column; gap: var(--space-3); }
.gb-card__link { text-decoration: none; color: inherit; display: block; }
.gb-card__media { position: relative; overflow: hidden; }
.gb-card__media .gb-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: block;
}
.gb-card__media .gb-hover picture,
.gb-card__media .gb-hover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gb-plate picture { display: block; width: 100%; height: 100%; }
.gb-card:hover .gb-hover { opacity: 1; }
.gb-card__body { display: flex; flex-direction: column; gap: var(--space-1); }
.gb-card__kicker {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
}
.gb-card__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  margin: 0;
  line-height: 1.25;
}
.gb-card__price { font-size: 14px; font-feature-settings: "tnum"; }
.gb-card__price--enquire {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--color-accent-700);
  font-style: italic;
}
.gb-swatches { display: flex; gap: 6px; margin-top: var(--space-1); }
.gb-swatch {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid var(--color-divider);
  display: inline-block;
  flex: none;
}
.gb-swatch--split { background-clip: padding-box; }

/* --- Collection tiles (16:11 per IMAGE_PROMPTS 1.4) ------------- */
.gb-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  border-bottom: 1px solid var(--color-divider);
}
.gb-tile { position: relative; text-decoration: none; color: inherit; overflow: hidden; }
.gb-tile__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--color-neutral-900) 68%, transparent) 0%,
    transparent 46%
  );
}
.gb-tile__label {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: clamp(20px, 3vw, 32px);
  color: var(--color-neutral-100);
}
.gb-tile__name {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  margin: 0 0 var(--space-1);
}
.gb-tile__cta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-accent-300);
  padding-bottom: 2px;
}

/* --- Split band (image beside text) ----------------------------- */
.gb-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  border-bottom: 1px solid var(--color-divider);
  align-items: stretch;
}
.gb-split__text {
  padding: clamp(40px, 7vw, 80px) clamp(24px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-3);
}
.gb-split--reverse .gb-split__media { order: 2; }

/* --- Instagram mosaic (1:1 per IMAGE_PROMPTS 1.6) --------------- */
.gb-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2px;
  margin-top: var(--space-6);
}

/* --- Newsletter band -------------------------------------------- */
.gb-newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.gb-newsletter form {
  display: flex;
  gap: var(--space-2);
  width: min(440px, 100%);
  flex-wrap: wrap;
}
.gb-newsletter .input { flex: 1; min-width: 200px; }
.gb-section--dark .input {
  background: transparent;
  color: var(--color-neutral-100);
  border-color: color-mix(in srgb, var(--color-neutral-100) 34%, transparent);
}
.gb-section--dark .input::placeholder { color: color-mix(in srgb, var(--color-neutral-100) 55%, transparent); }
.gb-section--dark .btn { border-color: var(--color-accent-300); color: var(--color-accent-200); }

/* --- Shop layout ------------------------------------------------- */
.gb-shop {
  display: grid;
  grid-template-columns: 232px 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.gb-filters { position: sticky; top: 96px; display: flex; flex-direction: column; gap: var(--space-6); }
.gb-filter-group { display: flex; flex-direction: column; gap: var(--space-2); }
.gb-filter-group > h3 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 var(--space-1);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-divider);
  font-weight: 400;
  font-family: var(--font-body);
}
.gb-filter-link {
  text-decoration: none;
  color: inherit;
  font-size: 13.5px;
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  padding-block: 3px;
  opacity: 0.8;
}
.gb-filter-link:hover { opacity: 1; color: var(--color-accent-700); }
.gb-filter-link[aria-current="true"] { opacity: 1; color: var(--color-accent-700); }
.gb-filter-link[aria-current="true"]::before { content: "— "; }
.gb-filter-link span { opacity: 0.5; font-feature-settings: "tnum"; }

.gb-shop__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-divider);
}
.gb-result-count { font-size: 12.5px; opacity: 0.65; font-feature-settings: "tnum"; }

.gb-colour-filters { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.gb-colour-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  padding: 4px 9px;
  font-size: 12px;
  text-decoration: none;
  color: inherit;
}
.gb-colour-chip:hover { border-color: var(--color-accent); }
.gb-colour-chip[aria-current="true"] { border-color: var(--color-accent); color: var(--color-accent-700); }

.gb-active-filters { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-bottom: var(--space-4); }

/* --- Pagination -------------------------------------------------- */
.gb-pagination {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  align-items: center;
  margin-top: clamp(40px, 6vw, 64px);
  flex-wrap: wrap;
}
.gb-pagination a,
.gb-pagination span {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  font-size: 13px;
  font-feature-settings: "tnum";
  padding-inline: var(--space-2);
}
.gb-pagination a:hover { border-color: var(--color-accent); color: var(--color-accent-700); }
.gb-pagination [aria-current="page"] { border-color: var(--color-accent); color: var(--color-accent-700); }
.gb-pagination .is-disabled { opacity: 0.45; pointer-events: none; }

/* --- PDP ---------------------------------------------------------- */
.gb-pdp {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
/* --- PDP gallery --------------------------------------------------
   Desktop: a stacked column — every shot visible, no interaction.
   Mobile:  a swipeable scroll-snap carousel with dots and a counter.
   The same markup serves both; only the track's layout changes.     */
.gb-gallery { position: relative; }

.gb-gallery__track {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
.gb-gallery__slide { margin: 0; }

.gb-gallery__arrow,
.gb-gallery__dots,
.gb-gallery__count { display: none; }

@media (max-width: 1024px) {
  .gb-gallery__track {
    display: flex;
    gap: var(--space-2);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Bleed to the viewport edges so the swipe feels native. */
    margin-inline: calc(clamp(24px, 6vw, 64px) * -1);
    padding-inline: clamp(24px, 6vw, 64px);
    scroll-padding-inline: clamp(24px, 6vw, 64px);
  }
  .gb-gallery__track::-webkit-scrollbar { display: none; }

  .gb-gallery__slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .gb-gallery__arrow {
    display: inline-flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--color-divider);
    border-radius: 50%;
    background: color-mix(in srgb, var(--color-bg) 88%, transparent);
    backdrop-filter: blur(6px);
    color: var(--color-text);
    cursor: pointer;
    padding: 0;
  }
  .gb-gallery__arrow--prev { left: var(--space-2); }
  .gb-gallery__arrow--next { right: var(--space-2); }
  .gb-gallery__arrow[disabled] { opacity: 0.3; pointer-events: none; }

  .gb-gallery__dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: var(--space-3);
  }
  .gb-gallery__dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--color-neutral-400);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .gb-gallery__dot[aria-selected="true"] {
    background: var(--color-accent);
    transform: scale(1.5);
  }

  .gb-gallery__count {
    display: block;
    text-align: center;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    opacity: 0.55;
    margin: var(--space-2) 0 0;
    font-feature-settings: "tnum";
  }
}

/* Touch devices don't need arrows — the swipe is the affordance. */
@media (hover: none) and (pointer: coarse) {
  .gb-gallery__arrow { display: none !important; }
}

/* --- UGC reels rail ------------------------------------------------
   Vertical 9:16 videos in a horizontally scrollable, snapping rail.
   Posters only until a tile is played, so the page stays light.    */
.gb-reels__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}
.gb-reels__nav { display: flex; gap: var(--space-2); }
.gb-reels__arrow {
  border: 1px solid var(--color-divider);
  border-radius: 50%;
  width: 38px;
  height: 38px;
}
.gb-reels__arrow[disabled] { opacity: 0.3; pointer-events: none; }

.gb-reels__rail {
  display: flex;
  gap: clamp(12px, 2vw, 20px);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  list-style: none;
  margin: 0;
  padding: 0 0 var(--space-3);
  scrollbar-width: thin;
  scrollbar-color: var(--color-neutral-400) transparent;
  /* Bleed to the edges on small screens so the rail reads as scrollable. */
  margin-inline: calc(clamp(24px, 6vw, 64px) * -1);
  padding-inline: clamp(24px, 6vw, 64px);
  scroll-padding-inline: clamp(24px, 6vw, 64px);
}
.gb-reels__rail::-webkit-scrollbar { height: 4px; }
.gb-reels__rail::-webkit-scrollbar-thumb {
  background: var(--color-neutral-400);
  border-radius: 999px;
}
.gb-reels__rail::-webkit-scrollbar-track { background: transparent; }

.gb-reel {
  flex: 0 0 auto;
  width: clamp(168px, 22vw, 232px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.gb-reel__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-surface);
}
.gb-reel__frame img,
.gb-reel__frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gb-reel__play {
  position: absolute;
  inset: 0;
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gb-reel__play:hover .gb-reel__playicon { transform: scale(1.08); }
.gb-reel__playicon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-neutral-100);
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-neutral-900) 34%, transparent);
  backdrop-filter: blur(3px);
  position: relative;
  transition: transform 0.2s ease;
}
.gb-reel__playicon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 13px;
  border-color: transparent transparent transparent var(--color-neutral-100);
}
.gb-reel__pending {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--space-3);
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-neutral-600);
  line-height: 1.6;
}
.gb-reel__meta { display: flex; flex-direction: column; gap: 2px; }
.gb-reel__title {
  font-size: 12.5px;
  line-height: 1.4;
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
a.gb-reel__title:hover { color: var(--color-accent-700); }
.gb-reel__handle { font-size: 11px; opacity: 0.55; }

.gb-pdp__info { display: flex; flex-direction: column; gap: var(--space-4); position: sticky; top: 96px; }
.gb-pdp__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
}
.gb-pdp__price { font-size: 19px; font-feature-settings: "tnum"; }
.gb-pdp__desc { font-size: 15px; line-height: 1.8; opacity: 0.86; margin: 0; }

.gb-variant-picker { display: flex; flex-direction: column; gap: var(--space-2); }
.gb-variant-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.6; }
.gb-variants { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.gb-variant {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  padding: 6px 11px;
  font-size: 12.5px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease;
}
.gb-variant:hover { border-color: var(--color-accent); }
.gb-variant[aria-current="true"] { border-color: var(--color-accent); color: var(--color-accent-700); }
.gb-variant--oos { opacity: 0.45; }

.gb-qty { display: inline-flex; align-items: center; border: 1px solid var(--color-divider); border-radius: var(--radius-md); }
.gb-qty button {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  width: 36px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gb-qty button:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); }
.gb-qty input {
  width: 42px;
  text-align: center;
  border: none;
  background: none;
  color: inherit;
  font-family: var(--font-body);
  font-size: 14px;
  font-feature-settings: "tnum";
  -moz-appearance: textfield;
}
.gb-qty input::-webkit-outer-spin-button,
.gb-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.gb-buy-row { display: flex; gap: var(--space-3); flex-wrap: wrap; align-items: center; }
.gb-buy-row .btn-block { flex: 1; min-width: 190px; }

.gb-reassure { display: flex; flex-direction: column; gap: var(--space-2); margin-top: var(--space-2); }
.gb-reassure div { display: flex; gap: var(--space-2); align-items: center; font-size: 12.5px; opacity: 0.75; }

/* Accordion (Details / Materials & Care / Shipping) */
.gb-accordion { border-top: 1px solid var(--color-divider); }
.gb-accordion details { border-bottom: 1px solid var(--color-divider); }
.gb-accordion summary {
  cursor: pointer;
  padding: var(--space-4) 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gb-accordion summary::-webkit-details-marker { display: none; }
.gb-accordion summary::after { content: "+"; font-size: 16px; opacity: 0.6; }
.gb-accordion details[open] summary::after { content: "\2212"; }
.gb-accordion__body { padding-bottom: var(--space-4); font-size: 14px; line-height: 1.8; opacity: 0.85; }
.gb-accordion__body ul { margin: 0; padding-left: 1.1em; }
.gb-accordion__body li { margin-bottom: var(--space-1); }

.gb-spec { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.gb-spec th,
.gb-spec td { text-align: left; padding: var(--space-2) 0; border-bottom: 1px solid var(--color-divider); vertical-align: top; }
.gb-spec th { font-weight: 400; opacity: 0.6; width: 46%; }
.gb-spec td { font-feature-settings: "tnum"; }
.gb-spec tr:last-child th,
.gb-spec tr:last-child td { border-bottom: none; }
.gb-tbd { opacity: 0.5; font-style: italic; }

/* --- Cart --------------------------------------------------------- */
.gb-cart { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.gb-line {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-divider);
  align-items: start;
}
.gb-line:first-child { border-top: 1px solid var(--color-divider); }
.gb-line__title { font-family: var(--font-heading); font-size: 17px; font-weight: 400; margin: 0 0 2px; }
.gb-line__meta { font-size: 12.5px; opacity: 0.62; margin: 0 0 var(--space-3); }
.gb-line__controls { display: flex; gap: var(--space-3); align-items: center; flex-wrap: wrap; }
.gb-line__price { text-align: right; font-feature-settings: "tnum"; white-space: nowrap; }

.gb-summary {
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 28px);
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.gb-summary__row { display: flex; justify-content: space-between; font-size: 14px; font-feature-settings: "tnum"; }
.gb-summary__row--total {
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-3);
  margin-top: var(--space-1);
  font-size: 17px;
}
.gb-summary__note { font-size: 12px; opacity: 0.6; line-height: 1.6; }

/* --- Empty states -------------------------------------------------- */
.gb-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
  padding: clamp(48px, 9vw, 96px) var(--space-4);
  max-width: 520px;
  margin-inline: auto;
}
.gb-empty__media { width: min(260px, 70%); }
.gb-empty h1,
.gb-empty h2 { font-family: var(--font-heading); font-weight: 400; margin: 0; font-size: clamp(24px, 3vw, 32px); }
.gb-empty p { margin: 0; opacity: 0.75; line-height: 1.7; }

/* --- Forms --------------------------------------------------------- */
.gb-form { display: flex; flex-direction: column; gap: var(--space-4); }
.gb-form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-4); }
.gb-field { display: flex; flex-direction: column; gap: var(--space-1); }
.gb-field label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; }
.gb-field .req { color: var(--color-accent-700); }
.gb-field textarea { min-height: 120px; resize: vertical; }
.gb-field__error { font-size: 12px; color: var(--color-accent-800); }
.gb-field--invalid .input { border-color: var(--color-accent-700); }

.gb-alert {
  border: 1px solid var(--color-divider);
  border-left: 2px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: 13.5px;
  line-height: 1.6;
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.gb-alert--error { border-left-color: var(--color-accent-800); }
.gb-alert ul { margin: var(--space-1) 0 0; padding-left: 1.1em; }

/* --- Checkout ------------------------------------------------------- */
.gb-checkout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.9fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.gb-fieldset { border: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-4); }
.gb-fieldset legend {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 0 var(--space-3);
  opacity: 0.7;
  width: 100%;
  border-bottom: 1px solid var(--color-divider);
  margin-bottom: var(--space-2);
}
.gb-pay-options { display: flex; flex-direction: column; gap: var(--space-2); }
.gb-pay {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  cursor: pointer;
}
.gb-pay:hover { border-color: var(--color-accent-400); }
.gb-pay:has(input:checked) { border-color: var(--color-accent); background: color-mix(in srgb, var(--color-accent) 5%, transparent); }
.gb-pay input { margin-top: 3px; accent-color: var(--color-accent); }
.gb-pay__name { font-size: 14px; display: block; margin-bottom: 2px; }
.gb-pay__hint { font-size: 12px; opacity: 0.65; line-height: 1.55; }
.gb-testmode {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-700);
  border: 1px solid var(--color-accent-300);
  border-radius: var(--radius-sm);
  padding: 2px 6px;
  display: inline-block;
}

.gb-mini-line { display: flex; gap: var(--space-3); align-items: center; font-size: 13px; padding-block: var(--space-2); }
.gb-mini-line__media { width: 48px; flex: none; }
.gb-mini-line__name { flex: 1; line-height: 1.4; }
.gb-mini-line__price { font-feature-settings: "tnum"; white-space: nowrap; }

/* --- Order confirmation ---------------------------------------------- */
.gb-confirm { max-width: 700px; margin-inline: auto; text-align: center; }
.gb-confirm__number {
  font-size: 15px;
  letter-spacing: 0.1em;
  font-feature-settings: "tnum";
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  display: inline-block;
  margin-block: var(--space-4);
}

/* --- Footer ----------------------------------------------------------- */
.gb-footer {
  background: var(--color-surface);
  padding: clamp(48px, 7vw, 72px) clamp(24px, 6vw, 64px) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  border-top: 1px solid var(--color-divider);
}
.gb-footer__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--space-6); }
.gb-footer__col { display: flex; flex-direction: column; gap: var(--space-2); }
.gb-footer__col h2 {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 var(--space-1);
  font-weight: 400;
  font-family: var(--font-body);
}
.gb-footer__col a { font-size: 13px; opacity: 0.75; text-decoration: none; color: inherit; }
.gb-footer__col a:hover { opacity: 1; color: var(--color-accent-700); }
.gb-footer__brand { max-width: 280px; }
.gb-footer__brand p { font-size: 12.5px; line-height: 1.6; opacity: 0.7; margin: 0; }
.gb-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-4);
  font-size: 11.5px;
  opacity: 0.65;
}
.gb-footer__bottom nav { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.gb-footer__bottom a { color: inherit; text-decoration: none; }
.gb-footer__bottom a:hover { text-decoration: underline; }

/* --- Breadcrumbs -------------------------------------------------------- */
.gb-crumbs { font-size: 11.5px; letter-spacing: 0.06em; opacity: 0.6; margin-bottom: var(--space-4); }
.gb-crumbs a { color: inherit; text-decoration: none; }
.gb-crumbs a:hover { text-decoration: underline; }
.gb-crumbs span { margin-inline: 6px; }

/* --- Utilities ----------------------------------------------------------- */
.gb-stack { display: flex; flex-direction: column; gap: var(--space-4); }
.gb-row { display: flex; gap: var(--space-3); align-items: center; flex-wrap: wrap; }
.gb-muted { opacity: 0.65; }
.gb-center { text-align: center; }
.gb-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.gb-scroll-x { overflow-x: auto; }

/* --- Responsive ---------------------------------------------------------
   Verified 360px - 1920px.                                            */
@media (max-width: 1024px) {
  .gb-shop { grid-template-columns: 1fr; }
  .gb-filters { position: static; }
  .gb-pdp { grid-template-columns: 1fr; }
  .gb-pdp__info { position: static; }
  .gb-cart,
  .gb-checkout { grid-template-columns: 1fr; }
  .gb-summary { position: static; }
}

@media (max-width: 860px) {
  .gb-menu-toggle { display: inline-flex; }
  .gb-nav--desktop { display: none; }
  .gb-header__inner { justify-content: space-between; }
  .gb-brand { flex: 1; text-align: center; font-size: 22px; }
  .gb-hero__content { max-width: 100%; }
  .gb-hero { height: clamp(420px, 72vh, 640px); }
  .gb-split--reverse .gb-split__media { order: 0; }
}

@media (max-width: 560px) {
  .gb-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: var(--space-4) var(--space-3); }
  .gb-card__title { font-size: 15px; }
  .gb-line { grid-template-columns: 72px 1fr; }
  .gb-line__price { grid-column: 2; text-align: left; }
  .gb-category__media { width: 64px; height: 64px; }
  .gb-footer__bottom { flex-direction: column; }
  .gb-hero__title { font-size: clamp(30px, 9vw, 40px); }
}

@media (min-width: 1600px) {
  .gb-wrap { max-width: 1560px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* --- Print ---------------------------------------------------------------- */
@media print {
  .gb-header, .gb-footer, .gb-announce, .btn { display: none !important; }
}
