/* ==========================================================
   Gamestore Theme — main.css  v4.0
   ========================================================== */

/* ── Design Tokens ──────────────────────────────────────── */
:root {
  /* Brand */
  --brand:        #0a84ff;
  --brand-dark:   #0857a8;
  --brand-600:    #0a6fd9;
  --brand-100:    #d6e7ff;
  --brand-50:     #eaf3ff;

  /* Ink */
  --ink:          #0b1320;
  --ink-2:        #1a2234;
  --muted:        #5b6577;

  /* Surfaces */
  --bg:           #ffffff;
  --bg-2:         #f6f8fb;
  --bg-3:         #eef2f7;

  /* Lines */
  --line:         #e6e9ef;
  --line-2:       #eef1f5;

  /* State */
  --good:         #16a34a;
  --bad:          #dc2626;
  --warn:         #f5a524;

  /* Typography */
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-ui:      "Inter", system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-sm:   10px;
  --r:      14px;
  --r-lg:   22px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11,19,32,.05), 0 1px 1px rgba(11,19,32,.03);
  --shadow:    0 4px 14px rgba(11,19,32,.06), 0 2px 4px rgba(11,19,32,.04);
  --shadow-lg: 0 16px 40px rgba(11,19,32,.10);

  /* Layout */
  --max:        1400px;
  --gap:        clamp(16px, 2vw, 28px);
  --t:          0.18s ease;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

input:focus-visible, button:focus-visible, a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ── Container ──────────────────────────────────────────── */
.gs-container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

/* ── Buttons ─────────────────────────────────────────────── */
.gs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--r-sm);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background var(--t), color var(--t), box-shadow var(--t), transform .15s;
}
.gs-btn:hover { transform: translateY(-1px); }
.gs-btn svg { flex-shrink: 0; }

.gs-btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(10,132,255,.25);
}
.gs-btn--primary:hover {
  background: var(--brand-600);
  box-shadow: 0 6px 20px rgba(10,132,255,.35);
}

.gs-btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.gs-btn--outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-50);
}

/* ── Announcement Bar ────────────────────────────────────── */
.gs-announce {
  background: var(--ink);
  font-size: 12px;
  font-weight: 400;
  color: rgb(203, 213, 225);
}
.gs-announce__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 9px;
  position: relative;
  gap: 12px;
}
.gs-announce__left {
  display: flex;
  align-items: center;
  gap: 7px;
}
.gs-announce__left svg { color: rgba(255,255,255,0.5); flex-shrink: 0; }
.gs-announce__right { color: rgba(203,213,225,0.7); }
.gs-announce__close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.4);
  padding: 6px;
  border-radius: 4px;
  display: flex;
  transition: color var(--t);
}
.gs-announce__close:hover { color: rgba(255,255,255,0.8); }
.gs-announce.hidden { display: none; }

/* ── Header ──────────────────────────────────────────────── */
.gs-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t);
}
.gs-header.is-scrolled { box-shadow: var(--shadow); }

.gs-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding-block: 14px;
}

/* Logo */
.gs-logo { display: flex; align-items: center; flex-shrink: 0; overflow: hidden; }
.gs-logo a { display: flex; align-items: center; line-height: 0; }
.gs-header .gs-logo .custom-logo,
.gs-header .custom-logo-link .custom-logo,
.gs-header .gs-logo__img { height: 44px; width: auto; max-width: 160px; object-fit: contain; display: block; }
.gs-logo__text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* Search bar */
.gs-searchbar {
  display: flex;
  align-items: center;
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.gs-searchbar:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(10,132,255,.10);
  background: var(--bg);
}
.gs-searchbar__icon {
  color: var(--muted);
  padding: 0 12px;
  display: flex;
  flex-shrink: 0;
}
.gs-searchbar__input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 14px;
  padding: 11px 0;
  min-width: 0;
}
.gs-searchbar__input::placeholder { color: var(--muted); }

/* Header actions */
.gs-header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gs-hbtn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 10px;
  color: var(--muted);
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
  position: relative;
  white-space: nowrap;
}
.gs-hbtn:hover {
  color: var(--ink);
  background: var(--bg-2);
}
.gs-hbtn__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.gs-hbtn--menu { display: none; }
.gs-hbtn--account .gs-hbtn__label {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Cart count badge */
.gs-cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--brand);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}
.gs-cart-count.is-empty { display: none; }

/* ── Primary Navigation ──────────────────────────────────── */
.gs-nav {
  border-top: 1px solid var(--line);
}
.gs-nav .gs-container { position: relative; }

.gs-nav__list {
  display: flex;
  align-items: stretch;
}
.gs-nav__list > .menu-item { position: relative; }

.gs-nav__list > .menu-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--t), border-color var(--t);
}
.gs-nav__list > .menu-item > a:hover,
.gs-nav__list > .menu-item.current-menu-item > a,
.gs-nav__list > .menu-item.current-menu-ancestor > a {
  color: var(--ink);
  border-bottom-color: var(--brand);
}
.gs-nav__list > .menu-item.menu-item-has-children > a::after {
  content: '▾';
  font-size: 9px;
  opacity: 0.5;
  margin-left: 2px;
}

/* Dropdown */
.gs-nav__list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-top: 2px solid var(--brand);
  border-radius: 0 0 var(--r) var(--r);
  box-shadow: var(--shadow-lg);
  padding: 6px 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.gs-nav__list .menu-item:hover > .sub-menu,
.gs-nav__list .menu-item:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gs-nav__list .sub-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 13.5px;
  color: var(--muted);
  transition: color var(--t), padding-left var(--t), background var(--t);
}
.gs-nav__list .sub-menu a:hover {
  color: var(--brand);
  background: var(--brand-50);
  padding-left: 24px;
}
.gs-nav__list .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  border-top: 2px solid var(--brand);
  border-radius: 0 var(--r) var(--r) 0;
}

/* ── Mobile Drawer ───────────────────────────────────────── */
.gs-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 88vw);
  background: var(--bg);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-left: 1px solid var(--line);
  box-shadow: -8px 0 40px rgba(11,19,32,.10);
}
.gs-drawer.is-open { transform: translateX(0); }

.gs-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.gs-drawer__brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.gs-drawer__close {
  color: var(--muted);
  padding: 6px;
  border-radius: 6px;
  display: flex;
  transition: color var(--t), background var(--t);
}
.gs-drawer__close:hover { color: var(--ink); background: var(--bg-2); }

.gs-drawer__search {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.gs-drawer__search form {
  display: flex;
  align-items: center;
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0 12px;
  gap: 8px;
  transition: border-color var(--t);
}
.gs-drawer__search form:focus-within { border-color: var(--brand); }
.gs-drawer__search svg { color: var(--muted); flex-shrink: 0; }
.gs-drawer__search input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 14px;
  padding: 10px 0;
}
.gs-drawer__search input::placeholder { color: var(--muted); }

.gs-drawer__nav-wrap { flex: 1; overflow-y: auto; }
.gs-drawer__nav .menu-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
  transition: color var(--t), background var(--t);
}
.gs-drawer__nav .menu-item a:hover { color: var(--brand); background: var(--brand-50); }
.gs-drawer__nav .sub-menu { display: none; }
.gs-drawer__nav .sub-menu .menu-item a {
  padding-left: 36px;
  font-size: 13.5px;
  color: var(--muted);
  background: var(--bg-2);
}
.gs-drawer__nav .sub-menu .menu-item a:hover { color: var(--brand); }

.gs-drawer__foot {
  padding: 16px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.gs-drawer__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  border-radius: var(--r-sm);
  transition: background var(--t);
}
.gs-drawer__wa:hover { background: #1da851; }

/* ── Drawer account section ──────────────────────────────── */
.gs-drawer__account {
  border-top: 1px solid var(--line);
  padding: 16px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Logged-in: user identity row */
.gs-drawer__acct-user {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-2);
}
.gs-drawer__acct-avatar {
  width: 40px;
  height: 40px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand) 0%, #5dade2 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.gs-drawer__acct-info { min-width: 0; }
.gs-drawer__acct-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gs-drawer__acct-email {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Quick-link grid */
.gs-drawer__acct-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.gs-drawer__acct-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: background var(--t), color var(--t);
  position: relative;
}
.gs-drawer__acct-links a:hover { background: var(--brand-50); color: var(--brand); }
.gs-drawer__acct-links svg { color: var(--muted); flex-shrink: 0; }
.gs-drawer__acct-links a:hover svg { color: var(--brand); }
.gs-drawer__acct-badge {
  margin-left: auto;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 99px;
  font-family: var(--font-mono);
}

/* Sign out button */
.gs-drawer__acct-logout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--bad);
  background: #fef2f2;
  border: 1px solid #fecaca;
  text-decoration: none;
  transition: background var(--t);
}
.gs-drawer__acct-logout:hover { background: #fee2e2; }
.gs-drawer__acct-logout svg { color: var(--bad); }

/* Logged-out guest block */
.gs-drawer__acct-guest p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.5;
}
.gs-drawer__acct-guest-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.gs-drawer__acct-guest-btns .gs-btn {
  justify-content: center;
  font-size: 13px;
  padding: 10px 12px;
}

/* Overlay */
.gs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,19,32,.40);
  z-index: 299;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s, visibility 0.28s;
  backdrop-filter: blur(2px);
}
.gs-overlay.is-active { opacity: 1; visibility: visible; }

/* WhatsApp float */
.gs-wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.40);
  transition: transform var(--t), box-shadow var(--t);
}
.gs-wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

/* ── Hero ────────────────────────────────────────────────── */
.gs-hero-wrap { padding: 20px 0 0; }

.gs-hero {
  background-image: linear-gradient(135deg, #0b1320 0%, #0857a8 100%);
  padding: clamp(36px, 5vw, 72px) clamp(24px, 4vw, 56px) clamp(36px, 5vw, 72px);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.gs-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
}

.gs-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.90);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px 5px 10px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.gs-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

.gs-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}
.gs-hero__accent { color: #5dade2; }

.gs-hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 440px;
}

.gs-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
/* Override buttons inside dark hero */
.gs-hero .gs-btn--primary {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}
.gs-hero .gs-btn--primary:hover {
  background: rgba(255,255,255,0.90);
  box-shadow: none;
}
.gs-hero .gs-btn--outline {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.28);
  background: transparent;
}
.gs-hero .gs-btn--outline:hover {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.gs-hero__account-cta {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: -20px 0 28px;
}
.gs-hero__account-cta a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gs-hero__account-cta a:hover {
  color: #fff;
}

.gs-hero__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.gs-hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.gs-hero__stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  font-weight: 500;
}

/* Hero featured product visual */
.gs-hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.gs-hero__feat-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.gs-hero__feat-img {
  display: block;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  border-radius: var(--r);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 0.8px solid rgba(255,255,255,0.08);
  position: relative;
}
.gs-hero__feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gs-hero__feat-img:hover img { transform: scale(1.04); }

.gs-hero__feat-placeholder {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.20);
}

.gs-hero__feat-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--brand);
  color: #fff;
  border-radius: 20px;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}
.gs-hero__feat-pill small {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.75;
}
.gs-hero__feat-pill .woocommerce-Price-amount { color: #fff; }
.gs-hero__feat-pill del { display: none; }

/* ── Section common ──────────────────────────────────────── */
.gs-section { padding: clamp(40px, 6vw, 76px) 0; background: var(--bg); }
.gs-section--alt { background: var(--bg-2); }
.gs-section--platforms { background: var(--bg); }

.gs-sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(20px, 3vw, 36px);
  gap: 16px;
}
.gs-sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 4px;
}
.gs-sec-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.gs-sec-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  white-space: nowrap;
  transition: gap var(--t);
}
.gs-sec-more:hover { gap: 8px; }

/* ── Platform tiles ──────────────────────────────────────── */
/* ── Platform carousel ───────────────────────────────────── */
.gs-platforms-slider {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.gs-platforms-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: gs-ticker 32s linear infinite;
  will-change: transform;
}
.gs-platforms-slider:hover .gs-platforms-track {
  animation-play-state: paused;
}
@keyframes gs-ticker {
  to { transform: translateX(-50%); }
}
.gs-platform {
  flex: 0 0 130px;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 12px;
  background: #fff;
  border: 0.8px solid var(--line);
  border-radius: var(--r);
  text-align: center;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  color: var(--ink);
}
.gs-platform:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
/* Featured tile — same as rest (no special dark default) */
.gs-platform--featured {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.gs-platform--featured:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 8px 24px rgba(11,19,32,.35);
}

.gs-platform__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  flex-shrink: 0;
  color: var(--ink);
  transition: color var(--t);
}
.gs-platform--featured .gs-platform__icon {
  background: transparent;
  color: var(--ink);
}
.gs-platform:hover .gs-platform__icon { color: #fff; }
.gs-platform--featured:hover .gs-platform__icon { color: #fff; }
.gs-platform__icon img { width: 100%; height: 100%; object-fit: cover; }
.gs-platform__name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}
.gs-platform__count {
  font-size: 11px;
  color: var(--muted);
}
.gs-platform:hover .gs-platform__count { color: rgba(255,255,255,0.65); }
.gs-platform--featured .gs-platform__count { color: var(--muted); }
.gs-platform--featured:hover .gs-platform__count { color: rgba(255,255,255,0.65); }

/* ── Product grid — horizontal scroll strip ──────────────── */
.gs-products,
.gs-products--4col,
.gs-products--5col {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--brand) var(--line);
}
.gs-products::-webkit-scrollbar,
.gs-products--4col::-webkit-scrollbar,
.gs-products--5col::-webkit-scrollbar { height: 4px; }
.gs-products::-webkit-scrollbar-track,
.gs-products--4col::-webkit-scrollbar-track,
.gs-products--5col::-webkit-scrollbar-track { background: var(--line); border-radius: 2px; }
.gs-products::-webkit-scrollbar-thumb,
.gs-products--4col::-webkit-scrollbar-thumb,
.gs-products--5col::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 2px; }

/* Desktop: ~4 cards visible + 5th peeking */
.gs-products > *,
.gs-products--4col > *,
.gs-products--5col > * {
  flex: 0 0 22%;
  min-width: 0;
  scroll-snap-align: start;
}

/* ── Product card ────────────────────────────────────────── */
.gs-card {
  background: #fff;
  border: 0.8px solid rgb(230, 233, 239);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.gs-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10,132,255,.22);
}
.gs-card--oos { opacity: 0.62; }

.gs-card__thumb {
  position: relative;
  aspect-ratio: 522 / 672;
  background: var(--bg-2);
  overflow: hidden;
  display: block;
  padding: 12px;
}
.gs-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.gs-card__thumb:hover .gs-card__img { transform: scale(1.04); }
.gs-card__no-img { width: 100%; height: 100%; background: var(--bg-2); min-height: 180px; }

.gs-card__badges {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gs-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 6px;
  color: #fff;
  line-height: 1.4;
  text-align: center;
}
.gs-badge--new  { background: var(--brand); }
.gs-badge--sale { background: var(--bad); }
.gs-badge--low  { background: var(--warn); color: var(--ink); }
.gs-badge--oos  { background: rgba(11,19,32,.55); backdrop-filter: blur(4px); }

.gs-card__body {
  padding: 13px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.gs-card__cat {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.gs-card__title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--t);
}
.gs-card__title:hover { color: var(--brand); }

.gs-card__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}
.gs-stars { color: #f5a524; font-size: 12px; letter-spacing: 1px; }
.gs-card__score { font-weight: 600; color: var(--ink-2); }
.gs-card__rcount { color: var(--muted); }

.gs-card__stock {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--good);
}
.gs-card__stock--low  { color: var(--warn); }
.gs-card__stock--oos  { color: var(--bad); }

.gs-card__price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-top: auto;
}
.gs-card__price del {
  font-weight: 400;
  color: var(--muted);
  font-size: 13px;
  margin-right: 4px;
}
.gs-card__price ins {
  text-decoration: none;
  color: var(--bad);
}
.gs-card__price .woocommerce-Price-amount { color: var(--ink); }
.gs-card__price del .woocommerce-Price-amount { color: var(--muted); }

.gs-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 4px;
  transition: background var(--t), color var(--t), border-color var(--t);
  cursor: pointer;
}
.gs-card__btn:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.gs-card__btn.loading { opacity: 0.65; cursor: wait; pointer-events: none; }

/* ── Brands strip ────────────────────────────────────────── */
.gs-brands {
  background: var(--bg-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.gs-brands__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
}
.gs-brand-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  opacity: 0.65;
  transition: opacity var(--t), color var(--t);
  white-space: nowrap;
}
.gs-brand-name:hover { opacity: 1; color: var(--ink); }

/* ── Newsletter ──────────────────────────────────────────── */
.gs-newsletter {
  background: #0b1320;
  padding: clamp(40px, 6vw, 72px) 0;
}
.gs-newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}
.gs-newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.gs-newsletter__sub {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  max-width: 440px;
}
.gs-newsletter__form {
  display: flex;
  gap: 10px;
}
.gs-newsletter__input {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: var(--r-sm);
  color: #fff;
  font-size: 14px;
  padding: 12px 16px;
  min-width: 0;
  transition: border-color var(--t), background var(--t);
}
.gs-newsletter__input::placeholder { color: rgba(255,255,255,.4); }
.gs-newsletter__input:focus {
  outline: none;
  border-color: var(--brand);
  background: rgba(255,255,255,.12);
}

/* ── Footer ──────────────────────────────────────────────── */
.gs-footer {
  background: #0d1117;
  border-top: 1px solid rgba(255,255,255,.06);
}
.gs-footer__body { padding: clamp(40px, 5vw, 72px) 0; }
.gs-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.gs-footer__logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.gs-footer__logo img { height: 40px; width: auto; max-width: 140px; object-fit: contain; display: block; }

.gs-footer__heading {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.gs-footer__links { display: flex; flex-direction: column; gap: 2px; }
.gs-footer__links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,.48);
  padding: 5px 0;
  transition: color var(--t), padding-left var(--t);
}
.gs-footer__links li a:hover { color: #fff; padding-left: 4px; }

.gs-footer__socials li a { gap: 10px; }
.gs-footer__socials li a svg { flex-shrink: 0; }

/* Widget overrides */
.gs-footer__col .widget { margin: 0; }
.gs-footer__col .widget-title {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.gs-footer__col .widget ul { display: flex; flex-direction: column; gap: 2px; }
.gs-footer__col .widget ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,.48);
  padding: 5px 0;
  display: block;
  transition: color var(--t);
}
.gs-footer__col .widget ul li a:hover { color: #fff; }

/* Bottom bar */
.gs-footer__bar {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px 0;
}
.gs-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.gs-footer__copy { font-size: 12px; color: rgba(255,255,255,.32); }
.gs-footer__payments { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.gs-pay {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 5px;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  white-space: nowrap;
}
.gs-pay--mpesa  { background: #00A651; color: #fff; border-color: transparent; }
.gs-pay--visa   { background: #1A1F71; color: #fff; border-color: transparent; }
.gs-pay--mc     { background: #EB001B; color: #fff; border-color: transparent; }
.gs-pay--amex   { background: #2E77BC; color: #fff; border-color: transparent; }

/* ── WooCommerce overrides ───────────────────────────────── */
.woocommerce .button,
.woocommerce button.button,
.woocommerce input[type=submit] {
  background-color: var(--brand) !important;
  color: #fff !important;
  border-radius: var(--r-sm) !important;
  font-weight: 600 !important;
  transition: background var(--t) !important;
}
.woocommerce .button:hover,
.woocommerce button.button:hover {
  background-color: var(--brand-600) !important;
}
.woocommerce .star-rating { color: var(--warn); }
.woocommerce .price ins { text-decoration: none; color: var(--bad); }
.woocommerce .added_to_cart { color: var(--brand); font-weight: 600; }
.woocommerce-message, .woocommerce-info {
  border-top-color: var(--brand) !important;
}

/* ── Hero: desktop gradient (≥1025px) — dark left → lighter right ── */
@media (min-width: 1025px) {
  .gs-hero {
    background-image: linear-gradient(to right, #0b1320 0%, #0857a8 55%, #1a8fe8 100%);
  }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  /* ~3 cards + peek */
  .gs-products > *,
  .gs-products--4col > *,
  .gs-products--5col > * { flex: 0 0 30%; }
  .woocommerce ul.products,
  .woocommerce-page ul.products { grid-template-columns: repeat(3, 1fr) !important; }
  .gs-footer__grid     { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 1024px) {
  .gs-hero__inner      { grid-template-columns: 1fr; }
  .gs-hero__visual     { max-width: 300px; margin: 0 auto; }
  .gs-hero__feat-img   { max-width: 300px; }
  .gs-hero__desc       { max-width: 100%; }
  .gs-nav              { display: none; }
  .gs-hbtn--menu       { display: flex; }
  .gs-newsletter__inner { grid-template-columns: 1fr; gap: 28px; }
  /* ~2.5 cards + peek at 1024px */
  .gs-products > *,
  .gs-products--4col > *,
  .gs-products--5col > * { flex: 0 0 36%; }
}

@media (max-width: 768px) {
  /* Header */
  .gs-header__inner    { grid-template-columns: auto auto; justify-content: space-between; }
  .gs-searchbar        { display: none; }
  .gs-hbtn__label      { display: none; }
  .gs-announce__right  { display: none; }

  /* Hero */
  .gs-hero-wrap        { padding: 12px 0 0; }
  .gs-hero             { border-radius: var(--r); padding: 28px 20px 32px; }
  .gs-hero__title      { font-size: clamp(30px, 7vw, 44px); }
  .gs-hero__stats      { gap: 16px; }

  /* Platforms — smaller tiles on tablet */
  .gs-platform {
    flex: 0 0 110px;
    min-width: 110px;
    padding: 18px 8px;
  }
  .gs-platform__icon { width: 44px; height: 44px; }

  /* Products — 2 cards + peek on tablet/mobile */
  .gs-products > *,
  .gs-products--4col > *,
  .gs-products--5col > * { flex: 0 0 44%; }
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    display: flex !important;
    grid-template-columns: unset !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 12px !important;
    padding-bottom: 10px !important;
  }
  .woocommerce ul.products > *,
  .woocommerce-page ul.products > * {
    flex: 0 0 44% !important;
    scroll-snap-align: start !important;
    width: auto !important;
  }
  /* Thin branded scrollbar so it's clearly visible */
  .gs-products::-webkit-scrollbar,
  .gs-products--4col::-webkit-scrollbar,
  .gs-products--5col::-webkit-scrollbar,
  .woocommerce ul.products::-webkit-scrollbar,
  .woocommerce-page ul.products::-webkit-scrollbar { height: 3px; }
  .gs-products::-webkit-scrollbar-track,
  .gs-products--4col::-webkit-scrollbar-track,
  .gs-products--5col::-webkit-scrollbar-track,
  .woocommerce ul.products::-webkit-scrollbar-track,
  .woocommerce-page ul.products::-webkit-scrollbar-track { background: var(--line); border-radius: 2px; }
  .gs-products::-webkit-scrollbar-thumb,
  .gs-products--4col::-webkit-scrollbar-thumb,
  .gs-products--5col::-webkit-scrollbar-thumb,
  .woocommerce ul.products::-webkit-scrollbar-thumb,
  .woocommerce-page ul.products::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 2px; }

  /* Brands */
  .gs-brands__inner    { gap: 20px; flex-wrap: wrap; justify-content: center; }

  /* Footer */
  .gs-footer__grid     { grid-template-columns: 1fr 1fr; }
  .gs-footer__bar-inner { flex-direction: column; text-align: center; gap: 12px; }
  .gs-footer__payments { justify-content: center; }

  /* Newsletter */
  .gs-newsletter__form { flex-direction: column; }
  .gs-newsletter__input { width: 100%; }
}

@media (max-width: 480px) {
  /* Header */
  .gs-announce         { font-size: 11px; }

  /* Hero */
  .gs-hero             { padding: 24px 16px 28px; }
  .gs-hero__badge      { font-size: 11px; }
  .gs-hero__title      { font-size: clamp(28px, 8vw, 38px); margin-bottom: 12px; }
  .gs-hero__desc       { font-size: 13.5px; margin-bottom: 20px; }
  .gs-hero__actions    { flex-direction: column; gap: 10px; }
  .gs-hero__actions .gs-btn { width: 100%; justify-content: center; }
  .gs-hero__stats      { gap: 14px; padding-top: 16px; }
  .gs-hero__stat strong { font-size: 17px; }

  /* Platforms — tighten tile on small phones */
  .gs-platform { flex: 0 0 92px; min-width: 92px; padding: 14px 6px; }
  .gs-platform__icon { width: 40px; height: 40px; }
  .gs-platform__name { font-size: 11px; }

  /* Products — tighten card width slightly on small phones */
  .gs-products > *,
  .gs-products--4col > *,
  .gs-products--5col > * { flex: 0 0 44%; }
  .woocommerce ul.products > *,
  .woocommerce-page ul.products > * { flex: 0 0 44% !important; }

  /* Footer */
  .gs-footer__grid     { grid-template-columns: 1fr; gap: 28px; }
  .gs-brands__inner    { gap: 14px; }

  /* Breadcrumb */
  .woocommerce-breadcrumb { font-size: 12px; }
}

/* ==========================================================
   WooCommerce page templates
   ========================================================== */

/* ── Shared page chrome ──────────────────────────────────── */
.gs-page-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.woocommerce-breadcrumb {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.woocommerce-breadcrumb a { color: var(--muted); transition: color var(--t); }
.woocommerce-breadcrumb a:hover { color: var(--brand); }

/* WC notices */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  border-radius: var(--r-sm) !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  margin-bottom: 20px !important;
}

/* ── Shop Archive ────────────────────────────────────────── */
.gs-shop-wrap { padding: clamp(24px, 4vw, 48px) 0 clamp(40px, 6vw, 72px); }

.gs-shop-header { margin-bottom: 28px; }
.gs-shop-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.gs-shop-header .woocommerce-products-header__title { margin-bottom: 4px; }
.gs-shop-header .term-description { font-size: 14px; color: var(--muted); margin-top: 6px; max-width: 600px; }

.gs-shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

/* Sidebar */
.gs-shop-sidebar { position: sticky; top: 80px; }

.gs-filter-card {
  background: var(--bg);
  border: 0.8px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 16px;
}
.gs-filter-card__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 14px 16px 12px;
  border-bottom: 1px solid var(--line-2);
}

/* WC widget wrappers */
.gs-shop-sidebar .widget {
  background: var(--bg);
  border: 0.8px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 16px;
  padding: 14px 16px;
}
.gs-shop-sidebar .widget-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-2);
}

.gs-filter-list { padding: 8px 0; }
.gs-filter-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.gs-filter-list li a {
  display: block;
  padding: 7px 16px;
  font-size: 13.5px;
  color: var(--muted);
  transition: color var(--t), background var(--t);
  flex: 1;
  border-radius: 6px;
}
.gs-filter-list li a:hover { color: var(--brand); background: var(--brand-50); }
.gs-filter-list__item--active a,
.gs-filter-list li.current > a { color: var(--brand); font-weight: 600; }
.gs-filter-list__count {
  font-size: 11px;
  color: var(--muted);
  background: var(--bg-2);
  border-radius: 20px;
  padding: 1px 7px;
  margin-right: 10px;
  flex-shrink: 0;
}

/* Product category widget (WC default) */
.gs-shop-sidebar .product-categories { padding: 4px 0; }
.gs-shop-sidebar .product-categories li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 4px;
  font-size: 13.5px;
  color: var(--muted);
  transition: color var(--t);
}
.gs-shop-sidebar .product-categories li a:hover { color: var(--brand); }
.gs-shop-sidebar .product-categories li.current-cat > a { color: var(--brand); font-weight: 600; }
.gs-shop-sidebar .product-categories .count {
  font-size: 11px;
  background: var(--bg-2);
  border-radius: 20px;
  padding: 1px 7px;
}

/* Price filter widget */
.gs-shop-sidebar .price_slider_wrapper { padding-top: 8px; }
.gs-shop-sidebar .price_slider_amount button {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t);
}
.gs-shop-sidebar .price_slider_amount button:hover { background: var(--brand-600); }
.gs-shop-sidebar .price_slider_amount .price_label { font-size: 13px; color: var(--muted); margin-top: 8px; display: block; }

/* Active filters */
.gs-shop-sidebar .wc-block-active-filters,
.gs-shop-sidebar .widget_layered_nav_filters { padding-bottom: 4px; }

/* Toolbar */
.gs-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-2);
}
.gs-shop-toolbar__count .woocommerce-result-count {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.gs-shop-toolbar__right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gs-filter-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.gs-filter-toggle:hover,
.gs-filter-toggle.is-active {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-50);
}
.gs-shop-toolbar__sort .woocommerce-ordering select {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 13px;
  padding: 8px 32px 8px 12px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235b6577' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  transition: border-color var(--t);
}
.gs-shop-toolbar__sort .woocommerce-ordering select:focus { border-color: var(--brand); outline: none; }

/* WC product loop overrides */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  clear: none !important;
  float: none !important;
}
/* Remove WC clearfix pseudo-elements — they become stray grid items */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  content: none !important;
  display: none !important;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products > *,
.woocommerce-page ul.products > * {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  clear: none !important;
}

/* Pagination */
.woocommerce-pagination {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}
.woocommerce-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  transition: all var(--t);
}
.woocommerce-pagination ul.page-numbers li a:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-50); }
.woocommerce-pagination ul.page-numbers li span.current {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* No products found */
.woocommerce-no-products-found { padding: 48px 0; text-align: center; color: var(--muted); }

/* ── Product Detail Page ─────────────────────────────────── */
.gs-container > .woocommerce-breadcrumb { padding-top: clamp(16px, 3vw, 32px); }

.gs-pdp-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding: clamp(20px, 3vw, 36px) 0 clamp(32px, 5vw, 60px);
}

/* Gallery */
.gs-pdp-gallery { position: sticky; top: 80px; }

.woocommerce-product-gallery {
  width: 100% !important;
  float: none !important;
  margin-bottom: 0 !important;
}
.woocommerce-product-gallery__image {
  border: 0.8px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg-2);
}
.woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
}
.woocommerce-product-gallery .flex-control-thumbs {
  display: flex !important;
  gap: 8px !important;
  margin-top: 10px !important;
  padding: 0 !important;
  list-style: none !important;
}
.woocommerce-product-gallery .flex-control-thumbs li {
  flex: 0 0 72px !important;
  width: 72px !important;
  float: none !important;
}
.woocommerce-product-gallery .flex-control-thumbs li img {
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color var(--t);
  width: 72px;
  height: 72px;
  object-fit: cover;
}
.woocommerce-product-gallery .flex-control-thumbs li img.flex-active,
.woocommerce-product-gallery .flex-control-thumbs li img:hover { border-color: var(--brand); }

/* Product info column */
.gs-pdp-info { width: 100% !important; float: none !important; }

.gs-pdp-info .product_title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.gs-pdp-info .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.gs-pdp-info .star-rating {
  font-size: 14px !important;
  color: var(--warn) !important;
  width: auto !important;
}
.gs-pdp-info .woocommerce-review-link { font-size: 13px; color: var(--muted); }

.gs-pdp-info p.price,
.gs-pdp-info .price {
  font-family: var(--font-display);
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  margin-bottom: 18px !important;
}
.gs-pdp-info .price del { color: var(--muted) !important; font-size: 16px !important; font-weight: 400 !important; margin-right: 6px; }
.gs-pdp-info .price ins { text-decoration: none !important; color: var(--bad) !important; }

.gs-pdp-info .woocommerce-product-details__short-description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
  border-top: 1px solid var(--line-2);
  padding-top: 16px;
}

/* Variations */
.gs-pdp-info .variations { width: 100%; border: none; }
.gs-pdp-info .variations td, .gs-pdp-info .variations th { padding: 6px 0; }
.gs-pdp-info .variations .label label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.gs-pdp-info .variations select {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 14px;
  padding: 10px 32px 10px 12px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235b6577' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  transition: border-color var(--t);
}
.gs-pdp-info .variations select:focus { border-color: var(--brand); outline: none; }
.gs-pdp-info .reset_variations {
  font-size: 12px;
  color: var(--brand);
  text-decoration: underline;
  margin-top: 4px;
  display: inline-block;
}

/* Quantity + Add to cart */
.gs-pdp-info .cart {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.gs-pdp-info .quantity .qty {
  width: 72px;
  height: 46px;
  text-align: center;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg);
  transition: border-color var(--t);
}
.gs-pdp-info .quantity .qty:focus { border-color: var(--brand); outline: none; }
.gs-pdp-info .single_add_to_cart_button {
  flex: 1;
  height: 46px;
  background: var(--brand) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--r-sm) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background var(--t), box-shadow var(--t) !important;
  box-shadow: 0 4px 14px rgba(10,132,255,.25) !important;
  min-width: 160px;
}
.gs-pdp-info .single_add_to_cart_button:hover {
  background: var(--brand-600) !important;
  box-shadow: 0 6px 20px rgba(10,132,255,.35) !important;
}

/* Product meta */
.gs-pdp-info .product_meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gs-pdp-info .product_meta a { color: var(--brand); }
.gs-pdp-info .product_meta span { display: flex; gap: 4px; }

/* Trust badges row */
.gs-pdp-info .gs-pdp-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding: 14px;
  background: var(--bg-2);
  border-radius: var(--r-sm);
}
.gs-pdp-trust__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}
.gs-pdp-trust__item svg { color: var(--good); flex-shrink: 0; }

/* After-summary area (tabs, related, upsells) */
.gs-pdp-after { padding-bottom: clamp(40px, 6vw, 72px); }

.woocommerce-tabs {
  margin-top: 36px;
  margin-bottom: 36px;
}
.woocommerce-tabs ul.tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--line);
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}
.woocommerce-tabs ul.tabs li {
  margin: 0 !important;
  border: none !important;
  background: none !important;
  padding: 0 !important;
}
.woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--t), border-color var(--t);
}
.woocommerce-tabs ul.tabs li a:hover { color: var(--ink); }
.woocommerce-tabs ul.tabs li.active a {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.woocommerce-tabs .panel {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.woocommerce-tabs .panel h2 { display: none; }

/* Related products */
.related.products,
.up-sells.products { padding-top: 4px; }
.related.products > h2,
.up-sells.products > h2 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

/* ── Cart Page ───────────────────────────────────────────── */
.gs-cart-wrap { padding: clamp(24px, 4vw, 48px) 0 clamp(40px, 6vw, 72px); }

.gs-cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.gs-cart-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--muted);
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  grid-column: 1 / -1;
}

.gs-cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-2);
}
.gs-cart-item__img {
  width: 72px;
  height: 72px;
  border: 0.8px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--bg-2);
  flex-shrink: 0;
}
.gs-cart-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-cart-item__name a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  transition: color var(--t);
}
.gs-cart-item__name a:hover { color: var(--brand); }
.gs-cart-item__name .variation {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.gs-cart-item__unit-price {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
.gs-cart-item__qty .qty {
  width: 60px;
  height: 38px;
  text-align: center;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg);
  transition: border-color var(--t);
}
.gs-cart-item__qty .qty:focus { border-color: var(--brand); outline: none; }
.gs-cart-item__subtotal {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.gs-cart-item__remove-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border-radius: 6px;
  transition: color var(--t), background var(--t);
}
.gs-cart-item__remove-btn:hover { color: var(--bad); background: #fef2f2; }

.gs-cart-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 0;
}
.gs-cart-update-btn { font-size: 13px; padding: 8px 18px; }

.gs-coupon-row {
  display: flex;
  gap: 8px;
  padding: 14px 0 0;
  border-top: 1px solid var(--line-2);
  margin-top: 4px;
}
.gs-coupon-row__input {
  flex: 1;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 14px;
  padding: 10px 14px;
  transition: border-color var(--t);
}
.gs-coupon-row__input::placeholder { color: var(--muted); }
.gs-coupon-row__input:focus { border-color: var(--brand); outline: none; }

/* Cart totals sidebar */
.gs-cart-totals {
  background: var(--bg);
  border: 0.8px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  position: sticky;
  top: 80px;
}
.gs-cart-totals__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-2);
}
.cart_totals .shop_table { width: 100%; border: none; }
.cart_totals .shop_table th {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  padding: 8px 0;
  text-align: left;
  border: none;
}
.cart_totals .shop_table td {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  padding: 8px 0;
  text-align: right;
  border: none;
}
.cart_totals .shop_table .order-total th,
.cart_totals .shop_table .order-total td {
  font-size: 16px;
  font-weight: 700;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.cart_totals .wc-proceed-to-checkout { margin-top: 16px; }
.cart_totals .wc-proceed-to-checkout a.checkout-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--brand) !important;
  color: #fff !important;
  border-radius: var(--r-sm) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 13px 20px !important;
  transition: background var(--t), box-shadow var(--t) !important;
  box-shadow: 0 4px 14px rgba(10,132,255,.25) !important;
}
.cart_totals .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--brand-600) !important;
  box-shadow: 0 6px 20px rgba(10,132,255,.35) !important;
}
.cart_totals .shipping-calculator-button { font-size: 13px; color: var(--brand); text-decoration: underline; cursor: pointer; }
.cart_totals .woocommerce-shipping-calculator { margin-top: 10px; }
.cart_totals .woocommerce-shipping-calculator .form-row { margin-bottom: 8px; }
.cart_totals .woocommerce-shipping-calculator input, .cart_totals .woocommerce-shipping-calculator select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 9px 12px;
  font-size: 13.5px;
  color: var(--ink);
  background: var(--bg);
  transition: border-color var(--t);
}
.cart_totals .woocommerce-shipping-calculator input:focus,
.cart_totals .woocommerce-shipping-calculator select:focus { border-color: var(--brand); outline: none; }
.cart_totals .woocommerce-shipping-calculator button[type=submit] {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background var(--t);
}
.cart_totals .woocommerce-shipping-calculator button[type=submit]:hover { background: var(--brand-600); }

/* ── Checkout Page ───────────────────────────────────────── */
.gs-checkout-wrap { padding: clamp(24px, 4vw, 48px) 0 clamp(40px, 6vw, 72px); }

/* Step indicator */
.gs-checkout-steps {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.gs-checkout-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.gs-checkout-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all var(--t);
}
.gs-checkout-step--active .gs-checkout-step__num {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.gs-checkout-step--active .gs-checkout-step__label { color: var(--ink); }
.gs-checkout-step--done .gs-checkout-step__num {
  background: var(--good);
  border-color: var(--good);
  color: #fff;
}
.gs-checkout-step__sep {
  flex: 1;
  height: 1px;
  background: var(--line);
  margin: 0 12px;
  max-width: 60px;
}

/* Checkout 2-col layout */
.gs-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.gs-checkout-section {
  background: var(--bg);
  border: 0.8px solid var(--line);
  border-radius: var(--r);
  padding: 20px 24px;
  margin-bottom: 20px;
}
.gs-checkout-section__head { margin-bottom: 18px; border-bottom: 1px solid var(--line-2); padding-bottom: 14px; }
.gs-checkout-section__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.gs-checkout-section__title .input-checkbox { width: 16px; height: 16px; cursor: pointer; accent-color: var(--brand); }

/* WC form fields */
.woocommerce-billing-fields .form-row,
.woocommerce-shipping-fields .form-row,
.woocommerce-additional-fields .form-row {
  margin-bottom: 14px;
}
.woocommerce form .form-row label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 5px;
}
.woocommerce form .form-row .required { color: var(--bad); }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--line) !important;
  border-radius: var(--r-sm) !important;
  color: var(--ink);
  font-size: 14px;
  padding: 10px 14px !important;
  transition: border-color var(--t), box-shadow var(--t);
  height: auto !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--brand) !important;
  box-shadow: 0 0 0 3px rgba(10,132,255,.10) !important;
  outline: none;
}
.woocommerce form .form-row.form-row-wide,
.woocommerce form .form-row.form-row-first,
.woocommerce form .form-row.form-row-last { float: none !important; width: 100% !important; clear: none !important; }

/* Two-col name fields */
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}
.woocommerce-billing-fields__field-wrapper .form-row.form-row-wide,
.woocommerce-shipping-fields__field-wrapper .form-row.form-row-wide { grid-column: 1 / -1; }

/* Order review */
.woocommerce-checkout-review-order .shop_table { width: 100%; border: none; }
.woocommerce-checkout-review-order .shop_table th {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 8px 0;
  border: none !important;
}
.woocommerce-checkout-review-order .shop_table td {
  font-size: 13.5px;
  color: var(--ink);
  padding: 8px 0;
  border: none !important;
  border-bottom: 1px solid var(--line-2) !important;
}
.woocommerce-checkout-review-order .shop_table .product-name { font-weight: 500; }
.woocommerce-checkout-review-order .shop_table .product-total { text-align: right; font-weight: 600; }
.woocommerce-checkout-review-order .shop_table .cart-subtotal td,
.woocommerce-checkout-review-order .shop_table .shipping td,
.woocommerce-checkout-review-order .shop_table .tax-rate td,
.woocommerce-checkout-review-order .shop_table .order-total td { border-bottom: none !important; }
.woocommerce-checkout-review-order .shop_table .order-total th,
.woocommerce-checkout-review-order .shop_table .order-total td {
  font-size: 16px;
  font-weight: 700;
  border-top: 1px solid var(--line) !important;
  padding-top: 12px;
}
.woocommerce-checkout-review-order .shop_table .cart-subtotal th,
.woocommerce-checkout-review-order .shop_table .shipping th,
.woocommerce-checkout-review-order .shop_table .order-total th {
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
}
.woocommerce-checkout-review-order .shop_table td,
.woocommerce-checkout-review-order .shop_table th { text-align: right; }
.woocommerce-checkout-review-order .shop_table th:first-child,
.woocommerce-checkout-review-order .shop_table td.product-name { text-align: left; }

/* Payment methods */
.woocommerce-checkout #payment {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.woocommerce-checkout #payment .wc_payment_methods { list-style: none; margin-bottom: 14px; }
.woocommerce-checkout #payment .wc_payment_method {
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color var(--t);
}
.woocommerce-checkout #payment .wc_payment_method:has(input:checked) { border-color: var(--brand); background: var(--brand-50); }
.woocommerce-checkout #payment .wc_payment_method > label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.woocommerce-checkout #payment .wc_payment_method > label input[type=radio] { accent-color: var(--brand); }
.woocommerce-checkout #payment .payment_box {
  padding: 10px 14px 14px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line-2);
}
.woocommerce-checkout #payment .place-order { padding: 0; margin-top: 16px; }
.woocommerce-checkout #payment #place_order {
  width: 100%;
  background: var(--brand) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--r-sm) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 14px 20px !important;
  cursor: pointer !important;
  transition: background var(--t), box-shadow var(--t) !important;
  box-shadow: 0 4px 14px rgba(10,132,255,.25) !important;
}
.woocommerce-checkout #payment #place_order:hover {
  background: var(--brand-600) !important;
  box-shadow: 0 6px 20px rgba(10,132,255,.35) !important;
}

/* Privacy policy notice */
.woocommerce-checkout .woocommerce-privacy-policy-text { font-size: 12px; color: var(--muted); margin-bottom: 12px; text-align: center; }
.woocommerce-checkout .woocommerce-privacy-policy-text a { color: var(--brand); }

/* ── Generic / Search / Blog ────────────────────────────── */
.gs-generic-wrap { padding: clamp(24px, 4vw, 48px) 0 clamp(40px, 6vw, 72px); }

.gs-generic-header { margin-bottom: 28px; }
.gs-generic-header .gs-page-title span { color: var(--brand); }

.gs-generic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.gs-post-card {
  background: var(--bg);
  border: 0.8px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.gs-post-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.gs-post-card__thumb { display: block; overflow: hidden; aspect-ratio: 3/2; }
.gs-post-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gs-post-card__thumb:hover .gs-post-card__img { transform: scale(1.04); }

.gs-post-card__body { padding: 18px 20px; }
.gs-post-card__cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); }
.gs-post-card__title {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 8px 0 10px;
  line-height: 1.35;
  transition: color var(--t);
}
.gs-post-card__title:hover { color: var(--brand); }
.gs-post-card__excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

.gs-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.gs-empty-state p { font-size: 16px; }

/* WP pagination */
.nav-links {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-top: 40px;
}
.nav-links a,
.nav-links span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  transition: all var(--t);
}
.nav-links a:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-50); }
.nav-links .current { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ── My Account Page ─────────────────────────────────────── */
.woocommerce-account .woocommerce { padding: clamp(24px, 4vw, 48px) 0 clamp(40px, 6vw, 72px); }

.woocommerce-MyAccount-navigation {
  background: var(--bg);
  border: 0.8px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.woocommerce-MyAccount-navigation ul { list-style: none; }
.woocommerce-MyAccount-navigation ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-left: 3px solid transparent;
  transition: color var(--t), background var(--t), border-color var(--t);
}
.woocommerce-MyAccount-navigation ul li a:hover {
  color: var(--brand);
  background: var(--brand-50);
  border-left-color: var(--brand);
}
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--is-active a {
  color: var(--brand);
  background: var(--brand-50);
  border-left-color: var(--brand);
  font-weight: 600;
}
.woocommerce-MyAccount-navigation ul li + li {
  border-top: 1px solid var(--line-2);
}

.woocommerce-MyAccount-content { flex: 1; min-width: 0; }

.woocommerce-account .woocommerce-column--billing-address,
.woocommerce-account .woocommerce-column--shipping-address {
  background: var(--bg);
  border: 0.8px solid var(--line);
  border-radius: var(--r);
  padding: 20px 24px;
}
.woocommerce-account .woocommerce-column__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-2);
}

/* Login / Register forms */
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
  background: var(--bg);
  border: 0.8px solid var(--line);
  border-radius: var(--r);
  padding: clamp(24px, 4vw, 40px);
  max-width: 480px;
}
.woocommerce-account .woocommerce-form-login__rememberme {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
}
.woocommerce-account .lost_password { font-size: 13px; color: var(--muted); }
.woocommerce-account .lost_password a { color: var(--brand); }

/* Orders table */
.woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-orders-table thead th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  padding: 10px 14px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.woocommerce-orders-table thead th:first-child { border-radius: var(--r-sm) 0 0 0; }
.woocommerce-orders-table thead th:last-child  { border-radius: 0 var(--r-sm) 0 0; }
.woocommerce-orders-table tbody td {
  padding: 12px 14px;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
  vertical-align: middle;
}
.woocommerce-orders-table tbody tr:last-child td { border-bottom: none; }
.woocommerce-orders-table .woocommerce-orders-table__cell-order-status .woocommerce-order-status {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.woocommerce-orders-table .woocommerce-button { font-size: 13px; }

/* Order status badges */
.wc-processing, mark.order-status.processing { background: var(--brand-50); color: var(--brand); }
.wc-completed,  mark.order-status.completed  { background: #dcfce7; color: var(--good); }
.wc-cancelled,  mark.order-status.cancelled  { background: #fee2e2; color: var(--bad); }
.wc-on-hold,    mark.order-status.on-hold    { background: #fef9c3; color: #854d0e; }
.wc-pending,    mark.order-status.pending    { background: var(--bg-3); color: var(--muted); }
mark.order-status { padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }

/* Account layout */
.woocommerce-account .woocommerce {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.woocommerce-account .woocommerce-MyAccount-navigation { width: 220px; flex-shrink: 0; }

/* Edit account / password form fields */
.woocommerce-account .woocommerce-EditAccountForm .form-row,
.woocommerce-account .woocommerce-address-fields .form-row {
  margin-bottom: 14px;
}
.woocommerce-account .woocommerce-EditAccountForm .form-row label,
.woocommerce-account .woocommerce-address-fields .form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 5px;
}
.woocommerce-account .woocommerce-EditAccountForm .form-row input,
.woocommerce-account .woocommerce-address-fields .form-row input,
.woocommerce-account .woocommerce-EditAccountForm .form-row select,
.woocommerce-account .woocommerce-address-fields .form-row select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 10px 13px;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  transition: border-color var(--t);
}
.woocommerce-account .woocommerce-EditAccountForm .form-row input:focus,
.woocommerce-account .woocommerce-address-fields .form-row input:focus,
.woocommerce-account .woocommerce-EditAccountForm .form-row select:focus,
.woocommerce-account .woocommerce-address-fields .form-row select:focus {
  border-color: var(--brand);
  outline: none;
}
.woocommerce-account .woocommerce-EditAccountForm fieldset {
  border: 0.8px solid var(--line);
  border-radius: var(--r);
  padding: 18px 20px;
  margin-top: 20px;
}
.woocommerce-account .woocommerce-EditAccountForm fieldset legend {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  padding: 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.woocommerce-account .woocommerce-Button,
.woocommerce-account button[type=submit] {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t), box-shadow var(--t);
  box-shadow: 0 4px 14px rgba(10,132,255,.2);
}
.woocommerce-account .woocommerce-Button:hover,
.woocommerce-account button[type=submit]:hover {
  background: var(--brand-600);
  box-shadow: 0 6px 20px rgba(10,132,255,.3);
}

/* Dashboard notice box */
.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.woocommerce-account .woocommerce-MyAccount-content > p:first-child a { color: var(--brand); }

/* ── Responsive — WC pages ───────────────────────────────── */
@media (max-width: 1024px) {
  .gs-shop-layout         { grid-template-columns: 200px 1fr; }
  .gs-checkout-layout     { grid-template-columns: 1fr 320px; }
  .gs-cart-layout         { grid-template-columns: 1fr 300px; }
}

@media (max-width: 900px) {
  .gs-pdp-main            { grid-template-columns: 1fr; }
  .gs-pdp-gallery         { position: static; }
}

@media (max-width: 768px) {
  .gs-shop-layout         { grid-template-columns: 1fr; }
  .gs-shop-sidebar        { position: static; display: none; }
  .gs-shop-sidebar.is-open { display: block; margin-bottom: 20px; }
  .gs-filter-toggle       { display: inline-flex; }
  /* Shop page — 2 columns on mobile (overrides the global 4-col rule) */
  .gs-shop-main ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    flex-wrap: unset !important;
    overflow-x: unset !important;
  }
  .gs-shop-main ul.products > * {
    flex: unset !important;
    width: auto !important;
    scroll-snap-align: unset !important;
  }
  .gs-checkout-layout     { grid-template-columns: 1fr; }
  .gs-checkout-aside      { order: -1; }
  .gs-cart-layout         { grid-template-columns: 1fr; }
  .gs-cart-totals         { position: static; }
  .gs-cart-item           { grid-template-columns: 60px 1fr auto; grid-template-rows: auto auto; }
  .gs-cart-item__unit-price { display: none; }
  .gs-cart-item__remove   { grid-row: 1; grid-column: 3; }
  .gs-cart-item__qty      { grid-column: 2; }
  .gs-cart-item__subtotal { grid-column: 3; grid-row: 2; }
  .woocommerce-billing-fields__field-wrapper,
  .woocommerce-shipping-fields__field-wrapper { grid-template-columns: 1fr; }
  .woocommerce-account .woocommerce { flex-direction: column; }
  .woocommerce-account .woocommerce-MyAccount-navigation { width: 100%; }
}

@media (max-width: 480px) {
  .gs-checkout-steps      { display: none; }
  .gs-checkout-section    { padding: 16px; }
  /* Shop page — single column on very small phones */
  .gs-shop-main ul.products { grid-template-columns: 1fr !important; }
  .gs-cart-item           { grid-template-columns: 56px 1fr; gap: 10px; }
  .gs-cart-item__remove   { grid-column: 2; grid-row: 1; justify-self: end; }
  .gs-cart-item__qty      { grid-column: 2; grid-row: 2; }
  .gs-cart-item__subtotal { grid-column: 2; grid-row: 3; }
}

/* ==========================================================
   Blog Page  (home.php)
   ========================================================== */

.gs-blog-wrap { padding: clamp(32px, 5vw, 56px) 0 clamp(56px, 8vw, 96px); }

/* Shared eyebrow */
.gs-blog-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

/* ── Hero ───────────────────────────────────────────────── */
.gs-blog-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}
.gs-blog-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 24px;
}

/* Category filter pills */
.gs-blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gs-blog-cat {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
  color: var(--muted);
  background: var(--bg-2);
  border: 1.5px solid transparent;
  transition: all var(--t);
}
.gs-blog-cat:hover { color: var(--ink); border-color: var(--line); }
.gs-blog-cat.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Featured article card */
.gs-blog-featured {
  display: flex;
  flex-direction: column;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: box-shadow var(--t), transform var(--t);
}
.gs-blog-featured:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.gs-blog-featured__img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-2);
}
.gs-blog-featured__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gs-blog-featured:hover .gs-blog-featured__photo { transform: scale(1.03); }
.gs-blog-featured__placeholder { width: 100%; height: 100%; background: var(--bg-2); }

.gs-blog-featured__pill {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 10px;
  border-radius: 100px;
}
.gs-blog-featured__body { padding: 20px 22px 24px; }
.gs-blog-featured__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 10px;
  transition: color var(--t);
}
.gs-blog-featured:hover .gs-blog-featured__title { color: var(--brand); }
.gs-blog-featured__excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Blog meta (shared: featured + cards) */
.gs-blog-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.gs-blog-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gs-blog-meta__author,
.gs-blog-meta__date,
.gs-blog-meta__read { font-size: 12px; color: var(--muted); }
.gs-blog-meta__sep { font-size: 10px; color: var(--line); }

/* ── Latest section ─────────────────────────────────────── */
.gs-blog-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.gs-blog-section__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  color: var(--ink);
  margin-top: 4px;
}
.gs-blog-all-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  white-space: nowrap;
  transition: color var(--t);
}
.gs-blog-all-link:hover { color: var(--brand-dark); }

/* ── Blog grid ──────────────────────────────────────────── */
.gs-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Blog card */
.gs-blog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: box-shadow var(--t), transform var(--t);
}
.gs-blog-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.gs-blog-card__img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--bg-2);
}
.gs-blog-card__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gs-blog-card:hover .gs-blog-card__photo { transform: scale(1.04); }
.gs-blog-card__placeholder { width: 100%; height: 100%; background: var(--bg-2); }

.gs-blog-card__cat {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--bg);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.gs-blog-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.gs-blog-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  transition: color var(--t);
}
.gs-blog-card:hover .gs-blog-card__title { color: var(--brand); }
.gs-blog-card__excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

/* ── Blog responsive ────────────────────────────────────── */
@media (max-width: 960px) {
  .gs-blog-hero { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .gs-blog-featured { display: none; }
  .gs-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gs-blog-grid { grid-template-columns: 1fr; }
  .gs-blog-section__head { flex-direction: column; align-items: flex-start; gap: 4px; }
  .gs-blog-all-link { align-self: flex-start; }
}

/* ==========================================================
   Cart Page redesign  (new .gs-cart-line layout)
   ========================================================== */

/* Page heading */
.gs-cart-header { margin-bottom: 28px; }
.gs-cart-header__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  color: var(--ink);
}
.gs-cart-header__meta {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Shipping progress bar */
.gs-cart-shipping {
  background: var(--brand-50);
  border-radius: var(--r);
  padding: 14px 18px;
  margin-bottom: 20px;
}
.gs-cart-shipping__text {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 10px;
}
.gs-cart-shipping__track {
  height: 6px;
  background: #fff;
  border-radius: 100px;
  overflow: hidden;
}
.gs-cart-shipping__fill {
  height: 100%;
  background: var(--brand);
  border-radius: 100px;
  transition: width 0.5s ease;
}

/* Cart line item */
.gs-cart-line {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-2);
}
.gs-cart-line__img {
  width: 80px; height: 80px;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  position: relative;
  flex-shrink: 0;
}
.gs-cart-line__img img,
.gs-cart-line__img a img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gs-cart-line__badge {
  position: absolute;
  top: 4px; left: 4px;
  background: var(--bad);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 5px;
  border-radius: 4px;
  line-height: 1.4;
}

.gs-cart-line__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.gs-cart-line__platform {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}
.gs-cart-line__name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.gs-cart-line__name a { color: inherit; transition: color var(--t); }
.gs-cart-line__name a:hover { color: var(--brand); }

.gs-cart-line__opts { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.gs-cart-line__opt {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-2);
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 12px;
  color: var(--ink-2);
}
.gs-cart-line__opt-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.gs-cart-line__stock {
  font-size: 12px;
  color: var(--good);
  display: flex;
  align-items: center;
  gap: 5px;
}
.gs-cart-line__stock::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--good);
  flex-shrink: 0;
}

.gs-cart-line__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.gs-cart-line__price { text-align: right; }
.gs-cart-line__was {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 1px;
}
.gs-cart-line__current {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

/* Qty stepper */
.gs-qty-stepper {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  height: 36px;
  width: 106px;
}
.gs-qty-btn {
  width: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  color: var(--ink-2);
  background: var(--bg);
  flex-shrink: 0;
  transition: background var(--t), color var(--t);
}
.gs-qty-btn:hover { background: var(--bg-2); color: var(--brand); }
.gs-qty-input {
  flex: 1;
  text-align: center;
  border: none;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg);
  min-width: 0;
  -moz-appearance: textfield;
}
.gs-qty-input::-webkit-outer-spin-button,
.gs-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.gs-qty-input:focus { outline: none; }

.gs-cart-line__remove {
  color: var(--muted);
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  transition: color var(--t), background var(--t);
}
.gs-cart-line__remove:hover { color: var(--bad); background: #fef2f2; }

/* Summary card */
.gs-cart-summary {
  position: sticky;
  top: 100px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
}
.gs-cart-summary__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 4px;
}

/* Totals rows */
.gs-cart-totals-rows { margin-bottom: 4px; }
.gs-cart-totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--ink-2);
  padding: 7px 0;
}
.gs-cart-totals-row--total {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--line);
}
.gs-cart-totals-row__free { color: var(--good); font-weight: 600; }
.gs-cart-totals-row__discount { color: var(--bad); font-weight: 500; }

/* Btn size variant */
.gs-btn--sm { padding: 9px 16px; font-size: 13px; }

/* Checkout button */
.gs-cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: var(--brand);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: var(--r-sm);
  text-align: center;
  transition: background var(--t), box-shadow var(--t), transform .15s;
  box-shadow: 0 4px 14px rgba(10,132,255,.22);
  margin-top: 20px;
  margin-bottom: 18px;
}
.gs-cart-checkout-btn:hover {
  background: var(--brand-600);
  box-shadow: 0 6px 20px rgba(10,132,255,.34);
  transform: translateY(-1px);
  color: #fff !important;
}
.gs-cart-checkout-btn__sep { opacity: 0.6; }

/* Payment chips */
.gs-cart-pay {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.gs-cart-pay__label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-right: 2px;
}
.gs-cart-pay__chip {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 3px 7px;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-2);
}

/* Trust badges */
.gs-cart-trust { display: flex; flex-direction: column; gap: 8px; }
.gs-cart-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}
.gs-cart-trust__item svg { color: var(--brand); flex-shrink: 0; }

/* ── Cart new responsive ─────────────────────────────────── */
@media (max-width: 768px) {
  .gs-cart-summary { position: static; }
  .gs-cart-line { grid-template-columns: 72px 1fr; }
  .gs-cart-line__right {
    grid-column: 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .gs-cart-line { grid-template-columns: 64px 1fr; gap: 12px; }
  .gs-cart-line__img { width: 64px; height: 64px; }
}

/* =========================================================
   Login / Register  &  My Account  —  custom layout
   ========================================================= */

/* ── Token additions ──────────────────────────────────────── */
:root {
  --font-mono: "JetBrains Mono", "Courier New", monospace;
}

/* ── Reset WooCommerce's old account flex layout ─────────── */
.woocommerce-account .woocommerce { display: block; }
.woocommerce-account .woocommerce-MyAccount-navigation { width: auto; }
.woocommerce-account .gs-container { padding-inline: 0; }

/* =========================================================
   LOGIN / REGISTER
   ========================================================= */
.gs-login-shell {
  background: var(--bg-2);
  min-height: calc(100vh - 140px);
}
.gs-login-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 140px);
  max-width: 1320px;
  margin-inline: auto;
  padding: 32px;
  gap: 32px;
}

/* Brand panel */
.gs-login-brand {
  background: linear-gradient(155deg, #0b1320 0%, #0857a8 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.gs-login-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 320px at 110% -20%, rgba(10,132,255,.55), transparent 60%),
    radial-gradient(500px 360px at -20% 110%, rgba(10,132,255,.32), transparent 60%);
  pointer-events: none;
}
.gs-login-brand-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.gs-login-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.gs-login-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #fff; text-decoration: none; }
.gs-login-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 32px 0 16px;
  width: fit-content;
}
.gs-login-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 99px;
  background: var(--brand);
  box-shadow: 0 0 6px var(--brand);
}
.gs-login-brand h1 {
  color: #fff;
  font-size: 52px;
  line-height: 1.04;
  margin-bottom: 14px;
}
.gs-login-accent { color: #5dade2; }
.gs-login-brand p { color: rgba(255,255,255,.75); font-size: 15px; max-width: 360px; margin-bottom: 28px; }
.gs-login-visual {
  flex: 1;
  min-height: 180px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  overflow: hidden;
}
.gs-login-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.gs-login-stat { display: flex; flex-direction: column; gap: 3px; }
.gs-login-stat-n { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: #fff; }
.gs-login-stat-l { font-size: 11px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }

/* Form panel */
.gs-login-panel {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Tab switcher */
.gs-login-tabs {
  display: flex;
  background: var(--bg-2);
  border-radius: 999px;
  padding: 4px;
  position: relative;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.gs-login-tab {
  flex: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 11px 16px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
  position: relative;
  z-index: 1;
  transition: color var(--t);
}
.gs-login-tab.active { color: var(--ink); }
.gs-login-indicator {
  position: absolute;
  top: 4px; left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease;
  pointer-events: none;
}

/* Panes */
.gs-login-pane { display: flex; flex-direction: column; flex: 1; overflow: hidden; }
.gs-pane-hidden { display: none; }

/* Form inner */
.gs-lf { display: flex; flex-direction: column; gap: 14px; }
.gs-lf h2 { font-size: 28px; line-height: 1.15; }
.gs-lf-sub { color: var(--muted); font-size: 14px; }
.gs-lf-hint { color: var(--muted); font-size: 12px; margin-top: -4px; }
.gs-lf-form { display: flex; flex-direction: column; gap: 14px; }

/* Google button */
.gs-btn-google {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
  text-decoration: none;
}
.gs-btn-google:hover { border-color: var(--ink-2); background: var(--bg-2); }
.gs-btn-google--disabled { opacity: .55; pointer-events: none; cursor: default; }

/* Divider */
.gs-login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-family: var(--font-mono);
  margin: 2px 0;
}
.gs-login-divider::before, .gs-login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Fields */
.gs-field { display: flex; flex-direction: column; gap: 6px; }
.gs-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gs-field input,
.gs-lf-form input.input-text {
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border var(--t);
  background: #fff;
  width: 100%;
}
.gs-field input:focus,
.gs-lf-form input.input-text:focus { border-color: var(--brand); }
.gs-lf-forgot { font-size: 12px; color: var(--brand); text-decoration: none; font-weight: 500; }
.gs-lf-forgot:hover { text-decoration: underline; }

/* Two-column field grid (register name row) */
.gs-field-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Password wrapper */
.gs-pwd-wrap { position: relative; }
.gs-pwd-wrap input { padding-right: 48px; }
.gs-eye-btn {
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border: none; background: none;
  display: grid; place-items: center;
  color: var(--muted);
  cursor: pointer;
  border-radius: 99px;
  padding: 0;
  transition: background var(--t), color var(--t);
}
.gs-eye-btn:hover { background: var(--bg-2); color: var(--ink); }

/* Remember-me / checkbox */
.gs-remember-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
}
.gs-remember-label input[type="checkbox"] { display: none; }
.gs-checkbox {
  width: 18px; height: 18px;
  border: 1.5px solid var(--brand);
  border-radius: 5px;
  background: var(--brand);
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.gs-checkbox::after {
  content: "";
  width: 5px; height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

/* Submit button helpers */
.gs-btn-full { width: 100%; justify-content: center; }
.gs-btn-lg { padding: 15px 22px; font-size: 15px; }
.gs-btn-primary {
  background: var(--brand);
  color: #fff;
  border: none;
}
.gs-btn-primary:hover { background: var(--brand-600); }
.gs-btn-ghost {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--ink);
}
.gs-btn-ghost:hover { border-color: var(--ink-2); background: var(--bg-2); }

/* Switch & trust row */
.gs-login-switch { text-align: center; font-size: 13px; color: var(--muted); }
.gs-login-switch a, .gs-switch-tab { color: var(--brand); font-weight: 600; cursor: pointer; text-decoration: none; }
.gs-login-switch a:hover, .gs-switch-tab:hover { text-decoration: underline; }
.gs-login-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: 11px;
  color: var(--muted);
}
.gs-login-trust span { display: inline-flex; align-items: center; gap: 5px; }
.gs-login-trust svg { color: var(--good); }
.gs-trust-sep { opacity: .4; }

/* ── Login responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .gs-login-wrap { grid-template-columns: 1fr; padding: 16px; gap: 0; min-height: auto; }
  .gs-login-brand { display: none; }
  .gs-login-panel { padding: 28px 24px; border-radius: var(--r); box-shadow: none; }
  .gs-login-shell { background: #fff; min-height: auto; }
  .gs-login-brand h1 { font-size: 36px; }
}
@media (max-width: 480px) {
  .gs-login-panel { padding: 22px 18px; }
  .gs-lf h2 { font-size: 24px; }
  .gs-field-grid-2 { grid-template-columns: 1fr; }
}

/* =========================================================
   MY ACCOUNT — sidebar layout
   ========================================================= */
.gs-ma-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  padding: 16px clamp(16px, 4vw, 48px) 64px;
  max-width: 1320px;
  margin-inline: auto;
}
.woocommerce-account .woocommerce-MyAccount-content,
.gs-ma-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Sidebar */
.gs-ma-side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  position: sticky;
  top: 24px;
  height: fit-content;
  align-self: start;
}

/* Nav wrap — resets WooCommerce nav ul defaults */
.gs-ma-nav-wrap { display: flex; flex-direction: column; gap: 0; }
.gs-ma-nav-wrap ul { list-style: none; margin: 0; padding: 0; }

/* User identity */
.gs-ma-user {
  display: flex;
  gap: 12px;
  padding: 6px 6px 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.gs-ma-avatar {
  width: 48px; height: 48px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand) 0%, #5dade2 100%);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}
.gs-ma-user-info { min-width: 0; }
.gs-ma-user-name { font-family: var(--font-display); font-weight: 600; font-size: 16px; line-height: 1.1; }
.gs-ma-user-email { font-size: 12px; color: var(--muted); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gs-ma-user-since { font-family: var(--font-mono); font-size: 10px; color: var(--brand); letter-spacing: .1em; margin-top: 5px; }

/* Nav items */
.gs-ma-nav { display: flex; flex-direction: column; gap: 2px; }
.gs-ma-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: background var(--t), color var(--t);
  position: relative;
}
.gs-ma-nav-item:hover { background: var(--bg-2); }
.gs-ma-nav-item.active { background: var(--brand-50); color: var(--brand-dark); font-weight: 600; }
.gs-ma-nav-item.active svg { color: var(--brand); }
.gs-ma-nav-item svg { color: var(--muted); flex-shrink: 0; }
.gs-ma-nav-badge {
  margin-left: auto;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
  font-family: var(--font-mono);
  line-height: 1.4;
}
.gs-ma-nav-logout { color: var(--bad) !important; }
.gs-ma-nav-logout svg { color: var(--bad) !important; }
.gs-ma-nav-logout:hover { background: #fef2f2 !important; }

/* Navigation list item wrapper — remove default styles */
.gs-ma-nav-wrap li { margin: 0; padding: 0; }
.gs-ma-nav-wrap li + li { margin-top: 0; }

/* Nav divider (added by WooCommerce before logout) */
.gs-ma-nav-divider { height: 1px; background: var(--line); margin: 10px 0; }

/* Help block */
.gs-ma-side-help {
  padding: 14px;
  margin-top: 18px;
  background: var(--bg-2);
  border-radius: var(--r-sm);
  font-size: 12px;
}
.gs-ma-side-help > div {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.gs-ma-side-help svg { color: var(--brand); }
.gs-ma-side-help a {
  display: block;
  color: var(--brand);
  text-decoration: none;
  padding: 3px 0;
  font-weight: 500;
}
.gs-ma-side-help a:hover { text-decoration: underline; }

/* ── Dashboard content ──────────────────────────────────── */
.gs-ma-welcome {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.gs-ma-welcome h2 { font-size: 30px; line-height: 1.15; margin-top: 4px; }
.gs-ma-welcome p { color: var(--muted); font-size: 14px; margin-top: 6px; }
.gs-ma-welcome-actions { display: flex; gap: 8px; flex-shrink: 0; }
.gs-ma-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Stats */
.gs-ma-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gs-ma-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
}
.gs-ma-stat-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.gs-ma-stat-num { font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1; }
.gs-ma-stat-num .woocommerce-Price-amount { font-family: inherit; font-weight: inherit; font-size: inherit; }
.gs-ma-stat-lbl { font-size: 13px; color: var(--muted); margin-top: 6px; }
.gs-ma-stat-trend { font-family: var(--font-mono); font-size: 10px; color: var(--muted); margin-top: 10px; letter-spacing: .05em; text-transform: uppercase; }
.gs-ma-stat-xp {
  background: linear-gradient(155deg, var(--ink) 0%, #0857a8 100%);
  color: #fff;
  border-color: var(--ink);
}
.gs-ma-stat-xp .gs-ma-stat-lbl { color: rgba(255,255,255,.7); }
.gs-ma-stat-bar {
  margin-top: 10px;
  height: 5px;
  background: rgba(255,255,255,.12);
  border-radius: 99px;
  overflow: hidden;
}
.gs-ma-stat-bar .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand) 0%, #5dade2 100%);
  border-radius: 99px;
}

/* Cards */
.gs-ma-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
}
.gs-ma-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}
.gs-ma-card-head h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; }
.gs-ma-view-all { color: var(--brand); font-size: 13px; font-weight: 600; text-decoration: none; white-space: nowrap; }
.gs-ma-view-all:hover { text-decoration: underline; }

/* Two-col layout */
.gs-ma-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Address */
.gs-ma-address { font-size: 14px; color: var(--ink-2); line-height: 1.75; font-style: normal; }
.gs-ma-address-name { font-weight: 600; color: var(--ink); display: block; }
.gs-ma-empty-addr { font-size: 13px; color: var(--muted); }
.gs-ma-empty-addr a { color: var(--brand); font-weight: 600; text-decoration: none; }
.gs-ma-empty-addr a:hover { text-decoration: underline; }
.gs-ma-empty-msg { font-size: 14px; color: var(--muted); }
.gs-ma-empty-msg a { color: var(--brand); font-weight: 600; text-decoration: none; }

/* Orders table */
.gs-ma-table-wrap { overflow-x: auto; }
.gs-ma-table { width: 100%; border-collapse: collapse; }
.gs-ma-table th {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: left;
  font-weight: 600;
  padding: 0 12px 12px;
  border-bottom: 1px solid var(--line);
}
.gs-ma-table th:first-child { padding-left: 0; }
.gs-ma-table th:last-child { padding-right: 0; text-align: right; }
.gs-ma-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line-2);
  font-size: 13.5px;
  vertical-align: middle;
}
.gs-ma-table td:first-child { padding-left: 0; }
.gs-ma-table td:last-child { padding-right: 0; text-align: right; }
.gs-ma-table tr:last-child td { border-bottom: none; }
.gs-ma-table tr:hover td { background: var(--bg-2); }
.gs-ma-row-link { color: var(--brand); font-weight: 600; text-decoration: none; font-size: 13px; }
.gs-ma-row-link:hover { text-decoration: underline; }

/* Status badge */
.gs-ma-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.gs-ma-dot { width: 6px; height: 6px; border-radius: 99px; flex-shrink: 0; }

/* Mono helper */
.gs-mono { font-family: var(--font-mono); font-size: .9em; }

/* Address card — formatted address from WooCommerce */
.gs-ma-address address,
.gs-ma-address { font-style: normal; }
.gs-ma-address br + br { display: none; } /* collapse double line-breaks WC sometimes outputs */

/* Empty address inline state */
.gs-ma-address-empty-inline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.gs-ma-address-empty-inline p { font-size: 13px; color: var(--muted); margin: 0; }
.gs-btn-sm { padding: 7px 14px; font-size: 12px; }

/* ── Account responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .gs-ma-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .gs-ma-layout { grid-template-columns: 1fr; padding: 12px 16px 32px; gap: 14px; }
  .gs-ma-side { position: static; padding: 14px; }
  .gs-ma-side-help { display: none; }
  .gs-ma-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .gs-ma-nav li { display: contents; }
  .gs-ma-nav-item { flex-direction: column; gap: 4px; font-size: 11px; padding: 10px 6px; text-align: center; justify-content: center; }
  .gs-ma-nav-badge { position: absolute; top: 4px; right: 4px; margin: 0; padding: 1px 5px; font-size: 9px; }
  .gs-ma-nav-logout { grid-column: 1 / -1; flex-direction: row; justify-content: center; font-size: 13px; }
  .gs-ma-welcome h2 { font-size: 24px; }
  .gs-ma-two-col { grid-template-columns: 1fr; }
  .gs-hide-sm { display: none; }
}
@media (max-width: 480px) {
  .gs-ma-stats { grid-template-columns: 1fr 1fr; }
  .gs-ma-card { padding: 16px; }
}


/* ================================================================
   ABOUT US PAGE  (page-about.php)
   ================================================================ */

/* ── Shared eyebrow label ───────────────────────────────────── */
.gs-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}

/* ── Photo stub (placeholder for missing images) ────────────── */
.gs-photo-stub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: var(--bg-2);
  border: 2px dashed var(--line);
  border-radius: var(--r-lg);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.gs-photo-stub--sm { min-height: 220px; border-radius: var(--r); }
.gs-photo-stub--map { min-height: 240px; border-radius: var(--r); }

/* ── Hero ───────────────────────────────────────────────────── */
.gs-about-hero {
  padding: 72px 0 0;
  overflow: hidden;
}
.gs-about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 64px;
}
.gs-about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.gs-about-hero__title em {
  font-style: normal;
  color: var(--brand);
}
.gs-about-hero__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}
.gs-about-hero__media { position: relative; }
.gs-about-hero__photo-placeholder { border-radius: var(--r-lg); overflow: hidden; }
.gs-about-hero__photo { width: 100%; height: auto; border-radius: var(--r-lg); display: block; }

/* ── Milestones strip ───────────────────────────────────────── */
.gs-about-milestones {
  background: var(--ink);
  padding: 28px 0;
}
.gs-about-milestones__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.gs-about-milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 40px;
}
.gs-about-milestone--sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
  padding: 0;
}
.gs-about-milestone__year {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--brand);
}
.gs-about-milestone__label {
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

/* ── Stats ──────────────────────────────────────────────────── */
.gs-about-stats {
  padding: 64px 0;
  background: var(--bg-2);
}
.gs-about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.gs-about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 36px 24px;
  background: var(--bg);
  text-align: center;
}
.gs-about-stat:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.gs-about-stat:last-child  { border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.gs-about-stat__num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.03em;
}
.gs-about-stat__plus { color: var(--brand); }
.gs-about-stat__star { color: var(--warn); }
.gs-about-stat__label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 120px;
}

/* ── Mission ────────────────────────────────────────────────── */
.gs-about-mission {
  padding: 80px 0;
}
.gs-about-mission__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.gs-about-mission__statement {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.gs-about-mission__body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}
.gs-about-pillar {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.gs-about-pillar:first-child { border-top: 1px solid var(--line); }
.gs-about-pillar__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}
.gs-about-pillar__title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.gs-about-pillar__body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Quote pull ─────────────────────────────────────────────── */
.gs-about-quote {
  background: var(--brand-50);
  border-top: 1px solid var(--brand-100);
  border-bottom: 1px solid var(--brand-100);
  padding: 48px 0;
}
.gs-about-quote__inner {
  text-align: center;
}
.gs-about-quote__stars {
  font-size: 18px;
  color: var(--warn);
  letter-spacing: .15em;
  margin-bottom: 16px;
}
.gs-about-quote__text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.gs-about-quote__cite {
  font-size: 14px;
  color: var(--muted);
  font-style: normal;
}

/* ── Values ─────────────────────────────────────────────────── */
.gs-about-values {
  padding: 80px 0;
  background: var(--bg-2);
}
.gs-about-values__heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 40px;
}
.gs-about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.gs-about-value {
  background: var(--bg);
  padding: 28px;
  border-radius: 0;
}
.gs-about-values__grid .gs-about-value:nth-child(1) { border-radius: var(--r) 0 0 0; }
.gs-about-values__grid .gs-about-value:nth-child(2) { border-radius: 0; }
.gs-about-values__grid .gs-about-value:nth-child(3) { border-radius: 0 var(--r) 0 0; }
.gs-about-values__grid .gs-about-value:nth-child(4) { border-radius: 0 0 0 var(--r); }
.gs-about-values__grid .gs-about-value:nth-child(6) { border-radius: 0 0 var(--r) 0; }
.gs-about-value__title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.gs-about-value__body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Timeline ───────────────────────────────────────────────── */
.gs-about-timeline {
  padding: 80px 0;
}
.gs-about-timeline__heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 48px;
}
.gs-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 32px;
}
.gs-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--line);
}
.gs-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 20px;
  padding-bottom: 36px;
}
.gs-timeline__item:last-child { padding-bottom: 0; }
.gs-timeline__dot {
  position: absolute;
  left: -28px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line);
  z-index: 1;
}
.gs-timeline__item--current .gs-timeline__dot {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(10,132,255,.15);
}
.gs-timeline__year {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  padding-top: 2px;
}
.gs-timeline__body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.gs-timeline__body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Team ───────────────────────────────────────────────────── */
.gs-about-team {
  padding: 80px 0;
  background: var(--bg-2);
}
.gs-about-team__heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.gs-about-team__sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 40px;
}
.gs-about-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gs-team-card {
  background: var(--bg);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
}
.gs-team-card__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-2);
}
.gs-team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.gs-team-card__info {
  padding: 18px;
}
.gs-team-card__name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.gs-team-card__role {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
}
.gs-team-card__bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ── Partners ───────────────────────────────────────────────── */
.gs-about-partners {
  padding: 72px 0;
}
.gs-about-partners__heading {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 36px;
}
.gs-about-partners__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.gs-partner-logo {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .04em;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.gs-partner-logo:hover {
  background: var(--brand-50);
  border-color: var(--brand-100);
  color: var(--ink);
}

/* ── About CTA ──────────────────────────────────────────────── */
.gs-about-cta {
  background: var(--ink);
  padding: 72px 0;
}
.gs-about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.gs-about-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 8px;
}
.gs-about-cta__body {
  font-size: 15px;
  color: rgba(255,255,255,.6);
}
.gs-about-cta__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.gs-about-cta .gs-btn--outline {
  border-color: rgba(255,255,255,.25);
  color: #fff;
  background: transparent;
}
.gs-about-cta .gs-btn--outline:hover {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
  color: #fff;
}


/* ================================================================
   CONTACT PAGE  (page-contact.php)
   ================================================================ */

/* ── Hero ───────────────────────────────────────────────────── */
.gs-contact-hero {
  padding: 72px 0 56px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.gs-contact-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}
.gs-contact-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 18px;
}
.gs-contact-hero__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
}
.gs-contact-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}
.gs-contact-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
}
.gs-contact-hero__stat-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
}
.gs-contact-hero__stat-label {
  font-size: 12px;
  color: var(--muted);
}

/* ── Channels ───────────────────────────────────────────────── */
.gs-contact-channels {
  padding: 72px 0;
}
.gs-contact-channels__heading {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 36px;
}
.gs-contact-channels__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gs-channel-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  position: relative;
  transition: border-color var(--t), box-shadow var(--t), transform .15s;
  text-decoration: none;
  color: inherit;
}
.gs-channel-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.gs-channel-card--wa { border-color: #25D366; }
.gs-channel-card--wa:hover { border-color: #1da851; box-shadow: 0 4px 20px rgba(37,211,102,.15); }
.gs-channel-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: #25D366;
  padding: 3px 8px;
  border-radius: 99px;
}
.gs-channel-card__icon { color: var(--brand); }
.gs-channel-card--wa .gs-channel-card__icon { color: #25D366; }
.gs-channel-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.gs-channel-card__body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.gs-channel-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  margin-top: auto;
}
.gs-channel-card--wa .gs-channel-card__cta { color: #1da851; }

/* ── Contact main (form + store) ────────────────────────────── */
.gs-contact-main {
  padding: 0 0 80px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.gs-contact-main__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  padding-top: 72px;
  align-items: start;
}

/* Form wrap */
.gs-contact-form-wrap__heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.gs-contact-form-wrap__sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Notices */
.gs-contact-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}
.gs-contact-notice--success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.gs-contact-notice--error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.gs-contact-notice svg { flex-shrink: 0; }

/* Form fields */
.gs-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.gs-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.gs-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gs-form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.gs-form-field__optional {
  font-weight: 400;
  color: var(--muted);
}
.gs-form-field input,
.gs-form-field select,
.gs-form-field textarea {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
}
.gs-form-field input:focus,
.gs-form-field select:focus,
.gs-form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(10,132,255,.10);
}
.gs-form-field textarea { resize: vertical; min-height: 120px; }
.gs-form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235b6577' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }

/* Checkbox */
.gs-form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
}
.gs-form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--brand);
  cursor: pointer;
}

/* Submit */
.gs-contact-form__submit { margin-top: 4px; width: fit-content; }
.gs-contact-form__privacy {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.gs-contact-form__privacy a { color: var(--brand); }
.gs-contact-form__privacy a:hover { text-decoration: underline; }

/* Store panel */
.gs-contact-store {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.gs-contact-store__map { background: var(--bg-2); }
.gs-contact-store__info {
  padding: 20px 20px 0;
}
.gs-contact-store__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--good);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.gs-open-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 3px rgba(22,163,74,.2);
  animation: gs-pulse 2s ease-in-out infinite;
}
@keyframes gs-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(22,163,74,.2); }
  50%       { box-shadow: 0 0 0 6px rgba(22,163,74,.05); }
}
.gs-contact-store__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.gs-contact-store__address {
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}
.gs-contact-store__hours {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 20px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}
.gs-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 13px;
}
.gs-hours-row:last-child { border-bottom: none; }
.gs-hours-row__days { color: var(--muted); }
.gs-hours-row__times { font-weight: 600; color: var(--ink); }
.gs-contact-store__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px 20px;
}
.gs-contact-store__actions .gs-btn {
  justify-content: center;
  width: 100%;
}

/* ── Social ─────────────────────────────────────────────────── */
.gs-contact-social {
  padding: 64px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.gs-contact-social__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.gs-social-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  text-decoration: none;
  transition: border-color var(--t), box-shadow var(--t), transform .15s;
  text-align: center;
}
.gs-social-pill:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); }
.gs-social-pill__abbr {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--brand-50);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}
.gs-social-pill__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.gs-social-pill__handle {
  font-size: 12px;
  color: var(--muted);
}

/* ── FAQ ────────────────────────────────────────────────────── */
.gs-contact-faq {
  padding: 80px 0;
}
.gs-contact-faq__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.gs-contact-faq__heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.gs-contact-faq__sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.gs-contact-faq__more {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  display: block;
}
.gs-contact-faq__more:hover { text-decoration: underline; }

.gs-faq { display: flex; flex-direction: column; gap: 0; }
.gs-faq__item {
  border-bottom: 1px solid var(--line);
}
.gs-faq__item:first-child { border-top: 1px solid var(--line); }
.gs-faq__q {
  list-style: none;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.gs-faq__q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform var(--t);
}
.gs-faq__item[open] .gs-faq__q::after { transform: rotate(45deg); }
.gs-faq__q::-webkit-details-marker { display: none; }
.gs-faq__a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  padding-bottom: 18px;
}


/* ================================================================
   RETURNS PAGE  (page-returns.php)
   ================================================================ */

/* ── Hero ───────────────────────────────────────────────────── */
.gs-returns-hero {
  padding: 72px 0 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.gs-returns-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 64px;
}
.gs-returns-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.gs-returns-hero__title em {
  font-style: normal;
  color: var(--brand);
}
.gs-returns-hero__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.gs-returns-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.gs-returns-hero__pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.gs-returns-pill {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gs-returns-pill__val {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.03em;
}
.gs-returns-pill__unit {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.gs-returns-pill__note {
  font-size: 12px;
  color: var(--muted);
}

/* ── Body layout ────────────────────────────────────────────── */
.gs-returns-body { padding: 72px 0 80px; }
.gs-returns-body__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}

/* ── TOC ────────────────────────────────────────────────────── */
.gs-returns-toc {
  position: sticky;
  top: 100px;
}
.gs-returns-toc__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.gs-returns-toc__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 28px;
}
.gs-returns-toc__list li { list-style: none; counter-increment: none; }
.gs-returns-toc__list a {
  display: block;
  padding: 7px 10px;
  font-size: 13px;
  color: var(--muted);
  border-radius: 6px;
  transition: background var(--t), color var(--t);
}
.gs-returns-toc__list a:hover { background: var(--bg-2); color: var(--ink); }

.gs-returns-toc__cta {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gs-returns-toc__cta p { font-size: 13px; font-weight: 600; color: var(--ink); margin: 0; }
.gs-returns-toc__cta span { font-size: 12px; color: var(--muted); }
.gs-returns-toc__cta .gs-btn { margin-top: 8px; justify-content: center; }

/* ── Sections ───────────────────────────────────────────────── */
.gs-returns-sections {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.gs-returns-section { scroll-margin-top: 100px; }
.gs-returns-section__num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.gs-returns-section__heading {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.gs-returns-section > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Short version cards */
.gs-returns-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.gs-returns-card {
  padding: 20px;
  border-radius: var(--r);
  border: 1.5px solid var(--line);
}
.gs-returns-card strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.gs-returns-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }
.gs-returns-card--good { background: #f0fdf4; border-color: #bbf7d0; }
.gs-returns-card--good strong { color: #15803d; }
.gs-returns-card--bad  { background: #fef2f2; border-color: #fecaca; }
.gs-returns-card--bad strong { color: #dc2626; }
.gs-returns-card--neutral { background: var(--bg-2); }

/* Eligibility table */
.gs-returns-table-wrap { overflow-x: auto; margin-top: 24px; margin-bottom: 16px; }
.gs-returns-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.gs-returns-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  border-bottom: 2px solid var(--line);
  white-space: nowrap;
}
.gs-returns-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink);
  font-size: 14px;
}
.gs-returns-table tr:last-child td { border-bottom: none; }
.gs-returns-table tr:hover td { background: var(--bg-2); }
.gs-returns-table__yes { color: var(--good); font-weight: 600; }
.gs-returns-table__no  { color: var(--bad);  font-weight: 600; }
.gs-returns-table__cbc { color: var(--warn); font-weight: 500; font-size: 13px; }
.gs-returns-note { font-size: 13px; color: var(--muted); font-style: italic; }

/* Time windows */
.gs-returns-windows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.gs-returns-window {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gs-returns-window__val {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -.04em;
}
.gs-returns-window__unit {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
}
.gs-returns-window__title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.gs-returns-window__body { font-size: 13px; color: var(--muted); line-height: 1.55; margin: 0; }

/* How-to steps */
.gs-returns-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
}
.gs-returns-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-2);
}
.gs-returns-step:first-child { border-top: 1px solid var(--line-2); }
.gs-returns-step__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  flex-shrink: 0;
  width: 28px;
  margin-top: 2px;
}
.gs-returns-step__body strong { display: block; font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.gs-returns-step__body p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0 0 8px; }
.gs-returns-step__link { font-size: 13px; font-weight: 600; color: var(--brand); }
.gs-returns-step__link:hover { text-decoration: underline; }

/* Warning box */
.gs-returns-warning {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fffbeb;
  border: 1.5px solid #fed7aa;
  border-radius: var(--r-sm);
  padding: 16px 18px;
  margin-top: 24px;
  color: #92400e;
}
.gs-returns-warning svg { flex-shrink: 0; margin-top: 2px; }
.gs-returns-warning strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.gs-returns-warning p { font-size: 13px; line-height: 1.55; margin: 0; }

/* Refund methods */
.gs-refund-methods {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.gs-refund-method {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid var(--line-2);
}
.gs-refund-method:last-child { border-bottom: none; }
.gs-refund-method__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.gs-refund-method__icon--mpesa { background: #ecfdf5; color: #16a34a; font-family: var(--font-display); }
.gs-refund-method__icon--card  { background: var(--brand-50); }
.gs-refund-method__icon--cod   { background: var(--bg-2); }
.gs-refund-method__info strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.gs-refund-method__speed { display: block; font-size: 13px; font-weight: 600; color: var(--good); margin-bottom: 3px; }
.gs-refund-method__info p { font-size: 13px; color: var(--muted); margin: 0; }

/* Warranty steps */
.gs-warranty-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.gs-warranty-step {
  padding: 20px;
  border-bottom: 1px solid var(--line-2);
}
.gs-warranty-step:last-child { border-bottom: none; }
.gs-warranty-step__badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.gs-warranty-step__badge--green { background: #f0fdf4; color: #15803d; }
.gs-warranty-step__badge--blue  { background: var(--brand-50); color: var(--brand-dark); }
.gs-warranty-step__badge--grey  { background: var(--bg-2); color: var(--muted); }
.gs-warranty-step p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

/* Exceptions list */
.gs-returns-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.gs-returns-list li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.gs-returns-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--bad);
  font-size: 12px;
  font-weight: 700;
  top: 2px;
}

/* Need a human contacts */
.gs-returns-contacts {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 28px;
}
.gs-returns-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  text-decoration: none;
  color: inherit;
  min-width: 160px;
  transition: border-color var(--t), box-shadow var(--t);
}
.gs-returns-contact:is(a):hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.gs-returns-contact strong { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.gs-returns-contact span  { font-size: 14px; font-weight: 600; color: var(--brand); }
.gs-returns-contact:not(a) span { color: var(--ink); }
.gs-returns-policy-date {
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 20px;
  line-height: 1.6;
}


/* ================================================================
   RESPONSIVE — all three pages
   ================================================================ */

@media (max-width: 1100px) {
  .gs-about-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .gs-about-stat:first-child { border-radius: var(--r) 0 0 0; }
  .gs-about-stat:nth-child(2) { border-radius: 0 var(--r) 0 0; }
  .gs-about-stat:nth-child(3) { border-radius: 0 0 0 var(--r); }
  .gs-about-stat:last-child  { border-radius: 0 0 var(--r) 0; }
  .gs-about-team__grid { grid-template-columns: repeat(2, 1fr); }
  .gs-contact-channels__grid { grid-template-columns: repeat(2, 1fr); }
  .gs-contact-social__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .gs-about-hero__inner,
  .gs-about-mission__inner,
  .gs-returns-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .gs-about-values__grid { grid-template-columns: repeat(2, 1fr); }
  .gs-about-values__grid .gs-about-value { border-radius: 0 !important; }
  .gs-contact-hero__inner { grid-template-columns: 1fr; }
  .gs-contact-hero__stats { flex-direction: row; gap: 32px; }
  .gs-contact-hero__stat { text-align: left; }
  .gs-contact-main__inner { grid-template-columns: 1fr; }
  .gs-contact-store { position: static; }
  .gs-contact-faq__inner { grid-template-columns: 1fr; gap: 32px; }
  .gs-returns-body__inner { grid-template-columns: 1fr; }
  .gs-returns-toc { position: static; display: none; } /* hide on mobile, handled by anchor links */
  .gs-returns-windows { grid-template-columns: 1fr; }
  .gs-returns-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .gs-about-milestones__list { flex-direction: column; align-items: flex-start; padding: 0 16px; }
  .gs-about-milestone--sep { width: 40px; height: 1px; margin: 4px 0; }
  .gs-about-milestone { padding: 8px 0; align-items: flex-start; }
  .gs-about-values__grid { grid-template-columns: 1fr; }
  .gs-about-team__grid { grid-template-columns: 1fr; }
  .gs-about-cta__inner { flex-direction: column; align-items: flex-start; }
  .gs-contact-channels__grid { grid-template-columns: 1fr; }
  .gs-contact-form__row { grid-template-columns: 1fr; }
  .gs-contact-social__grid { grid-template-columns: repeat(2, 1fr); }
  .gs-returns-hero__pills { grid-template-columns: 1fr; }
  .gs-contact-hero__stats { flex-wrap: wrap; gap: 16px; }
}


/* ================================================================
   REPAIRS SECTION  (page-contact.php)
   ================================================================ */

.gs-contact-repairs {
  background: var(--ink);
  padding: 72px 0;
}
.gs-contact-repairs__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.gs-contact-repairs .gs-eyebrow { color: var(--brand); }
.gs-contact-repairs__heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 16px;
}
.gs-contact-repairs__body {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 28px;
}
.gs-contact-repairs__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.gs-contact-repairs .gs-btn--primary { background: var(--brand); }
.gs-contact-repairs .gs-btn--outline {
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.gs-contact-repairs .gs-btn--outline:hover {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.gs-contact-repairs__services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.gs-repair-service {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 18px;
}
.gs-repair-service__icon { font-size: 24px; flex-shrink: 0; line-height: 1; }
.gs-repair-service strong { display: block; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.gs-repair-service p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; margin: 0; }

/* Hours row — closed state */
.gs-hours-row__times--closed { color: var(--muted); font-style: italic; font-weight: 400; }

/* Responsive repairs */
@media (max-width: 900px) {
  .gs-contact-repairs__inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .gs-contact-repairs__services { grid-template-columns: 1fr; }
}
