@charset "UTF-8";
/* ═══════════════════════════════════════════════════
   style.css — VOLTHAR · Home-gym & strength equipment
   Prefix: fx-  |  Theme: charcoal + volt-lime, energetic & dense
   Display: Saira Condensed · Text: Inter Tight
   (a few rst- hooks kept for the shared cart/i18n engine)
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@500;600;700;800&family=Inter+Tight:wght@400;500;600;700&display=swap');

/* ── Tokens ───────────────────────────────────────── */
:root {
  --char:      #18191c;   /* charcoal base */
  --char-2:    #202227;   /* raised panel */
  --char-3:    #2a2d34;   /* card / border-dark */
  --ink:       #0f1012;   /* deepest */
  --volt:      #c2f53d;   /* signature lime */
  --volt-dim:  #a6d62f;
  --steel:     #8b9099;   /* muted steel text */
  --steel-2:   #b9bec6;   /* lighter steel */
  --line:      #34373f;   /* hairlines on dark */
  --paper:     #f4f5f3;   /* light sections */
  --paper-2:   #e7e9e4;
  --text-light:#eef0ec;   /* text on dark */
  --text-dark: #1a1c20;   /* text on light */
  --text-muted:#6c7077;   /* on light */
  --white:     #ffffff;

  --ff-display: 'Saira Condensed', 'Arial Narrow', sans-serif;
  --ff-body:    'Inter Tight', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-card: 0 1px 0 rgba(255,255,255,0.03), 0 10px 30px rgba(0,0,0,0.35);
  --shadow-lift: 0 18px 48px rgba(0,0,0,0.5);
  --glow:        0 0 0 1px rgba(194,245,61,0.5), 0 8px 26px rgba(194,245,61,0.22);

  --max-w: 1320px;
  --gutter: clamp(1rem, 4vw, 3rem);
  --anim: 0.2s cubic-bezier(0.3,0,0.2,1);
}

/* ── Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: clamp(0.95rem, 0.4vw + 0.85rem, 1.05rem);
  line-height: 1.6;
  color: var(--text-light);
  background: var(--char);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }
::selection { background: var(--volt); color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ── Utility ──────────────────────────────────────── */
.fx-container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.fx-reveal, .rst-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fx-reveal.is-visible, .rst-reveal.is-visible { opacity: 1; transform: none; }
.fx-eyebrow {
  font-family: var(--ff-display); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--volt);
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.fx-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--volt); display: inline-block; }
.fx-sec-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.8rem); line-height: 0.98;
  letter-spacing: -0.01em; text-transform: uppercase; color: var(--text-light);
}
.fx-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }

/* ── TICKER (kept .rst-ticker for i18n observer/applyTerms) ─ */
.rst-ticker {
  background: var(--volt); color: var(--ink);
  font-family: var(--ff-display); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  overflow: hidden; height: 34px; display: flex; align-items: center; white-space: nowrap;
}
.rst-ticker-track { display: flex; animation: fx-ticker 30s linear infinite; }
.rst-ticker-track:hover { animation-play-state: paused; }
.rst-ticker-item { padding: 0 2.5rem; }
.rst-ticker-item::before { content: '/'; margin-right: 2.5rem; font-weight: 800; }
@keyframes fx-ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════ HEADER — archetype D: CLUSTER LEFT ═══════════════
   logo + nav glued left; CTA + cart pushed far right                */
.fx-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(24,25,28,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--anim), background var(--anim);
}
.fx-head--stuck { box-shadow: 0 8px 26px rgba(0,0,0,0.45); background: rgba(20,21,24,0.96); }
.fx-head-inner {
  display: flex; align-items: center; gap: 2.5rem;
  height: 68px; padding: 0 var(--gutter);
  max-width: var(--max-w); margin: 0 auto;
}
.fx-head--stuck .fx-head-inner { height: 60px; }

/* brand — wordmark with volt chevron mark */
.fx-brand { display: inline-flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.fx-brand-mark {
  width: 30px; height: 30px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--volt); border-radius: 7px;
  transform: skewX(-8deg);
}
.fx-brand-mark svg { width: 18px; height: 18px; display: block; transform: skewX(8deg); }
.fx-brand-name, .rst-brandslot {
  font-family: var(--ff-display); font-weight: 800;
  font-size: 1.4rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-light); white-space: nowrap; line-height: 1;
}
.fx-brand:hover .fx-brand-name { color: var(--volt); }

/* nav — glued next to logo (left cluster) */
.fx-nav { display: flex; align-items: center; gap: 0.3rem; margin-right: auto; }
.fx-nav-link {
  font-family: var(--ff-display); font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--steel-2); padding: 0.45rem 0.8rem; border-radius: var(--radius-sm);
  transition: color var(--anim), background var(--anim); white-space: nowrap;
}
.fx-nav-link:hover { color: var(--text-light); background: var(--char-3); }
.fx-nav-link.is-active { color: var(--volt); }

/* right cluster — actions */
.fx-head-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.fx-icon-btn {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  border-radius: var(--radius-sm); color: var(--steel-2);
  transition: color var(--anim), background var(--anim); position: relative;
}
.fx-icon-btn:hover { color: var(--volt); background: var(--char-3); }
.fx-icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.rst-cart-badge {
  background: var(--volt); color: var(--ink);
  font-family: var(--ff-display); font-weight: 800; font-size: 0.7rem;
  min-width: 18px; height: 18px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
  position: absolute; top: 3px; right: 2px;
}
.fx-head-cta {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--volt); color: var(--ink);
  padding: 0.55rem 1.15rem; border-radius: var(--radius-sm);
  transition: transform var(--anim), box-shadow var(--anim); white-space: nowrap;
}
.fx-head-cta:hover { transform: translateY(-1px); box-shadow: var(--glow); }

/* hamburger */
.fx-burger { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.fx-burger span { display: block; width: 22px; height: 2.5px; background: var(--text-light); border-radius: 2px; transition: transform var(--anim), opacity var(--anim); }
.fx-burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: var(--volt); }
.fx-burger.is-open span:nth-child(2) { opacity: 0; }
.fx-burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: var(--volt); }

/* mobile nav */
.fx-mobile-nav {
  display: none; position: fixed; inset: 0; background: var(--ink);
  z-index: 99; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 0.5rem; padding: 0 var(--gutter); opacity: 0; transition: opacity 0.25s ease;
}
.fx-mobile-nav.is-open { opacity: 1; }
.fx-mobile-nav-link {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2rem, 9vw, 3rem); letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--text-light); transition: color var(--anim);
}
.fx-mobile-nav-link:hover { color: var(--volt); }

/* ═══════════════ HERO — archetype 2: FULL-BLEED ═══════════════
   action photo background + scrim + overlay copy + stats bar       */
.fx-hero { position: relative; isolation: isolate; }
.fx-hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.fx-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.fx-hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(15,16,18,0.94) 0%, rgba(15,16,18,0.78) 42%, rgba(15,16,18,0.32) 100%),
    linear-gradient(0deg, rgba(15,16,18,0.92) 0%, rgba(15,16,18,0) 45%);
}
.fx-hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: clamp(4rem, 12vw, 9rem) var(--gutter) 0;
  min-height: clamp(540px, 82vh, 860px);
  display: flex; flex-direction: column; justify-content: center;
}
.fx-hero-eyebrow { margin-bottom: 1.5rem; }
.fx-hero-title {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 6.5rem); line-height: 0.9;
  letter-spacing: -0.015em; text-transform: uppercase; color: var(--text-light);
  max-width: 16ch; text-wrap: balance;
}
.fx-hero-title em { font-style: normal; color: var(--volt); }
.fx-hero-lede {
  font-size: clamp(1rem, 1.4vw, 1.2rem); color: var(--steel-2);
  max-width: 46ch; margin: 1.5rem 0 2.2rem; line-height: 1.65;
}
.fx-hero-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* stats bar pinned to hero base */
.fx-hero-stats {
  border-top: 1px solid var(--line);
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.fx-stat { padding: 1.4rem 1.6rem 1.4rem 0; }
.fx-stat + .fx-stat { padding-left: 1.6rem; border-left: 1px solid var(--line); }
.fx-stat-num {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1; color: var(--volt);
}
.fx-stat-label { font-size: 0.82rem; color: var(--steel); margin-top: 0.35rem; letter-spacing: 0.02em; }

/* ── BUTTONS ──────────────────────────────────────── */
.fx-btn, .rst-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--ff-display); font-weight: 700;
  font-size: 0.98rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.8rem 1.6rem; border-radius: var(--radius-sm);
  transition: background var(--anim), color var(--anim), box-shadow var(--anim), transform var(--anim), border-color var(--anim);
  cursor: pointer;
}
.fx-btn:focus-visible, .rst-btn:focus-visible { outline: 2.5px solid var(--volt); outline-offset: 3px; }
.fx-btn-primary, .rst-btn-primary, .rst-btn-accent { background: var(--volt); color: var(--ink); }
.fx-btn-primary:hover, .rst-btn-primary:hover, .rst-btn-accent:hover { transform: translateY(-2px); box-shadow: var(--glow); }
.fx-btn-ghost, .rst-btn-ghost {
  background: transparent; color: var(--text-light); border: 1.5px solid var(--line);
}
.fx-btn-ghost:hover, .rst-btn-ghost:hover { border-color: var(--volt); color: var(--volt); }
.fx-btn-dark { background: var(--char-3); color: var(--text-light); }
.fx-btn-dark:hover { background: var(--ink); }
.fx-btn-sm, .rst-btn-sm { padding: 0.5rem 0.9rem; font-size: 0.82rem; }
.fx-btn-block { width: 100%; }

/* ── CATEGORY RAIL ────────────────────────────────── */
.fx-cats { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--char); }
.fx-cats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.85rem; margin-top: 2rem; }
.fx-cat-card {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  border: 1px solid var(--char-3); background: var(--char-2);
  aspect-ratio: 3/4; display: flex; align-items: flex-end;
  transition: transform var(--anim), border-color var(--anim);
}
.fx-cat-card:hover { transform: translateY(-4px); border-color: var(--volt); }
.fx-cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; transition: opacity var(--anim), transform 0.5s ease; }
.fx-cat-card:hover img { opacity: 0.8; transform: scale(1.06); }
.fx-cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,16,18,0.92), rgba(15,16,18,0.05)); }
.fx-cat-label {
  position: relative; z-index: 1; padding: 0.9rem;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.02rem;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-light); line-height: 1.05;
}
.fx-cat-card:hover .fx-cat-label { color: var(--volt); }

/* ── PRODUCT CARD ─────────────────────────────────── */
.fx-card {
  background: var(--char-2); border: 1px solid var(--char-3);
  border-radius: var(--radius-md); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--anim), border-color var(--anim), box-shadow var(--anim);
}
.fx-card:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow-lift); }
.fx-card-imgwrap { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--char-3); }
.fx-card-imgwrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.fx-card:hover .fx-card-imgwrap img { transform: scale(1.06); }
.fx-card-cat, .rst-card-cat {
  position: absolute; top: 0.7rem; left: 0.7rem; z-index: 1;
  font-family: var(--ff-display); font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink);
  background: var(--volt); padding: 0.2rem 0.5rem; border-radius: 3px;
}
.fx-card-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; flex: 1; gap: 0.55rem; }
.fx-card-name {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem; line-height: 1.05;
  letter-spacing: 0.01em; text-transform: uppercase; color: var(--text-light);
}
.fx-card-name a:hover { color: var(--volt); }
.fx-card-short { font-size: 0.84rem; color: var(--steel); line-height: 1.5; flex: 1; }
.fx-chips, .rst-card-chips { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.fx-chip, .rst-chip {
  font-family: var(--ff-body); font-weight: 600; font-size: 0.66rem;
  background: var(--char-3); color: var(--steel-2);
  padding: 0.22rem 0.5rem; border-radius: 3px; letter-spacing: 0.02em;
}
.fx-chip-accent, .rst-chip-accent { background: rgba(194,245,61,0.14); color: var(--volt); }
.fx-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-top: 0.35rem; padding-top: 0.7rem; border-top: 1px solid var(--char-3); }
.fx-price, .rst-price {
  font-family: var(--ff-display); font-weight: 800; font-size: 1.35rem; color: var(--text-light); line-height: 1;
}
.fx-price-sub, .rst-price-sub { font-size: 0.72rem; color: var(--steel); display: block; margin-top: 0.15rem; letter-spacing: 0.02em; }

/* ── SPEC STRIP (level meter on cards/PDP) ────────── */
.fx-level { display: flex; align-items: center; gap: 0.5rem; }
.fx-level-label { font-family: var(--ff-display); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel); white-space: nowrap; }
.fx-level-dots { display: flex; gap: 3px; }
.fx-level-dot { width: 18px; height: 4px; border-radius: 2px; background: var(--char-3); }
.fx-level-dot.on { background: var(--volt); }

/* ── BUILD / SPLIT BLOCK (home) ───────────────────── */
.fx-build { background: var(--char-2); border-top: 1px solid var(--char-3); border-bottom: 1px solid var(--char-3); padding: clamp(3rem, 7vw, 6rem) 0; }
.fx-build-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.fx-build-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.9rem, 4vw, 3.2rem); line-height: 0.98; letter-spacing: -0.01em; text-transform: uppercase; color: var(--text-light); margin: 1.2rem 0 1.2rem; }
.fx-build-lede { color: var(--steel-2); font-size: 1.02rem; line-height: 1.7; margin-bottom: 1.8rem; max-width: 50ch; }
.fx-build-list { display: grid; gap: 0.9rem; }
.fx-build-item { display: flex; gap: 0.85rem; align-items: flex-start; }
.fx-build-item svg { width: 22px; height: 22px; flex-shrink: 0; stroke: var(--volt); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; margin-top: 0.1rem; }
.fx-build-item-t { font-family: var(--ff-display); font-weight: 700; font-size: 1.02rem; letter-spacing: 0.02em; text-transform: uppercase; color: var(--text-light); }
.fx-build-item-d { font-size: 0.86rem; color: var(--steel); line-height: 1.5; }
.fx-build-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--char-3); }
.fx-build-media img { width: 100%; height: 100%; object-fit: cover; }
.fx-build-badge { position: absolute; left: 1rem; bottom: 1rem; background: var(--volt); color: var(--ink); font-family: var(--ff-display); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.45rem 0.8rem; border-radius: 4px; }

/* ── PROGRAM / GOAL TABS (home) ───────────────────── */
.fx-goals { padding: clamp(3rem, 6vw, 5rem) 0; }
.fx-goal-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 1.8rem 0 2rem; }
.fx-goal-tab {
  font-family: var(--ff-display); font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--steel-2); padding: 0.55rem 1.1rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); transition: all var(--anim);
}
.fx-goal-tab:hover { border-color: var(--steel); color: var(--text-light); }
.fx-goal-tab.is-active { background: var(--volt); border-color: var(--volt); color: var(--ink); }
.fx-goal-panel { display: none; }
.fx-goal-panel.is-active { display: block; }
.fx-goal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }

/* ── BANNER (volt) ────────────────────────────────── */
.fx-banner { background: var(--volt); color: var(--ink); padding: clamp(3rem, 6vw, 4.5rem) 0; }
.fx-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.fx-banner-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 0.98; letter-spacing: -0.01em; text-transform: uppercase; max-width: 18ch; }
.fx-banner-text { max-width: 40ch; font-size: 0.98rem; line-height: 1.6; font-weight: 500; }
.fx-banner .fx-btn-dark { background: var(--ink); color: var(--volt); }
.fx-banner .fx-btn-dark:hover { background: var(--char); }

/* ── JOURNAL / GUIDES ─────────────────────────────── */
.fx-journal { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--char); }
.fx-journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.fx-article { background: var(--char-2); border: 1px solid var(--char-3); border-radius: var(--radius-md); overflow: hidden; transition: transform var(--anim), border-color var(--anim); }
.fx-article:hover { transform: translateY(-4px); border-color: var(--line); }
.fx-article-img { aspect-ratio: 16/9; overflow: hidden; }
.fx-article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.fx-article:hover .fx-article-img img { transform: scale(1.05); }
.fx-article-body { padding: 1.2rem; }
.fx-article-tag { font-family: var(--ff-display); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--volt); margin-bottom: 0.5rem; }
.fx-article-title { font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; line-height: 1.05; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.5rem; }
.fx-article-excerpt { font-size: 0.85rem; color: var(--steel); line-height: 1.55; margin-bottom: 0.85rem; }
.fx-article-link { font-family: var(--ff-display); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--volt); }

/* ── NEWSLETTER ───────────────────────────────────── */
.fx-news { padding: clamp(3rem, 7vw, 6rem) var(--gutter); text-align: center; background: var(--char-2); border-top: 1px solid var(--char-3); }
.fx-news-inner { max-width: 560px; margin: 0 auto; }
.fx-news-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem); text-transform: uppercase; letter-spacing: -0.01em; color: var(--text-light); margin-bottom: 0.6rem; }
.fx-news-desc { font-size: 0.95rem; color: var(--steel); margin-bottom: 1.5rem; line-height: 1.6; }
.fx-news-form { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.fx-input {
  flex: 1 1 240px; padding: 0.8rem 1rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--char); color: var(--text-light); transition: border-color var(--anim);
}
.fx-input:focus { outline: none; border-color: var(--volt); }
.fx-input::placeholder { color: var(--steel); }
.fx-news-privacy { font-size: 0.76rem; color: var(--steel); margin-top: 0.8rem; }

/* ── FOOTER ───────────────────────────────────────── */
.fx-foot { background: var(--ink); color: var(--steel-2); padding-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--char-3); }
.fx-foot-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 2.5rem; padding: 0 var(--gutter) 2.5rem; max-width: var(--max-w); margin: 0 auto; }
.fx-foot-brand { display: inline-flex; align-items: center; gap: 0.55rem; margin-bottom: 0.9rem; }
.fx-foot-tagline { font-size: 0.86rem; color: var(--steel); line-height: 1.6; margin-bottom: 1.1rem; max-width: 34ch; }
.fx-foot-address { font-size: 0.82rem; color: var(--steel); line-height: 1.8; font-style: normal; }
.fx-foot-hours { font-size: 0.78rem; color: var(--steel); margin-top: 0.8rem; line-height: 1.8; }
.fx-foot-col h4 { font-family: var(--ff-display); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--volt); margin-bottom: 1rem; }
.fx-foot-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.fx-foot-col a { font-size: 0.86rem; color: var(--steel); transition: color var(--anim); }
.fx-foot-col a:hover { color: var(--text-light); }

.fx-foot-lang { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; padding: 0 var(--gutter) 2rem; max-width: var(--max-w); margin: 0 auto; }
.fx-foot-lang-label { font-family: var(--ff-display); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel); }
.rst-lang-btn {
  font-family: var(--ff-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em;
  color: var(--steel); padding: 0.3rem 0.6rem; border-radius: 3px; border: 1px solid var(--line);
  transition: all var(--anim);
}
.rst-lang-btn:hover, .rst-lang-btn.is-active { color: var(--ink); background: var(--volt); border-color: var(--volt); }

.fx-foot-fine { border-top: 1px solid var(--char-3); padding: 1.25rem var(--gutter); display: flex; align-items: center; justify-content: space-between; font-size: 0.76rem; color: var(--steel); flex-wrap: wrap; gap: 0.5rem; max-width: var(--max-w); margin: 0 auto; }
.fx-foot-fine a { color: var(--steel); transition: color var(--anim); }
.fx-foot-fine a:hover { color: var(--text-light); }
.fx-foot-fine-links { display: flex; gap: 1.5rem; }

/* ── CART DRAWER (keep .rst- hooks for cart.js) ───── */
.rst-cart-overlay { position: fixed; inset: 0; background: rgba(8,9,10,0.65); z-index: 190; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.rst-cart-overlay.is-visible { opacity: 1; pointer-events: all; }
.rst-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw); background: var(--char-2); z-index: 200; transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.32,0,0.15,1); display: flex; flex-direction: column; box-shadow: -4px 0 30px rgba(0,0,0,0.5); border-left: 1px solid var(--char-3); }
.rst-drawer.is-open { transform: translateX(0); }
.rst-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--char-3); }
.rst-drawer-title { font-family: var(--ff-display); font-weight: 700; font-size: 1.3rem; text-transform: uppercase; color: var(--text-light); }
.rst-drawer-close { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--steel); font-size: 1.4rem; transition: background var(--anim), color var(--anim); }
.rst-drawer-close:hover { background: var(--char-3); color: var(--volt); }
.rst-drawer-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.rst-drawer-empty { font-size: 0.9rem; color: var(--steel); text-align: center; padding: 2rem 0; }
.rst-drawer-item { display: flex; gap: 0.85rem; position: relative; }
.rst-drawer-item-img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; background: var(--char-3); }
.rst-drawer-item-info { flex: 1; min-width: 0; }
.rst-drawer-item-name { font-size: 0.9rem; font-weight: 600; color: var(--text-light); line-height: 1.3; }
.rst-drawer-item-meta { font-size: 0.7rem; color: var(--steel); margin-top: 0.15rem; }
.rst-drawer-item-row { display: flex; align-items: center; justify-content: space-between; margin-top: 0.4rem; }
.rst-drawer-item-price { font-family: var(--ff-display); font-weight: 700; font-size: 0.95rem; color: var(--text-light); }
.rst-drawer-remove { position: absolute; top: 0; right: 0; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; color: var(--steel); border-radius: 50%; transition: background var(--anim), color var(--anim); }
.rst-drawer-remove:hover { background: var(--char-3); color: var(--volt); }
.rst-qty-ctrl { display: flex; align-items: center; gap: 0.3rem; }
.rst-qty-btn { width: 26px; height: 26px; border-radius: 50%; background: var(--char-3); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; color: var(--text-light); transition: background var(--anim); }
.rst-qty-btn:hover { background: var(--volt); color: var(--ink); }
.rst-qty-val { font-family: var(--ff-display); font-weight: 700; font-size: 0.85rem; min-width: 22px; text-align: center; color: var(--text-light); }
.rst-drawer-foot { padding: 1.25rem 1.5rem; border-top: 1px solid var(--char-3); }
.rst-drawer-subtotal { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; font-size: 0.95rem; font-weight: 600; color: var(--text-light); }
.rst-drawer-subtotal-val { font-family: var(--ff-display); font-weight: 800; font-size: 1.2rem; }
body.rst-drawer-lock { overflow: hidden; }

/* ── TOAST ────────────────────────────────────────── */
#rst-toast-container { position: fixed; bottom: 2rem; left: 2rem; z-index: 300; display: flex; flex-direction: column; gap: 0.5rem; pointer-events: none; }
.rst-toast { background: var(--volt); color: var(--ink); font-weight: 600; padding: 0.8rem 1.25rem; border-radius: var(--radius-sm); font-size: 0.86rem; box-shadow: var(--shadow-lift); opacity: 0; transform: translateY(8px); transition: opacity 0.22s ease, transform 0.22s ease; max-width: 300px; }
.rst-toast.is-visible { opacity: 1; transform: none; }

/* ═══════════════ SHOP PAGE ═══════════════ */
.fx-shop-head { background: var(--char-2); border-bottom: 1px solid var(--char-3); padding: clamp(2rem, 4vw, 3.5rem) 0 0; }
.fx-breadcrumb { font-size: 0.8rem; color: var(--steel); display: flex; gap: 0.5rem; align-items: center; padding-bottom: 0.5rem; }
.fx-breadcrumb a { color: var(--steel); transition: color var(--anim); }
.fx-breadcrumb a:hover { color: var(--volt); }
.fx-breadcrumb-sep { opacity: 0.5; }
.fx-shop-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.6rem); text-transform: uppercase; letter-spacing: -0.01em; color: var(--text-light); margin: 0.5rem 0 1.25rem; }
.fx-shop-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0; flex-wrap: wrap; gap: 1rem; }
.fx-chips-filter { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.fx-filter-chip {
  font-family: var(--ff-display); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.4rem 0.9rem; border-radius: 100px; border: 1.5px solid var(--line); color: var(--steel-2); background: transparent; transition: all var(--anim);
}
.fx-filter-chip:hover { border-color: var(--steel); color: var(--text-light); }
.fx-filter-chip.is-active { background: var(--volt); border-color: var(--volt); color: var(--ink); }
.fx-sort-wrap { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--steel); }
.fx-sort-select { padding: 0.45rem 0.75rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--char); font-size: 0.84rem; color: var(--text-light); cursor: pointer; transition: border-color var(--anim); }
.fx-sort-select:focus { outline: none; border-color: var(--volt); }
.fx-shop-grid { padding: clamp(2rem, 4vw, 3rem) var(--gutter); max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.fx-shop-empty { color: var(--steel); padding: 2rem 0; }

/* ═══════════════ PDP ═══════════════ */
.fx-pdp { padding: clamp(1.5rem, 4vw, 3rem) var(--gutter) clamp(2rem,4vw,3.5rem); max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.fx-pdp-gallery { position: sticky; top: 90px; }
.fx-pdp-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/4; background: var(--char-3); border: 1px solid var(--char-3); }
.fx-pdp-main img { width: 100%; height: 100%; object-fit: cover; }
.fx-pdp-thumbs { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }
.rst-pdp-thumb { width: 70px; height: 70px; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; border: 2px solid var(--char-3); transition: border-color var(--anim), transform var(--anim); background: var(--char-3); }
.rst-pdp-thumb:hover { transform: translateY(-2px); }
.rst-pdp-thumb.is-active { border-color: var(--volt); }
.rst-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.fx-pdp-cat, .rst-pdp-cat { font-family: var(--ff-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--volt); margin-bottom: 0.5rem; }
.fx-pdp-name { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 0.98; letter-spacing: -0.005em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.9rem; }
.fx-pdp-short { color: var(--steel-2); font-size: 1.02rem; line-height: 1.6; margin-bottom: 1.4rem; }
.fx-pdp-specs { background: var(--char-2); border: 1px solid var(--char-3); border-radius: var(--radius-md); padding: 0.4rem 1.25rem; margin-bottom: 1.4rem; }
.fx-pdp-spec-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid var(--char-3); font-size: 0.88rem; }
.fx-pdp-spec-row:last-child { border-bottom: none; }
.fx-pdp-spec-key { color: var(--steel); letter-spacing: 0.02em; }
.fx-pdp-spec-val { color: var(--text-light); font-weight: 600; text-align: right; }
.fx-pdp-notes-title { font-family: var(--ff-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel); margin-bottom: 0.55rem; }
.fx-pdp-notes { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.fx-selector-label, .rst-selector-label { font-family: var(--ff-display); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.45rem; }
.fx-selector-opts { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.rst-selector-opt { padding: 0.45rem 0.9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-size: 0.85rem; color: var(--text-light); cursor: pointer; transition: all var(--anim); }
.rst-selector-opt:hover { border-color: var(--steel); }
.rst-selector-opt.is-active { background: var(--volt); border-color: var(--volt); color: var(--ink); font-weight: 600; }
.fx-pdp-price-row { display: flex; align-items: baseline; gap: 0.55rem; margin: 1.1rem 0; }
.fx-pdp-price { font-family: var(--ff-display); font-weight: 800; font-size: 2.2rem; color: var(--text-light); line-height: 1; }
.fx-pdp-price-unit { font-size: 0.85rem; color: var(--steel); }
.fx-pdp-qty-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.fx-pdp-qty-ctrl { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.fx-pdp-qty-btn { width: 40px; height: 42px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--text-light); transition: background var(--anim); }
.fx-pdp-qty-btn:hover { background: var(--char-3); }
.fx-pdp-qty-val { min-width: 44px; text-align: center; font-family: var(--ff-display); font-weight: 700; font-size: 1rem; color: var(--text-light); border-left: 1px solid var(--line); border-right: 1px solid var(--line); height: 42px; line-height: 42px; }
.fx-pdp-long { max-width: 70ch; margin-top: 2.5rem; border-top: 1px solid var(--char-3); padding-top: 1.6rem; }
.fx-pdp-long h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.7rem; }
.fx-pdp-long p { font-size: 0.94rem; color: var(--steel-2); line-height: 1.75; }
.fx-pdp-care { background: var(--char-2); border-left: 3px solid var(--volt); border-radius: var(--radius-sm); padding: 1rem 1.25rem; margin-top: 1.5rem; }
.fx-pdp-care-label { font-family: var(--ff-display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--volt); margin-bottom: 0.3rem; }
.fx-pdp-care p { font-size: 0.86rem; color: var(--steel-2); line-height: 1.6; }
.fx-related { padding: clamp(2.5rem, 5vw, 4rem) 0; background: var(--char-2); border-top: 1px solid var(--char-3); }
.fx-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }

/* ═══════════════ CART PAGE ═══════════════ */
.fx-cart-page { padding: clamp(2rem, 4vw, 3.5rem) var(--gutter); max-width: 980px; margin: 0 auto; }
.fx-cart-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase; letter-spacing: -0.01em; color: var(--text-light); margin-bottom: 1.75rem; }
.fx-cart-table { width: 100%; border-collapse: collapse; }
.fx-cart-table th { font-family: var(--ff-display); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel); padding: 0 0 0.75rem; border-bottom: 1px solid var(--char-3); text-align: left; }
.fx-cart-table td { padding: 1rem 0; border-bottom: 1px solid var(--char-3); vertical-align: middle; }
.fx-cart-table td:last-child { text-align: right; }
.fx-cart-item-img { width: 60px; height: 60px; border-radius: var(--radius-sm); object-fit: cover; background: var(--char-3); }
.fx-cart-item-name { font-weight: 600; font-size: 0.92rem; color: var(--text-light); }
.fx-cart-item-name a:hover { color: var(--volt); }
.fx-cart-item-meta { font-size: 0.7rem; color: var(--steel); margin-top: 0.15rem; }
.fx-cart-totals { margin-top: 2rem; display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.fx-cart-total-row { display: flex; gap: 3rem; font-size: 0.95rem; color: var(--text-light); align-items: baseline; }
.fx-cart-total-row strong { font-family: var(--ff-display); font-weight: 800; font-size: 1.4rem; }
.fx-cart-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; flex-wrap: wrap; gap: 1rem; }

/* ═══════════════ PAGE HERO (about/contact/legal) ═══════════════ */
.fx-page-hero { position: relative; isolation: isolate; padding: clamp(2.5rem, 6vw, 4.5rem) 0; overflow: hidden; border-bottom: 1px solid var(--char-3); }
.fx-page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.fx-page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.fx-page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(15,16,18,0.95), rgba(15,16,18,0.6)); }
.fx-page-eyebrow { margin-bottom: 1rem; }
.fx-page-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2.2rem, 6vw, 4rem); line-height: 0.95; letter-spacing: -0.01em; text-transform: uppercase; color: var(--text-light); }
.fx-page-sub { font-size: 1rem; color: var(--steel-2); margin-top: 0.7rem; max-width: 52ch; }

/* ── ABOUT ────────────────────────────────────────── */
.fx-about-lead { padding: clamp(2.5rem, 5vw, 4rem) var(--gutter); max-width: var(--max-w); margin: 0 auto; }
.fx-about-lead p { font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.5rem, 3.2vw, 2.3rem); line-height: 1.18; letter-spacing: -0.005em; color: var(--text-light); max-width: 26ch; text-transform: uppercase; }
.fx-about-lead p em { font-style: normal; color: var(--volt); }
.fx-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,4rem); padding: clamp(2rem, 4vw, 3.5rem) var(--gutter); max-width: var(--max-w); margin: 0 auto; align-items: start; }
.fx-about-text h2 { font-family: var(--ff-display); font-weight: 700; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.02em; color: var(--text-light); margin-bottom: 0.9rem; }
.fx-about-text p { font-size: 0.94rem; color: var(--steel-2); line-height: 1.8; margin-bottom: 1rem; }
.fx-about-imgs { display: grid; gap: 1.25rem; }
.fx-about-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--char-3); }
.fx-about-img img { width: 100%; height: 100%; object-fit: cover; }
.fx-values { background: var(--char-2); border-top: 1px solid var(--char-3); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.fx-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.75rem; }
.fx-value-card { background: var(--char); border: 1px solid var(--char-3); border-radius: var(--radius-md); padding: 1.5rem; }
.fx-value-num { font-family: var(--ff-display); font-weight: 800; font-size: 1.6rem; color: var(--volt); margin-bottom: 0.5rem; }
.fx-value-title { font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.5rem; line-height: 1.05; }
.fx-value-body { font-size: 0.88rem; color: var(--steel); line-height: 1.6; }
.fx-process { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.fx-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 1.75rem; counter-reset: step; }
.fx-process-step { counter-increment: step; border-top: 2px solid var(--volt); padding-top: 1rem; }
.fx-process-step::before { content: counter(step, decimal-leading-zero); font-family: var(--ff-display); font-weight: 800; font-size: 1.6rem; color: var(--volt); display: block; margin-bottom: 0.6rem; }
.fx-process-step h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.4rem; }
.fx-process-step p { font-size: 0.85rem; color: var(--steel); line-height: 1.6; }
.fx-team { padding: clamp(2.5rem,5vw,4rem) 0; background: var(--char-2); border-top: 1px solid var(--char-3); }
.fx-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 1.75rem; }
.fx-team-card { background: var(--char); border: 1px solid var(--char-3); border-radius: var(--radius-md); padding: 1.5rem; }
.fx-team-role { font-family: var(--ff-display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--volt); margin-bottom: 0.4rem; }
.fx-team-name { font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; text-transform: uppercase; color: var(--text-light); }
.fx-team-bio { font-size: 0.85rem; color: var(--steel); margin-top: 0.4rem; line-height: 1.6; }

/* ── CONTACT ──────────────────────────────────────── */
.fx-contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); padding: clamp(2.5rem, 5vw, 4rem) var(--gutter); max-width: var(--max-w); margin: 0 auto; align-items: start; }
.fx-contact-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.8rem); text-transform: uppercase; letter-spacing: -0.005em; color: var(--text-light); margin-bottom: 1rem; }
.fx-contact-intro { font-size: 0.95rem; color: var(--steel-2); line-height: 1.7; margin-bottom: 2rem; }
.fx-contact-meta h3 { font-family: var(--ff-display); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--volt); margin-bottom: 0.4rem; margin-top: 1.5rem; }
.fx-contact-meta p { font-size: 0.9rem; color: var(--steel-2); line-height: 1.7; }
.fx-contact-meta a { color: var(--volt); }
.fx-form { display: flex; flex-direction: column; gap: 1.1rem; background: var(--char-2); border: 1px solid var(--char-3); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem); }
.fx-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.fx-form-label { font-family: var(--ff-display); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-light); }
.fx-form-input, .fx-form-textarea, .fx-form-select { padding: 0.75rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--char); color: var(--text-light); font-size: 0.92rem; transition: border-color var(--anim), box-shadow var(--anim); }
.fx-form-input::placeholder, .fx-form-textarea::placeholder { color: var(--steel); }
.fx-form-input:focus, .fx-form-textarea:focus, .fx-form-select:focus { outline: none; border-color: var(--volt); box-shadow: 0 0 0 3px rgba(194,245,61,0.12); }
.fx-form-textarea { min-height: 150px; resize: vertical; }
.fx-form-success { background: rgba(194,245,61,0.1); border: 1px solid var(--volt); color: var(--text-light); padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-size: 0.9rem; display: none; }
.fx-form-success.is-visible { display: block; }

/* ── LEGAL ────────────────────────────────────────── */
.fx-legal { max-width: 800px; margin: 0 auto; padding: clamp(2.5rem, 5vw, 4rem) var(--gutter); }
.fx-legal-meta { font-size: 0.8rem; color: var(--steel); margin-bottom: 2.5rem; }
.fx-legal-section { margin-bottom: 2.5rem; }
.fx-legal-section h2 { font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.02em; color: var(--text-light); margin-bottom: 0.75rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--char-3); }
.fx-legal-section p, .fx-legal-section ul, .fx-legal-section ol { font-size: 0.9rem; color: var(--steel-2); line-height: 1.8; }
.fx-legal-section ul { list-style: disc; padding-left: 1.5rem; }
.fx-legal-section ol { list-style: decimal; padding-left: 1.5rem; }
.fx-legal-section li { margin-bottom: 0.3rem; }
.fx-legal-section p + p { margin-top: 0.75rem; }
.fx-legal-section a { color: var(--volt); }

/* ── SEARCH MODAL (keep rst- ids used by inline JS via getElementById) ── */
.fx-search-overlay { position: fixed; inset: 0; background: rgba(8,9,10,0.75); z-index: 180; display: none; align-items: flex-start; justify-content: center; padding-top: 90px; }
.fx-search-overlay.is-open { display: flex; }
.fx-search-box { background: var(--char-2); border: 1px solid var(--char-3); border-radius: var(--radius-lg); padding: 1.5rem; width: min(560px, 90vw); box-shadow: var(--shadow-lift); }
.fx-search-input { width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-size: 1rem; color: var(--text-light); background: var(--char); }
.fx-search-input:focus { outline: none; border-color: var(--volt); }
.fx-search-input::placeholder { color: var(--steel); }
.fx-search-results { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.4rem; max-height: 320px; overflow-y: auto; }
.fx-search-result { padding: 0.6rem 0.8rem; border-radius: var(--radius-sm); display: flex; gap: 0.75rem; align-items: center; transition: background var(--anim); }
.fx-search-result:hover { background: var(--char-3); }
.fx-search-result img { width: 42px; height: 42px; border-radius: var(--radius-sm); object-fit: cover; background: var(--char-3); }
.fx-search-result-name { font-size: 0.9rem; font-weight: 600; color: var(--text-light); }
.fx-search-result-meta { font-size: 0.7rem; color: var(--steel); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .fx-cats-grid { grid-template-columns: repeat(3, 1fr); }
  .fx-shop-grid, .fx-related-grid, .fx-goal-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .fx-nav { display: none; }
  .fx-burger { display: flex; }
  .fx-head-cta { display: none; }
  .fx-mobile-nav.is-open { display: flex; }
  .fx-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .fx-stat:nth-child(3) { border-left: none; padding-left: 0; }
  .fx-build-grid { grid-template-columns: 1fr; gap: 2rem; }
  .fx-build-media { aspect-ratio: 16/10; max-height: 420px; }
  .fx-journal-grid { grid-template-columns: repeat(2, 1fr); }
  .fx-shop-grid, .fx-related-grid, .fx-goal-grid { grid-template-columns: repeat(2, 1fr); }
  .fx-pdp { grid-template-columns: 1fr; gap: 1.75rem; }
  .fx-pdp-gallery { position: static; }
  .fx-foot-grid { grid-template-columns: repeat(2, 1fr); }
  .fx-about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .fx-contact { grid-template-columns: 1fr; gap: 2rem; }
  .fx-values-grid { grid-template-columns: repeat(2, 1fr); }
  .fx-process-steps { grid-template-columns: repeat(2, 1fr); }
  .fx-banner-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .fx-hero-ctas { flex-direction: column; align-items: stretch; }
  .fx-hero-ctas .fx-btn { width: 100%; }
  .fx-hero-stats { grid-template-columns: 1fr 1fr; }
  .fx-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .fx-journal-grid { grid-template-columns: 1fr; }
  .fx-shop-grid, .fx-related-grid, .fx-goal-grid { grid-template-columns: 1fr; }
  .fx-foot-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .fx-values-grid { grid-template-columns: 1fr; }
  .fx-process-steps { grid-template-columns: 1fr; }
  .fx-cart-table th:nth-child(3), .fx-cart-table td:nth-child(3) { display: none; }
}
