/** Shopify CDN: Minification failed

Line 616:98 Expected "}" to go with "{"

**/
/* SEIKIS — premium gymwear storefront
   blackout + chrome, condensed display type, monochrome rigor */

:root {
  /* light mode — warm off-white body */
  --bg:        #f4f3ef;
  --bg-2:      #ebe9e2;
  --surface:   #e3e0d6;
  --surface-2: #d8d4c8;
  --line:      #d4d0c2;
  --line-2:    #b5b0a0;
  --text:      #0a0a0b;
  --text-2:    #44444a;
  --text-3:    #76767c;
  --text-4:    #a8a8ad;
  --accent:    #0a0a0b;          /* default mono ink */
  --accent-ink:#f4f3ef;
  --chrome-1:  #58585e;
  --chrome-2:  #8b8b94;

  /* dark band tokens — used inside .hdr / .ftr / .ann */
  --dk-bg:     #0a0a0b;
  --dk-bg-2:   #101012;
  --dk-surface:#16161a;
  --dk-line:   #26262c;
  --dk-line-2: #34343c;
  --dk-text:   #ededee;
  --dk-text-2: #a8a8ad;
  --dk-text-3: #6c6c74;
  --dk-text-4: #44444c;

  /* type */
  --f-display: 'Anton', 'Oswald', 'Bebas Neue', Impact, sans-serif;
  --f-body:    'Inter', ui-sans-serif, -apple-system, system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  /* radii */
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;

  /* layout */
  --gutter: 28px;
  --max:    1440px;
  --bar-h:  64px;
  --ann-h:  34px;
}

* { box-sizing: border-box; }

button {
  background: transparent;
  border: 0;
  color: inherit;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font-family: inherit; }

/* ── Type ─────────────────────────────────────────────────────────────── */

.h-display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.h-1 { font-size: clamp(64px, 10vw, 168px); }
.h-2 { font-size: clamp(48px, 6.4vw, 104px); }
.h-3 { font-size: clamp(32px, 3.2vw, 56px); }
.h-4 { font-size: clamp(22px, 1.8vw, 32px); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
}
.eyebrow-bright { color: var(--text-2); }

.lede { font-size: 16px; color: var(--text-2); max-width: 56ch; line-height: 1.55; }
.small { font-size: 12px; color: var(--text-3); }
.mono  { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.04em; }

/* ── Layout ───────────────────────────────────────────────────────────── */

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-full { padding: 0 var(--gutter); }

.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }
.section-tight { padding: 24px 0; }

.divider { height: 1px; background: var(--line); width: 100%; }

/* ── Announcement bar ────────────────────────────────────────────────── */

.ann {
  --bg: var(--dk-bg);
  --line: var(--dk-line);
  --text-2: var(--dk-text-2);
  --text-3: var(--dk-text-3);
  --text-4: var(--dk-text-4);
  height: var(--ann-h);
  background: #000;
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.ann-track { display: flex; align-items: center; gap: 64px; white-space: nowrap; animation: marquee 36s linear infinite; }
.ann-track span { display: inline-flex; align-items: center; gap: 64px; }
.ann-track i  { width: 4px; height: 4px; background: var(--text-4); border-radius: 50%; display: inline-block; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Header ──────────────────────────────────────────────────────────── */

.hdr {
  --bg: var(--dk-bg);
  --bg-2: var(--dk-bg-2);
  --surface: var(--dk-surface);
  --line: var(--dk-line);
  --line-2: var(--dk-line-2);
  --text: var(--dk-text);
  --text-2: var(--dk-text-2);
  --text-3: var(--dk-text-3);
  --text-4: var(--dk-text-4);
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.92);
  color: var(--text);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.hdr-inner {
  height: var(--bar-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 56px;
}
.hdr-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.hdr-tools {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}
.hdr-link {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  padding: 4px 0;
  transition: color .18s;
}
.hdr-link:hover, .hdr-link[data-active="1"] { color: var(--text); }
.hdr-link[data-active="1"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 1px;
  background: var(--text);
}
.hdr-link::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.hdr-link:hover::before { transform: scaleX(1); }

.logo {
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: 0.12em;
  color: var(--text);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo i {
  width: 14px; height: 14px;
  background: var(--text);
  display: inline-block;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.hdr-icon {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--text-2);
  position: relative;
}
.hdr-icon:hover { color: var(--text); }
.hdr-icon .badge {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 16px; height: 16px;
  background: var(--text);
  color: var(--bg);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* ── Buttons ─────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  border: 1px solid var(--text);
  background: var(--text);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background .18s, color .18s, transform .18s;
}
.btn:hover { background: transparent; color: var(--text); }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: var(--text); color: var(--bg); }
.btn-line { background: transparent; color: var(--text); border: 1px solid var(--line-2); }
.btn-line:hover { border-color: var(--text); background: var(--text); color: var(--bg); }
.btn-sm { height: 40px; padding: 0 18px; font-size: 10px; }
.btn-block { width: 100%; }

.btn-arrow svg { transition: transform .2s; }
.btn:hover .btn-arrow svg { transform: translateX(4px); }

/* ── Hero ────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  height: calc(100vh - var(--bar-h) - var(--ann-h));
  min-height: 720px;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg) 60%, var(--surface) 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 78% 20%, rgba(80,80,90,0.12), transparent 70%),
    radial-gradient(ellipse 60% 50% at 25% 80%, rgba(0,0,0,0.08), transparent 70%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 80px, rgba(0,0,0,0.035) 80px 81px),
    repeating-linear-gradient(0deg,  transparent 0 80px, rgba(0,0,0,0.035) 80px 81px);
  pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.05; mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 140px;
}
.hero-meta {
  position: absolute;
  top: 32px; left: var(--gutter); right: var(--gutter);
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.hero-headline {
  display: block;
  color: var(--text);
}
.hero-headline span { display: block; }
.hero-headline .outline {
  -webkit-text-stroke: 1.5px var(--text-3);
  color: transparent;
}
.hero-cta-row {
  display: flex; gap: 12px; margin-top: 40px;
  align-items: center;
}
.hero-side {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-3);
}

.hero-stat-rail {
  position: absolute;
  left: var(--gutter);
  bottom: 32px;
  right: var(--gutter);
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  z-index: 3;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  justify-content: space-between;
  pointer-events: none;
}
.hero-stat-rail span { display: inline-flex; gap: 10px; align-items: center; }
.hero-stat-rail b { color: var(--text); font-weight: 500; }

/* hero variation: split */
.hero[data-variant="split"] .hero-content {
  justify-content: center;
  padding-bottom: 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero[data-variant="split"] .hero-stat-rail { display: none; }
.hero[data-variant="split"] .hero-product {
  position: relative;
  aspect-ratio: 3/4;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--surface) 0%, var(--bg-2) 100%);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 24px;
}

/* hero variation: editorial */
.hero[data-variant="editorial"] .hero-headline .outline { -webkit-text-stroke: 1px var(--text-3); }
.hero[data-variant="editorial"] .hero-bg {
  background:
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(0,0,0,0.06), transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

/* ── Placeholder imagery ─────────────────────────────────────────────── */

.ph {
  position: relative;
  background: var(--surface);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  color: var(--text-3);
}
.ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 49%, rgba(0,0,0,0.045) 50%, transparent 51%),
    linear-gradient(45deg,  transparent 49%, rgba(0,0,0,0.03) 50%, transparent 51%),
    var(--surface);
  background-size: 32px 32px, 32px 32px, auto;
}
.ph::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,0,0,0.04), transparent 70%);
}
.ph > * { position: relative; z-index: 1; }
.ph-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  padding: 4px 8px;
  backdrop-filter: blur(8px);
}
.ph-coord {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-4);
  letter-spacing: 0.08em;
}
.ph-dark { background: var(--surface-2); }

/* atmospheric athlete silhouette via radial gradients */
.ph-figure::before {
  background:
    radial-gradient(ellipse 18% 32% at 50% 38%, rgba(0,0,0,0.08), transparent 65%),
    radial-gradient(ellipse 30% 50% at 50% 70%, rgba(0,0,0,0.06), transparent 70%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
}

/* ── Product card ─────────────────────────────────────────────────────── */

.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 0;
  cursor: pointer;
}
.pcard-media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface);
}
.pcard-media .ph { width: 100%; height: 100%; }
.pcard-media-hover { position: absolute; inset: 0; opacity: 0; transition: opacity .35s; }
.pcard:hover .pcard-media-hover { opacity: 1; }
.pcard-tag {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--line-2);
  padding: 4px 8px;
  backdrop-filter: blur(8px);
}
.pcard-tag.tag-low   { color: var(--bg); background: var(--text); border-color: var(--text); }
.pcard-tag.tag-new   { color: var(--text); background: var(--bg); border-color: var(--text); }
.pcard-tag.tag-sale  { color: var(--bg); background: #c4453a; border-color: #c4453a; }
.pcard-tag.tag-base  { color: var(--text-2); background: rgba(244,243,239,0.85); border-color: var(--line-2); }
.pcard-fav {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  width: 32px; height: 32px;
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--line-2);
  color: var(--text-2);
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(-4px);
  transition: opacity .25s, transform .25s, color .2s;
  backdrop-filter: blur(8px);
}
.pcard:hover .pcard-fav { opacity: 1; transform: translateY(0); }
.pcard-fav:hover { color: var(--text); }
.pcard-quick {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 3;
  display: flex; gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
}
.pcard:hover .pcard-quick { opacity: 1; transform: translateY(0); }
.pcard-quick-size {
  flex: 1;
  height: 36px;
  background: rgba(0,0,0,0.78);
  color: var(--text);
  border: 1px solid var(--line-2);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  backdrop-filter: blur(8px);
  transition: background .15s, color .15s;
}
.pcard-quick-size:hover { background: var(--text); color: var(--bg); }
.pcard-info {
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.pcard-title {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
  margin: 0;
}
.pcard-meta {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 4px;
}
.pcard-price {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.pcard-swatches { display: flex; gap: 6px; margin-top: 10px; }
.pcard-sw {
  width: 14px; height: 14px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
}

.pcard-info-min {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pcard-info-min-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.pcard-info-min .pcard-swatches { margin-top: 0; gap: 5px; }
.pcard-info-min .pcard-sw { width: 13px; height: 13px; cursor: pointer; transition: transform .12s