/* ============================================================
   FR FORGE design system v2 — modern dark, single flame accent
   ============================================================ */
:root {
  --bg: #0a0b0e;
  --bg-raised: #101218;
  --bg-card: #13161d;
  --bg-hover: #1a1e27;
  --border: rgba(148, 163, 190, 0.09);
  --border-strong: rgba(148, 163, 190, 0.18);
  --text: #eceef2;
  --text-dim: #98a0b3;
  --text-faint: #646d82;
  --flame: #ff6a1f;
  --flame-hot: #ff8a4d;
  --flame-deep: #cc4d08;
  --flame-soft: rgba(255, 106, 31, 0.12);
  --safety: #ffcf4d;
  --danger: #ff5c5c;
  --success: #40d98c;
  --info: #57a6ff;
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius-lg: 24px;
  --radius: 16px;
  --radius-sm: 11px;
  /* Soft, multi-layer elevation (Notion-style craft, tuned for dark). */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.28), 0 2px 6px rgba(0,0,0,.18);
  --shadow: 0 1px 2px rgba(0,0,0,.24), 0 4px 12px rgba(0,0,0,.26), 0 14px 30px rgba(0,0,0,.30);
  --shadow-lg: 0 2px 6px rgba(0,0,0,.28), 0 14px 32px rgba(0,0,0,.36), 0 34px 74px rgba(0,0,0,.5);
  --hairline-top: inset 0 1px 0 rgba(255,255,255,.045);
  --focus-ring: 0 0 0 3px rgba(255,106,31,.28);
  --max-w: 1240px;
  /* modern accents */
  --grad-flame: linear-gradient(135deg, #ff8a4d 0%, #ff6a1f 45%, #f2560a 100%);
  --grad-surface: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0));
  --glow-flame: 0 8px 30px -6px rgba(255, 106, 31, 0.45);
  --ring: 0 0 0 1px rgba(148, 163, 190, 0.12);
  /* 21st-style vibrant fire spectrum + cool counter-accent */
  --ember: #ff3b30;
  --amber: #ffb020;
  --spark: #6c8cff;
  --grad-fire: linear-gradient(100deg, #ff3b30 0%, #ff6a1f 42%, #ffb020 100%);
  --grad-fire-soft: linear-gradient(100deg, rgba(255,59,48,0.9), rgba(255,106,31,0.9) 45%, rgba(255,176,32,0.9));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--flame); color: #17100a; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.22rem; }
h4 { font-size: 1rem; }

a { color: inherit; text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--flame-hot); }

img, svg { display: block; max-width: 100%; }

button { font-family: var(--font-body); }

:focus-visible {
  outline: 2px solid var(--flame);
  outline-offset: 2px;
  border-radius: 4px;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.accent { color: var(--flame); }
.muted { color: var(--text-dim); }
.small { font-size: 0.85rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.2s, transform 0.15s;
  background: var(--flame);
  color: #17100a;
}
.btn:hover {
  background: var(--flame-hot);
  color: #17100a;
  box-shadow: 0 4px 24px rgba(255, 106, 31, 0.3);
  transform: translateY(-1px);
}
.btn:active { transform: translateY(0); box-shadow: none; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  background: var(--bg-hover);
  color: var(--text);
  border-color: var(--flame);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  padding: 8px 14px;
  font-size: 0.88rem;
}
.btn-ghost:hover { background: var(--bg-hover); color: var(--text); box-shadow: none; transform: none; }

.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #ff7676; color: #fff; box-shadow: 0 4px 20px rgba(255, 92, 92, 0.3); }

.btn-sm { padding: 7px 15px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Forms ---------- */
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 7px;
}
input[type='text'], input[type='email'], input[type='password'], input[type='number'],
input[type='search'], input[type='date'], select, textarea {
  width: 100%;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 11px 15px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
input:hover, select:hover, textarea:hover { border-color: var(--border-strong); }
input:focus, select:focus, textarea:focus {
  border-color: var(--flame);
  background: var(--bg-card);
}
input::placeholder, textarea::placeholder { color: var(--text-faint); }
textarea { resize: vertical; min-height: 96px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-error {
  background: rgba(255, 92, 92, 0.08);
  border: 1px solid rgba(255, 92, 92, 0.3);
  color: #ffb8b8;
  border-radius: var(--radius-sm);
  padding: 11px 15px;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* ---------- Promo strip ---------- */
.promo-strip {
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  font-weight: 500;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}
.promo-strip code {
  background: var(--flame-soft);
  color: var(--flame-hot);
  padding: 1px 8px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 11, 14, 0.85);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 15px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 9px;
}
.logo .flame-mark {
  color: var(--flame);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--flame-soft);
}
.logo:hover { color: var(--text); }

.main-nav { display: flex; gap: 2px; flex-wrap: wrap; }
.main-nav a {
  font-weight: 500;
  font-size: 0.92rem;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--text-dim);
}
.main-nav a:hover { color: var(--text); background: var(--bg-hover); }
.main-nav a.active { color: var(--flame-hot); background: var(--flame-soft); }

.header-search { flex: 1; max-width: 340px; margin-left: auto; }
.header-search form { position: relative; }
.header-search input { padding: 9px 40px 9px 16px; border-radius: 999px; font-size: 0.9rem; }
.header-search button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-faint);
  cursor: pointer;
  padding: 6px;
  display: flex;
  border-radius: 50%;
}
.header-search button:hover { color: var(--flame); }

.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  color: var(--text-dim);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.icon-btn:hover { color: var(--text); background: var(--bg-hover); }
.cart-count {
  position: absolute;
  top: 0;
  right: 2px;
  background: var(--flame);
  color: #17100a;
  font-size: 0.68rem;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 460px at 85% -12%, rgba(255, 106, 31, 0.13), transparent 62%),
    radial-gradient(700px 340px at 0% 115%, rgba(255, 207, 77, 0.05), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 190, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 190, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(700px 500px at 70% 20%, black, transparent);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 88px 24px 96px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border-strong);
  background: var(--bg-raised);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  margin-bottom: 22px;
}
.hero-kicker::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--flame);
  box-shadow: 0 0 10px var(--flame);
}
.hero h1 { font-size: clamp(2.5rem, 5.2vw, 4rem); letter-spacing: -0.03em; }
.hero h1 .torch {
  color: var(--flame-hot);
}
.hero p.lede { color: var(--text-dim); font-size: 1.08rem; max-width: 33rem; margin: 18px 0 30px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-art { display: flex; justify-content: center; position: relative; }
.hero-art svg { width: 100%; max-width: 380px; filter: drop-shadow(0 28px 56px rgba(255, 106, 31, 0.16)); }

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: var(--max-w);
  margin: -38px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.trust-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 17px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: var(--shadow-sm);
}
.trust-item .t-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--flame-soft);
  color: var(--flame-hot);
  flex-shrink: 0;
}
.trust-item strong { display: block; font-family: var(--font-display); font-size: 0.95rem; letter-spacing: -0.01em; }
.trust-item span { color: var(--text-faint); font-size: 0.78rem; }

/* ---------- Sections ---------- */
.section { padding: 72px 0 20px; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}
.section-head .rule { flex: 1; height: 1px; background: var(--border); margin: 0 8px; }
.section-head a { font-weight: 600; color: var(--flame); font-size: 0.9rem; }
.section-head a:hover { color: var(--flame-hot); }

/* ---------- Flash sale banner ---------- */
.flash-banner { margin: 48px auto 0; max-width: var(--max-w); padding: 0 24px; }
.flash-inner {
  background:
    radial-gradient(500px 180px at 92% 0%, rgba(255, 207, 77, 0.1), transparent 55%),
    linear-gradient(105deg, #191009 0%, #241307 55%, #2e1706 100%);
  border: 1px solid rgba(255, 106, 31, 0.28);
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.flash-inner h2 { margin: 0; color: var(--text); letter-spacing: -0.02em; }
.flash-inner p { margin: 6px 0 0; color: var(--text-dim); }
.countdown { display: flex; gap: 8px; }
.countdown .unit {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 106, 31, 0.22);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  min-width: 60px;
  text-align: center;
}
.countdown .num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--flame-hot);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.countdown .lbl { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-faint); }

/* ---------- Department cards ---------- */
.dept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dept-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 34px 32px;
  min-height: 190px;
  display: flex;
  align-items: center;
  transition: border-color 0.15s, transform 0.2s, box-shadow 0.25s;
}
.dept-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--text);
}
.dept-card h3 { font-size: 1.5rem; letter-spacing: -0.02em; }
.dept-card p { max-width: 26rem; margin: 4px 0 16px; }
.dept-card .btn { pointer-events: none; }
.dept-men {
  background:
    radial-gradient(420px 220px at 92% 10%, rgba(255, 106, 31, 0.18), transparent 65%),
    var(--bg-card);
}
.dept-women {
  background:
    radial-gradient(420px 220px at 92% 10%, rgba(255, 128, 156, 0.16), transparent 65%),
    var(--bg-card);
}
@media (max-width: 760px) {
  .dept-grid { grid-template-columns: 1fr; }
}

/* ---------- Category tiles ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.category-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px 20px;
  text-align: center;
  transition: border-color 0.15s, transform 0.2s, background 0.15s;
}
.category-tile:hover {
  border-color: var(--border-strong);
  background: var(--bg-hover);
  transform: translateY(-3px);
  color: var(--text);
}
.category-tile .c-icon {
  font-size: 1.45rem;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.category-tile strong { font-family: var(--font-display); display: block; font-size: 0.95rem; letter-spacing: -0.01em; }
.category-tile span { color: var(--text-faint); font-size: 0.78rem; }

/* ---------- Product grid & cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, transform 0.2s, box-shadow 0.25s;
}
.product-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: var(--text);
}
.product-media { position: relative; aspect-ratio: 4 / 3.4; background: var(--bg-raised); }
.product-media svg { width: 100%; height: 100%; }
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.66rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(10, 11, 14, 0.75);
  backdrop-filter: blur(6px);
  color: var(--flame-hot);
  border: 1px solid rgba(255, 106, 31, 0.35);
}
.badge.badge-sale { color: var(--safety); border-color: rgba(255, 207, 77, 0.35); }
.badge.badge-cat { color: #ff8484; border-color: rgba(255, 92, 92, 0.4); }
.cat-chip {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 0.68rem;
  font-weight: 600;
  background: rgba(10, 11, 14, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-strong);
  color: var(--text-dim);
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.product-body { padding: 15px 17px 17px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.product-body .p-cat { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); font-weight: 600; }
.product-body h3 { font-size: 1.02rem; margin: 0; letter-spacing: -0.01em; }
.p-rating { font-size: 0.78rem; color: var(--safety); letter-spacing: 0.05em; }
.p-rating .rc { color: var(--text-faint); letter-spacing: 0; }
.p-price { margin-top: auto; padding-top: 10px; display: flex; align-items: baseline; gap: 8px; }
.p-price .now { font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; }
.p-price .was { color: var(--text-faint); text-decoration: line-through; font-size: 0.85rem; }
.p-price .save { color: var(--success); font-size: 0.75rem; font-weight: 600; }

/* ---------- Shop layout ---------- */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 30px; padding: 34px 0 72px; align-items: start; }
.filters {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 88px;
}
.filters h4 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 20px 0 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.filters h4:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 0;
  cursor: pointer;
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: color 0.12s;
}
.filter-option:hover { color: var(--text); }
.filter-option input { width: auto; accent-color: var(--flame); }
.filter-option .cnt { margin-left: auto; color: var(--text-faint); font-size: 0.75rem; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.shop-toolbar select { width: auto; border-radius: 999px; padding: 9px 16px; font-size: 0.88rem; }
.result-count { color: var(--text-faint); font-size: 0.86rem; }

/* ---------- Product page ---------- */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 40px 0 24px; }
.product-hero-img {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.product-hero-img svg { width: 100%; height: auto; }
.spec-badges { display: flex; gap: 7px; flex-wrap: wrap; margin: 14px 0 4px; }
.spec-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid var(--border-strong);
  background: var(--bg-raised);
  color: var(--text-dim);
  padding: 4px 11px;
  border-radius: 999px;
}
.spec-badge.hot { border-color: rgba(255, 106, 31, 0.35); color: var(--flame-hot); background: var(--flame-soft); }
.size-grid { display: flex; gap: 8px; flex-wrap: wrap; margin: 8px 0 4px; }
.size-btn {
  min-width: 54px;
  padding: 9px 13px;
  background: var(--bg-raised);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s, color 0.12s;
}
.size-btn:hover { border-color: var(--flame); }
.size-btn.selected { background: var(--flame); border-color: var(--flame); color: #17100a; }
.size-btn.out { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }
.stock-note { font-size: 0.82rem; margin: 6px 0 12px; }
.stock-note.low { color: var(--safety); }
.stock-note.ok { color: var(--success); }
.stock-note.out { color: var(--danger); }
.qty-row { display: flex; gap: 12px; align-items: center; margin: 16px 0 20px; }
.qty-stepper {
  display: inline-flex;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg-raised);
}
.qty-stepper button {
  background: transparent;
  border: none;
  color: var(--text);
  width: 38px;
  height: 42px;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.12s;
}
.qty-stepper button:hover { background: var(--bg-hover); }
.qty-stepper .qv { width: 44px; display: flex; align-items: center; justify-content: center; font-weight: 600; font-variant-numeric: tabular-nums; }
.feature-list { list-style: none; padding: 0; margin: 10px 0; }
.feature-list li { padding: 5px 0 5px 24px; position: relative; color: var(--text-dim); }
.feature-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--flame);
  transform: rotate(45deg);
}

/* ---------- Cart / checkout ---------- */
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 30px; padding: 40px 0 72px; align-items: start; }
.cart-lines { display: flex; flex-direction: column; gap: 12px; }
.cart-line {
  display: grid;
  grid-template-columns: 88px 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 17px;
}
.cart-line .thumb { width: 88px; height: 74px; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-raised); }
.cart-line .thumb svg { width: 100%; height: 100%; }
.cart-line .li-name { font-weight: 600; }
.cart-line .li-meta { color: var(--text-faint); font-size: 0.82rem; }
.line-remove {
  background: none;
  border: none;
  color: var(--text-faint);
  cursor: pointer;
  font-size: 1rem;
  padding: 8px;
  border-radius: 50%;
  transition: color 0.12s, background 0.12s;
}
.line-remove:hover { color: var(--danger); background: rgba(255, 92, 92, 0.08); }
.summary-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 88px;
}
.summary-row { display: flex; justify-content: space-between; padding: 6px 0; color: var(--text-dim); font-size: 0.93rem; }
.summary-row.total { border-top: 1px solid var(--border-strong); margin-top: 12px; padding-top: 15px; color: var(--text); font-weight: 700; font-size: 1.12rem; }
.summary-row .free { color: var(--success); font-weight: 600; }
.summary-row .disc { color: var(--success); }
.promo-row { display: flex; gap: 8px; margin: 14px 0; }
.promo-applied {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(64, 217, 140, 0.07);
  border: 1px dashed rgba(64, 217, 140, 0.35);
  color: var(--success);
  border-radius: var(--radius-sm);
  padding: 9px 13px;
  font-size: 0.87rem;
  margin: 14px 0;
}
.promo-applied button { background: none; border: none; color: var(--text-faint); cursor: pointer; }
.free-ship-meter { margin: 4px 0 16px; }
.free-ship-meter .track { height: 6px; background: var(--bg-raised); border-radius: 3px; overflow: hidden; }
.free-ship-meter .fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--flame-deep), var(--flame)); }
.free-ship-meter p { font-size: 0.79rem; color: var(--text-faint); margin: 7px 0 0; }

.checkout-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; padding: 40px 0 72px; align-items: start; }
.panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.panel h3 { border-bottom: 1px solid var(--border); padding-bottom: 12px; margin-bottom: 18px; }
.mock-note {
  background: rgba(87, 166, 255, 0.06);
  border: 1px solid rgba(87, 166, 255, 0.25);
  color: #a9cfff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  margin-bottom: 16px;
}

/* ---------- Auth pages ---------- */
.auth-wrap { max-width: 430px; margin: 64px auto; padding: 0 24px; }
.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
}
.auth-card h1 { font-size: 1.7rem; }
.auth-alt { text-align: center; margin-top: 18px; color: var(--text-dim); font-size: 0.9rem; }
.auth-alt a { color: var(--flame); font-weight: 600; }
.demo-creds {
  margin-top: 20px;
  border-top: 1px dashed var(--border-strong);
  padding-top: 14px;
  font-size: 0.79rem;
  color: var(--text-faint);
  line-height: 1.8;
}
.demo-creds code { background: var(--bg-raised); padding: 1px 7px; border-radius: 5px; color: var(--text-dim); }

/* ---------- Account / orders ---------- */
.order-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 14px; }
.order-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.status-pill {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid;
}
.status-pending { color: var(--text-dim); border-color: var(--border-strong); }
.status-processing { color: var(--info); border-color: rgba(87, 166, 255, 0.35); background: rgba(87, 166, 255, 0.07); }
.status-shipped { color: var(--safety); border-color: rgba(255, 207, 77, 0.35); background: rgba(255, 207, 77, 0.06); }
.status-delivered { color: var(--success); border-color: rgba(64, 217, 140, 0.35); background: rgba(64, 217, 140, 0.07); }
.status-cancelled { color: var(--danger); border-color: rgba(255, 92, 92, 0.35); background: rgba(255, 92, 92, 0.07); }

/* ---------- Admin ---------- */
.admin-layout { display: grid; grid-template-columns: 212px 1fr; gap: 28px; padding: 32px 0 72px; align-items: start; }
.admin-nav {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  position: sticky;
  top: 88px;
}
.admin-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  font-weight: 500;
  font-size: 0.92rem;
  transition: background 0.12s, color 0.12s;
}
.admin-nav a:hover { background: var(--bg-hover); color: var(--text); }
.admin-nav a.active { background: var(--flame-soft); color: var(--flame-hot); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); gap: 14px; margin-bottom: 28px; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; }
.stat-card .s-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); font-weight: 600; }
.stat-card .s-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 2px;
  font-variant-numeric: tabular-nums;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
}
.data-table th {
  text-align: left;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  padding: 12px 15px;
  border-bottom: 1px solid var(--border-strong);
  background: var(--bg-raised);
  font-weight: 600;
}
.data-table td { padding: 12px 15px; border-bottom: 1px solid var(--border); font-size: 0.9rem; vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr { transition: background 0.1s; }
.data-table tbody tr:hover td { background: var(--bg-hover); }
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.low-qty { color: var(--danger); font-weight: 700; }
.inline-actions { display: flex; gap: 6px; flex-wrap: wrap; }

/* ---------- Plugins & AI Studio ---------- */
.plugin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 14px;
}
.plugin-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.15s;
}
.plugin-card.on { border-color: rgba(255, 106, 31, 0.3); }
.plugin-head { display: flex; align-items: center; gap: 10px; }
.plugin-head strong { flex: 1; font-family: var(--font-display); font-size: 0.98rem; letter-spacing: -0.01em; }
.plugin-icon { font-size: 1.25rem; }
.plugin-card p { margin: 0; }
.plugin-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 6px; }
.plugin-status { font-size: 0.76rem; color: var(--text-faint); }
.plugin-status.live { color: var(--success); }

.switch {
  width: 42px;
  height: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: var(--bg-raised);
  cursor: pointer;
  position: relative;
  padding: 0;
  transition: background 0.18s, border-color 0.18s;
  flex-shrink: 0;
}
.switch .knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--text-faint);
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), background 0.18s;
}
.switch.on { background: var(--flame); border-color: var(--flame); }
.switch.on .knob { transform: translateX(18px); background: #17100a; }

.ai-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background:
    radial-gradient(420px 130px at 6% 0%, rgba(255, 106, 31, 0.1), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}

/* ---------- Marketing popup ---------- */
.popup-card { padding: 34px 32px 26px; }
.popup-flame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--flame-soft);
  color: var(--flame-hot);
}
.popup-code {
  display: inline-block;
  border: 1px dashed rgba(255, 106, 31, 0.45);
  background: var(--flame-soft);
  color: var(--flame-hot);
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.popup-code strong { letter-spacing: 0.08em; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 9, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 44px 20px;
  z-index: 100;
  overflow-y: auto;
  animation: fade-in 0.15s ease;
}
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 640px;
  box-shadow: var(--shadow);
  animation: modal-in 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.modal-head button {
  background: none;
  border: none;
  color: var(--text-faint);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
}
.modal-head button:hover { color: var(--text); background: var(--bg-hover); }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-in {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Toasts ---------- */
.toast-stack { position: fixed; bottom: 22px; right: 22px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: rgba(19, 22, 29, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--flame);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  min-width: 260px;
  max-width: 360px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  animation: toast-in 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.toast.success { border-color: var(--success); }
.toast.error { border-color: var(--danger); }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Newsletter / footer ---------- */
.newsletter-band {
  margin-top: 72px;
  background:
    radial-gradient(640px 200px at 50% 0%, rgba(255, 106, 31, 0.09), transparent 60%),
    var(--bg-raised);
  border-top: 1px solid var(--border);
  padding: 60px 24px;
  text-align: center;
}
.newsletter-band form { display: flex; gap: 10px; max-width: 440px; margin: 22px auto 0; }
.newsletter-band input { border-radius: 999px; padding: 11px 18px; }
.site-footer { background: #07080b; border-top: 1px solid var(--border); padding: 52px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid h4 { font-size: 0.78rem; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 4px 0; }
.footer-grid a { color: var(--text-dim); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--flame-hot); }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 38px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-faint);
  font-size: 0.8rem;
}

/* ---------- Page basics ---------- */
.page-title-band { background: var(--bg-raised); border-bottom: 1px solid var(--border); padding: 38px 0; }
.page-title-band p { color: var(--text-dim); margin: 4px 0 0; }
.empty-state { text-align: center; padding: 72px 20px; color: var(--text-dim); }
.empty-state .big { font-size: 2.6rem; margin-bottom: 12px; opacity: 0.8; }
.spinner {
  width: 30px;
  height: 30px;
  border: 3px solid var(--border-strong);
  border-top-color: var(--flame);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 64px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
.breadcrumbs { font-size: 0.8rem; color: var(--text-faint); padding: 20px 0 0; }
.breadcrumbs a { color: var(--text-dim); }
.breadcrumbs a:hover { color: var(--flame-hot); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding: 56px 24px 68px; }
  .hero-art { display: none; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .product-layout { grid-template-columns: 1fr; }
  .cart-layout, .checkout-grid { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-nav { position: static; display: flex; flex-wrap: wrap; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-search { display: none; }
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 70px 1fr; grid-auto-rows: auto; }
  .cart-line .thumb { width: 70px; height: 60px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------------------------------------------------- Phase 2: Growth */
.review-summary { display: flex; align-items: center; gap: 10px; margin: 6px 0 4px; color: var(--text-faint); }
.review-summary strong { color: var(--text); font-size: 1.2rem; }
.review-list { display: grid; gap: 14px; margin-top: 12px; }
.review-item { border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; background: rgba(255,255,255,0.02); }
.review-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.review-head .p-rating { color: #ffb020; }
.review-title { font-weight: 600; margin: 6px 0 2px; }
.newsletter-form { display: flex; gap: 8px; margin-top: 10px; }
.newsletter-form input { flex: 1; min-width: 0; padding: 9px 12px; border-radius: 10px; border: 1px solid var(--border); background: var(--surface, #12151d); color: var(--text); }
.wishlist-cell { display: flex; flex-direction: column; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ----------------------------------------------------- Phase 3: Scale */
.ship-methods { display: grid; gap: 10px; }
.ship-option { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--border); border-radius: 12px; cursor: pointer; }
.ship-option.selected { border-color: var(--accent, #ff6a1f); box-shadow: 0 0 0 1px var(--accent, #ff6a1f) inset; }
.ship-option span { flex: 1; }
.ship-option input { accent-color: var(--accent, #ff6a1f); }

/* ------------------------------------------------ Line-icon system + pages */
.ic { width: 1em; height: 1em; display: inline-block; vertical-align: -0.15em; flex: 0 0 auto; }
.ic-lg { width: 1.4em; height: 1.4em; }
.ic-3x { width: 2.4em; height: 2.4em; }
.stars { display: inline-flex; align-items: center; gap: 1px; color: #ffb020; vertical-align: middle; }
.stars .ic-star { width: 1.05em; height: 1.05em; }
.p-rating { display: inline-flex; align-items: center; gap: 6px; }
.p-rating .stars { color: #ffb020; }

/* header / nav icon buttons */
.icon-btn { display: inline-flex; align-items: center; gap: 6px; }
.icon-btn .ic { width: 1.15em; height: 1.15em; }
.main-nav { flex-wrap: wrap; }

/* trust bar + category tiles */
.t-icon { display: inline-flex; align-items: center; justify-content: center; color: var(--accent, #ff6a1f); }
.t-icon .ic { width: 1.7em; height: 1.7em; }
.c-icon { display: flex; align-items: center; justify-content: center; color: var(--accent, #ff6a1f); }
.c-icon .ic-cat { width: 2.3em; height: 2.3em; }

/* empty-state + success marks */
.empty-state .big svg { width: 60px; height: 60px; opacity: 0.55; }
.success-mark svg { width: 58px; height: 58px; color: var(--text-faint); }
.success-mark.ok svg { color: #3ecf8e; }
.secure-line { display: inline-flex; align-items: center; gap: 6px; justify-content: center; }

/* admin sidebar nav */
.admin-nav a { display: flex; align-items: center; gap: 9px; }
.admin-nav a .ic { width: 1.15em; height: 1.15em; opacity: 0.85; }
.ic-dl { transform: rotate(90deg); }

/* generic 2-col content + notices */
.content-2col { display: grid; grid-template-columns: 1.6fr 1fr; gap: 30px; align-items: start; padding-top: 24px; padding-bottom: 40px; }
.notice-ok { display: flex; align-items: center; gap: 8px; background: rgba(62,207,142,0.12); border: 1px solid rgba(62,207,142,0.4); color: #7ee0b0; padding: 12px 14px; border-radius: 12px; margin-bottom: 16px; }
.notice-ok .ic { color: #3ecf8e; }

/* contact */
.contact-aside { display: grid; gap: 12px; }
.contact-card { display: flex; gap: 12px; align-items: flex-start; border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; }
.contact-ic { display: inline-flex; color: var(--accent, #ff6a1f); }
.contact-ic .ic { width: 1.5em; height: 1.5em; }
.contact-card p { margin: 2px 0 0; }

/* about */
.about-page { padding: 26px 0 48px; }
.about-lead { max-width: 760px; font-size: 1.08rem; line-height: 1.7; margin-bottom: 30px; }
.about-lead p { margin: 0 0 14px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-bottom: 34px; }
.value-card { border: 1px solid var(--border); border-radius: 16px; padding: 20px; }
.value-ic { display: inline-flex; color: var(--accent, #ff6a1f); margin-bottom: 10px; }
.value-ic .ic { width: 1.9em; height: 1.9em; }
.value-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.standards-band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 26px 0; margin-bottom: 30px; }
.standards-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; margin-top: 14px; }
.standards-row strong { display: block; color: var(--accent, #ff6a1f); }
.about-cta { text-align: center; padding: 10px 0; }
.about-cta .hero-ctas { justify-content: center; margin-top: 14px; }

/* reviews page */
.reviews-page { padding: 26px 0 48px; }
.reviews-hero { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.reviews-hero .big-score { font-size: 3.2rem; font-weight: 700; line-height: 1; font-family: var(--font-display); }
.reviews-masonry { columns: 3 300px; column-gap: 16px; }
.reviews-masonry .review-item { break-inside: avoid; margin-bottom: 16px; }
.review-prod { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 0.85rem; color: var(--text-faint); }
.review-prod .ic { width: 1.1em; height: 1.1em; }

/* admin messages */
.message-list { display: grid; gap: 14px; }
.message-card { border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px; }
.message-card.unread { border-color: var(--accent, #ff6a1f); box-shadow: 0 0 0 1px var(--accent, #ff6a1f) inset; }
.message-top { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.message-top a { display: block; }
.message-subject { font-weight: 600; margin: 8px 0 4px; }
.message-body { margin: 4px 0 12px; white-space: pre-wrap; }

@media (max-width: 760px) {
  .content-2col { grid-template-columns: 1fr; }
  .reviews-masonry { columns: 1; }
}

/* ============================================================
   MODERN REFRESH — ambient depth, gradients, softer motion
   (appended last so it layers over the base system)
   ============================================================ */

/* Ambient page glow — subtle mesh behind everything */
body {
  background-color: var(--bg);
  background-image:
    radial-gradient(1100px 620px at 78% -8%, rgba(255, 106, 31, 0.10), transparent 60%),
    radial-gradient(900px 560px at 8% 4%, rgba(87, 166, 255, 0.06), transparent 55%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* Smoother global motion */
.btn, .product-card, .category-tile, .trust-item, .panel, .value-card,
.contact-card, .stat-card, .review-item, .ship-option, .order-card, .message-card {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.25s ease, border-color 0.2s ease, background 0.2s ease;
}

/* ---------- Buttons: gradient + glow ---------- */
.btn {
  background: var(--grad-flame);
  color: #1a0e05;
  font-weight: 650;
  box-shadow: var(--glow-flame), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn:hover {
  background: var(--grad-flame);
  filter: brightness(1.06);
  box-shadow: 0 12px 34px -6px rgba(255, 106, 31, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.btn-outline, .btn-ghost, .btn-danger { box-shadow: none; }
.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.05); filter: none; box-shadow: var(--ring); }
.btn-ghost:hover { filter: none; }

/* ---------- Header: deeper glass ---------- */
.site-header {
  background: rgba(10, 11, 14, 0.72);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(148,163,190,0.18), transparent) 1;
}
.logo .flame-mark {
  background: var(--grad-flame);
  color: #fff;
  border-radius: 10px;
  box-shadow: var(--glow-flame);
}
.main-nav a { font-weight: 550; }

/* ---------- Hero: mesh glow + glass kicker ---------- */
.hero { overflow: hidden; }
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(60% 70% at 82% 30%, rgba(255, 138, 77, 0.18), transparent 62%),
    radial-gradient(45% 55% at 12% 85%, rgba(87, 166, 255, 0.08), transparent 60%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-kicker {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}
.hero-art svg { filter: drop-shadow(0 30px 70px rgba(255, 106, 31, 0.28)); animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Cards: glassy surface, media zoom, lift ---------- */
.product-card {
  background: var(--bg-card);
  background-image: var(--grad-surface);
  border-radius: var(--radius);
  box-shadow: var(--ring);
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--glow-flame);
  border-color: var(--border-strong);
}
.product-media { overflow: hidden; }
.product-media svg { transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.product-card:hover .product-media svg { transform: scale(1.06); }
.product-media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 8, 11, 0.5));
}

/* ---------- Category tiles + trust items ---------- */
.category-tile, .trust-item {
  background: var(--bg-card);
  background-image: var(--grad-surface);
  border-radius: var(--radius);
  box-shadow: var(--ring);
}
.category-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow), var(--glow-flame);
}
.category-tile .c-icon, .trust-item .t-icon {
  background: var(--flame-soft);
  border: 1px solid rgba(255, 106, 31, 0.22);
  border-radius: 14px;
  padding: 10px;
  color: var(--flame-hot);
}

/* ---------- Panels / summary / stat cards ---------- */
.panel, .summary-card {
  background: var(--bg-card);
  background-image: var(--grad-surface);
  border-radius: var(--radius);
  box-shadow: var(--ring), var(--shadow-sm);
}
.stat-card {
  background: var(--bg-card);
  background-image: var(--grad-surface);
  border-radius: var(--radius);
  box-shadow: var(--ring);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--ring), var(--shadow-sm); }
.stat-card .s-value {
  background: var(--grad-flame);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Section heads + page band ---------- */
.section-head h2 { position: relative; }
.page-title-band {
  background:
    radial-gradient(80% 160% at 0% 0%, rgba(255, 106, 31, 0.10), transparent 60%),
    var(--bg-raised);
}

/* ---------- Footer top hairline glow ---------- */
.site-footer {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(255,106,31,0.35), rgba(148,163,190,0.14), transparent) 1;
}

/* ---------- Reviews hero score gradient ---------- */
.reviews-hero .big-score {
  color: var(--flame-hot);
}

@media (prefers-reduced-motion: reduce) {
  .hero-art svg { animation: none; }
}

/* ------------------------------------------- Standalone admin panel chrome */
.admin-body {
  background-image:
    radial-gradient(900px 500px at 90% -10%, rgba(255, 106, 31, 0.07), transparent 60%);
}
.admin-topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 11, 14, 0.85);
  backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}
.admin-topbar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 13px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.admin-brand {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  display: inline-flex; align-items: center; gap: 10px; letter-spacing: -0.01em;
}
.admin-mark {
  width: 30px; height: 30px; border-radius: 9px; display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--grad-flame); color: #fff; box-shadow: var(--glow-flame);
}
.admin-mark .ic { width: 1.05em; height: 1.05em; }
.admin-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--flame-hot); background: var(--flame-soft);
  border: 1px solid rgba(255, 106, 31, 0.25); padding: 3px 9px; border-radius: 999px;
}
.admin-topbar-actions { display: flex; align-items: center; gap: 10px; }
.admin-foot { border-top: 1px solid var(--border); padding: 18px 0; margin-top: 48px; }

/* ---------------------------------------------------- Department band */
.dept-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.dept-tile {
  display: flex; align-items: center; gap: 16px; padding: 22px 24px;
  background: var(--bg-card); background-image: var(--grad-surface);
  border-radius: var(--radius); box-shadow: var(--ring);
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease;
}
.dept-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow), var(--glow-flame); color: var(--text); }
.dept-ic {
  display: inline-flex; padding: 12px; border-radius: 14px; color: var(--flame-hot);
  background: var(--flame-soft); border: 1px solid rgba(255, 106, 31, 0.22);
}
.dept-ic .ic { width: 1.8em; height: 1.8em; }
.dept-tile strong { font-family: var(--font-display); font-size: 1.06rem; display: block; letter-spacing: -0.01em; }
.dept-tile div span { color: var(--text-faint); font-size: 0.82rem; }
.dept-arrow { margin-left: auto; color: var(--text-faint); display: inline-flex; transition: transform 0.25s, color 0.2s; }
.dept-tile:hover .dept-arrow { transform: translateX(4px); color: var(--flame-hot); }

/* ------------------------------------------------ Product photos */
.product-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-placeholder {
  width: 100%; height: 100%; min-height: 120px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
    var(--bg-raised);
  color: var(--text-faint);
}
.photo-placeholder .ic { width: 2.2em; height: 2.2em; opacity: 0.55; }
.photo-placeholder span { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.product-hero-img { aspect-ratio: 4 / 3.4; overflow: hidden; border-radius: var(--radius); }
.product-hero-img .product-photo, .product-hero-img .photo-placeholder { height: 100%; }
.cart-line .thumb .photo-placeholder { min-height: 0; }
.cart-line .thumb .photo-placeholder span { display: none; }
.cart-line .thumb .photo-placeholder .ic { width: 1.4em; height: 1.4em; }

/* ---------------------------------------------------- Mobile menu + polish */
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px; flex: 0 0 auto;
  background: var(--bg-raised); border: 1px solid var(--border);
  color: var(--text); cursor: pointer; padding: 0;
}
.nav-toggle .ic-close { display: none; }
body.nav-open .nav-toggle .ic-burger { display: none; }
body.nav-open .nav-toggle .ic-close { display: block; }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(10, 11, 14, 0.97);
  backdrop-filter: blur(16px);
  padding: 14px 20px 20px;
  max-height: calc(100dvh - 120px);
  overflow-y: auto;
}
body.nav-open .mobile-menu { display: block; }
.mobile-menu a {
  display: block; padding: 13px 10px; font-weight: 600; font-size: 1.02rem;
  border-bottom: 1px solid var(--border); color: var(--text);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:active { color: var(--flame-hot); }
.mobile-search { display: flex; gap: 8px; margin: 4px 0 12px; }
.mobile-search input { flex: 1; min-width: 0; border-radius: 999px; }

@media (min-width: 981px) {
  body.nav-open .mobile-menu { display: none; } /* never on desktop */
}

@media (max-width: 640px) {
  /* icons-only header actions to fit small screens */
  .icon-btn span { display: none; }
  .header-inner { gap: 12px; padding: 12px 16px; }
  .header-actions { gap: 4px; margin-left: auto; }
  .promo-strip { font-size: 0.76rem; padding: 7px 12px; }
  .page-title-band { padding: 26px 0; }
  .section { padding: 48px 0 14px; }
  .hero-inner { padding: 40px 20px 52px; }
  .hero-ctas .btn { flex: 1; min-width: 130px; }
  .qty-row { flex-wrap: wrap; }
  .qty-row .btn { flex: 1 1 40%; }
  .size-btn { min-height: 44px; }
  .trust-bar { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .admin-topbar-inner { flex-wrap: wrap; padding: 11px 16px; gap: 10px; }
  .reviews-hero .big-score { font-size: 2.4rem; }
  .checkout-grid, .cart-layout, .shop-layout, .content-2col { padding-left: 0; padding-right: 0; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

/* cascade fix: the base .nav-toggle rule above must not beat the breakpoint */
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
}

/* Mobile: collapse shop filters behind a toggle so products lead the page */
.filters-toggle { display: none; }
@media (max-width: 980px) {
  .filters { display: none; }
  body.filters-open .filters { display: block; }
  .filters-toggle { display: inline-flex; }
}

/* ============================================================
   21ST-STYLE REDESIGN — animated gradients, glow, motion
   (appended last; progressive — fx.js only adds reveal timing)
   ============================================================ */

/* --- Animated fire gradient text --- */
@keyframes fireShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero h1 .torch,
.section-head h2 .accent,
.reviews-hero .big-score,
.stat-card .s-value {
  background: var(--grad-fire);
  background-size: 220% 220%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: fireShift 7s ease-in-out infinite;
}

/* --- Hero: glowing orbs + drifting grid --- */
.hero::before { animation: gridDrift 22s linear infinite; }
@keyframes gridDrift { from { background-position: 0 0, 0 0; } to { background-position: 56px 56px, 56px 56px; } }
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(38% 46% at 82% 28%, rgba(255,106,31,0.30), transparent 70%),
    radial-gradient(30% 38% at 68% 62%, rgba(255,59,48,0.18), transparent 72%),
    radial-gradient(34% 42% at 14% 88%, rgba(108,140,255,0.12), transparent 70%);
  filter: blur(6px);
  animation: orbFloat 12s ease-in-out infinite alternate;
}
@keyframes orbFloat {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(-2%, 2%, 0) scale(1.06); }
  100% { transform: translate3d(2%, -2%, 0) scale(1.02); }
}
.hero-kicker::before { animation: pulseDot 2.4s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 0 rgba(255,106,31,0.6); } 50% { box-shadow: 0 0 0 6px rgba(255,106,31,0); } }

/* --- Buttons: shimmer sweep + richer glow --- */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.35) 48%, transparent 62%);
  transform: translateX(-120%); transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.btn:hover::after { transform: translateX(120%); }
.btn-outline::after, .btn-ghost::after { display: none; }

/* --- Scroll reveal (fx.js toggles .is-in) --- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }

/* --- Product cards: pointer spotlight + animated ring --- */
.product-card { position: relative; }
.product-card::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none; border-radius: inherit;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 0%), rgba(255,138,77,0.16), transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover::before { opacity: 1; }
.product-card .cat-chip, .product-card .badge { backdrop-filter: blur(6px); }

/* --- Category + dept tiles: gradient hairline on hover --- */
.category-tile, .dept-tile, .value-card, .contact-card {
  position: relative; background-clip: padding-box;
}
.category-tile::after, .dept-tile::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: var(--grad-fire); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.3s;
}
.category-tile:hover::after, .dept-tile:hover::after { opacity: 0.9; }

/* --- Promo strip: subtle moving sheen --- */
.promo-strip { position: relative; overflow: hidden; }
.promo-strip::after {
  content: ''; position: absolute; top: 0; left: 0; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,106,31,0.10), transparent);
  animation: sheen 6s linear infinite;
}
@keyframes sheen { from { transform: translateX(-120%); } to { transform: translateX(320%); } }

/* --- Header logo mark: soft breathing glow --- */
.logo .flame-mark { animation: breathe 4.5s ease-in-out infinite; }
@keyframes breathe { 0%,100% { box-shadow: var(--glow-flame); } 50% { box-shadow: 0 8px 34px -4px rgba(255,106,31,0.7); } }

/* --- Section heading rule: gradient --- */
.section-head .rule { background: linear-gradient(90deg, var(--flame-soft), transparent); height: 1px; }

/* --- Respect reduced motion: kill all the movement --- */
@media (prefers-reduced-motion: reduce) {
  .hero h1 .torch, .section-head h2 .accent, .reviews-hero .big-score, .stat-card .s-value,
  .hero::before, .hero::after, .hero-kicker::before, .promo-strip::after, .logo .flame-mark { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn::after { display: none; }
}

/* ============================================================
   FIELD EDITORIAL / 2026
   Restrained industrial system: hard edges, measured amber, no glow.
   ============================================================ */
:root {
  --bg: #11110f;
  --bg-raised: #171714;
  --bg-card: #1c1c18;
  --bg-hover: #24241f;
  --border: rgba(238, 234, 223, 0.12);
  --border-strong: rgba(238, 234, 223, 0.25);
  --text: #eeeadf;
  --text-dim: #aaa79e;
  --text-faint: #908d84;
  --flame: #c77736;
  --flame-hot: #dd9358;
  --flame-deep: #8e4b21;
  --flame-soft: rgba(199, 119, 54, 0.13);
  --safety: #d6a35f;
  --danger: #c86b5e;
  --success: #879f75;
  --info: #8297a5;
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Archivo', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --radius-lg: 4px;
  --radius: 3px;
  --radius-sm: 2px;
  --shadow: 0 24px 65px rgba(0, 0, 0, 0.28);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 36px 90px rgba(0, 0, 0, 0.38);
  --focus-ring: #dd9358;
  --max-w: 1400px;
  --grad-flame: #c77736;
  --grad-surface: none;
  --glow-flame: none;
  --ring: none;
  --grad-fire: #c77736;
  --grad-fire-soft: #c77736;
}

html { background: var(--bg); }
body {
  background: var(--bg);
  background-image: none;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 92;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6vw, 6rem); }
h2 { font-size: clamp(2rem, 4.6vw, 4.6rem); }
p { text-wrap: pretty; }

.container { padding-inline: clamp(20px, 3.4vw, 52px); }
.small, .product-code, .p-cat, .badge,
.cat-chip, .field label, .filters h4, .footer-grid h4, .promo-strip {
  font-family: var(--font-mono);
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 2px;
}
input[type='text']:focus, input[type='email']:focus, input[type='password']:focus,
input[type='number']:focus, input[type='search']:focus, input[type='date']:focus,
select:focus, textarea:focus {
  border-color: var(--focus-ring);
  background: var(--bg-card);
}
section[id] { scroll-margin-top: 110px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 500;
  transform: translateY(-160%);
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  font: 600 0.75rem var(--font-mono);
}
.skip-link:focus { transform: translateY(0); }
.flash-wrap { padding-top: 16px; }

/* Utility bar and navigation */
.promo-strip {
  display: flex;
  justify-content: center;
  gap: 24px;
  background: #b96e34;
  border: 0;
  color: #17110c;
  padding: 8px 18px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.promo-strip::after { display: none; }
.promo-strip code {
  background: rgba(17, 17, 15, 0.12);
  color: inherit;
  border-radius: 1px;
  font-family: inherit;
}
.site-header {
  background: rgba(17, 17, 15, 0.93);
  border: 0;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
.header-inner {
  max-width: var(--max-w);
  min-height: 76px;
  padding: 0 clamp(20px, 3.4vw, 52px);
  gap: 30px;
}
.logo {
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.logo .flame-mark {
  width: 28px;
  height: 28px;
  color: var(--bg);
  background: var(--flame);
  border-radius: 1px;
  box-shadow: none;
  animation: none;
}
.main-nav { gap: 22px; }
.main-nav a {
  position: relative;
  padding: 27px 0 24px;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}
.main-nav a:hover { background: transparent; color: var(--text); }
.main-nav a.active { background: transparent; color: var(--text); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: var(--flame);
}
.header-search { max-width: 245px; }
.header-search input,
.mobile-search input {
  border-radius: 2px;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}
.icon-btn {
  border-radius: 2px;
  padding: 9px;
  font-size: 0.76rem;
  text-transform: uppercase;
}
.icon-btn:hover { background: var(--bg-hover); }
.cart-action { position: relative; }
.cart-count { background: var(--flame); color: var(--bg); border-radius: 1px; }

/* Campaign hero */
.hero {
  min-height: clamp(620px, 78vh, 820px);
  background: #10120f;
  border-bottom: 1px solid var(--border);
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 10, 8, 0.95) 0%, rgba(10, 10, 8, 0.82) 38%, rgba(10, 10, 8, 0.18) 72%, rgba(10, 10, 8, 0.08) 100%);
  mask-image: none;
  animation: none;
}
.hero::after { display: none; }
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.hero-inner {
  min-height: inherit;
  max-width: var(--max-w);
  padding: clamp(64px, 6vw, 92px) clamp(20px, 3.4vw, 52px) 58px;
  display: flex;
  align-items: flex-end;
}
.hero-copy { width: min(760px, 66%); }
.hero-kicker {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  color: #cac5b9;
  font: 500 0.68rem var(--font-mono);
  letter-spacing: 0.11em;
}
.hero-kicker::before { display: none; }
.hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--text);
  font-size: clamp(3.6rem, 7.5vw, 6rem);
  font-weight: 790;
  font-variation-settings: 'wdth' 82;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.hero h1 em {
  display: block;
  color: #bbb7ac;
  font-style: normal;
  font-weight: 420;
}
.hero p.lede {
  max-width: 42rem;
  margin: 26px 0 30px;
  color: #c5c1b7;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.65;
}
.hero-ctas { align-items: center; gap: 24px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  border-bottom: 1px solid var(--border-strong);
  padding: 9px 0;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}
.text-link .ic { transition: transform 0.2s cubic-bezier(.16,1,.3,1); }
.text-link:hover .ic { transform: translateX(4px); }
/* Trust and story */
.trust-bar {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 3.4vw, 52px);
  gap: 0;
}
.trust-item {
  min-height: 112px;
  padding: 24px 28px;
  border: 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  background-image: none;
  box-shadow: none;
}
.trust-item:first-child { border-left: 1px solid var(--border); }
.trust-item .t-icon {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--flame-hot);
}
.trust-item strong { font-size: 0.93rem; }
.trust-item div span { color: var(--text-faint); font-size: 0.76rem; }

.section { padding-top: clamp(76px, 10vw, 148px); }
.brand-statement {
  display: block;
  padding-bottom: clamp(70px, 8vw, 110px);
  border-bottom: 1px solid var(--border);
}
.brand-statement > div {
  max-width: 980px;
  margin-left: clamp(0px, 16vw, 240px);
}
.brand-statement h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 760;
  font-variation-settings: 'wdth' 80;
  line-height: 0.88;
  text-transform: uppercase;
}
.brand-statement p {
  max-width: 650px;
  margin: 32px 0 0 auto;
  color: var(--text-dim);
  font-size: 1.08rem;
}
.section-head { align-items: end; margin-bottom: 34px; }
.section-head h2 { font-size: clamp(2.2rem, 4vw, 4.2rem); text-transform: uppercase; }
.section-head .rule { background: var(--border); }
.section-head a { color: var(--text); font-size: 0.76rem; text-transform: uppercase; }

/* Departments and category matrix */
.dept-band {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1px;
  padding: 1px;
  background: var(--border);
}
.dept-tile {
  min-height: 260px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 0;
  background: var(--bg-raised);
  background-image: none;
  box-shadow: none;
}
.dept-primary { background: #202019; }
.dept-tile:hover {
  transform: none;
  background: var(--bg-hover);
  box-shadow: none;
}
.dept-tile::after { display: none; }
.dept-tile div { margin-top: auto; }
.dept-tile strong {
  max-width: 340px;
  font-size: clamp(1.35rem, 2.3vw, 2.6rem);
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}
.dept-tile div span { display: block; max-width: 380px; margin-top: 12px; line-height: 1.5; }
.dept-arrow { position: absolute; top: 28px; right: 28px; }

.category-grid {
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  padding: 1px;
  background: var(--border);
}
.category-tile {
  min-height: 190px;
  padding: 24px 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  border: 0;
  border-radius: 0;
  background: var(--bg-raised);
  background-image: none;
  box-shadow: none;
}
.category-tile::after { display: none; }
.category-tile:hover { transform: none; background: var(--bg-hover); box-shadow: none; }
.category-tile .c-icon {
  width: 46px;
  height: 46px;
  margin: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-dim);
}
.category-tile strong { font-size: 0.91rem; }
.category-tile span { font-family: var(--font-mono); font-size: 0.64rem; }

/* Product catalog */
.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--border);
}
.product-card {
  border: 0;
  border-radius: 0;
  background: var(--bg);
  background-image: none;
  box-shadow: none;
}
.product-card::before { display: none; }
.product-card:hover { transform: none; border: 0; box-shadow: none; background: var(--bg-raised); }
.product-media { aspect-ratio: 4 / 5; background: #24231e; }
.product-media::after { display: none; }
.product-card:hover .product-media svg { transform: none; }
.product-photo { transition: transform 0.55s cubic-bezier(.2,.75,.25,1); }
.product-card:hover .product-photo { transform: scale(1.025); }
.product-gallery { min-width: 0; }
.product-gallery .product-hero-img {
  aspect-ratio: 4 / 5;
  border: 0;
  border-radius: 0;
  background: #1a1a17;
}
.product-gallery .product-hero-img .product-photo {
  object-position: center;
  transition: opacity 0.18s cubic-bezier(.16,1,.3,1);
}
.gallery-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  color: #eeeadf;
  background: rgba(17,17,15,.78);
  font: 600 .72rem/1 var(--font-mono);
  letter-spacing: .04em;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 104px));
  gap: 8px;
  margin-top: 10px;
}
.gallery-thumb {
  aspect-ratio: 4 / 5;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 0;
  background: #1a1a17;
  opacity: .62;
  transition: opacity .18s cubic-bezier(.16,1,.3,1), border-color .18s cubic-bezier(.16,1,.3,1);
}
.gallery-thumb:hover { opacity: .86; }
.gallery-thumb.is-active {
  border-color: var(--flame);
  opacity: 1;
}
.gallery-thumb:focus-visible {
  outline: 2px solid var(--flame-hot);
  outline-offset: 3px;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.console-shell { max-width: 760px; }
.console-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.launch-reset {
  margin-top: 12px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--danger) 55%, var(--border));
  background: color-mix(in srgb, var(--danger) 7%, var(--bg-raised));
}
.launch-reset h3 { margin: 0 0 8px; font-size: 1rem; }
.cleanup-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 16px 0;
  background: var(--border);
}
.cleanup-stat {
  min-width: 0;
  padding: 12px;
  background: var(--bg);
}
.cleanup-stat strong {
  display: block;
  color: var(--text);
  font: 650 1.3rem/1 var(--font-display);
}
.cleanup-stat span {
  display: block;
  margin-top: 5px;
  color: var(--text-dim);
  font-size: .74rem;
}
.danger-confirm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: end;
}
.danger-confirm .field { margin: 0; }
.launch-reset .btn-danger:disabled {
  cursor: not-allowed;
  opacity: .45;
}
.launch-reset .btn-danger {
  color: #fff;
  background: var(--danger);
}
.launch-reset .btn-danger:hover:not(:disabled) {
  color: #fff;
  background: color-mix(in srgb, var(--danger) 88%, white);
  filter: none;
  box-shadow: none;
}

@media (max-width: 640px) {
  .cleanup-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .danger-confirm { grid-template-columns: 1fr; }
}
.product-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: rgba(238, 234, 223, 0.82);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--product-color) 78%, #171714), color-mix(in srgb, var(--product-color) 38%, #171714));
}
.product-visual::before {
  content: '';
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(238, 234, 223, 0.15);
  transform: rotate(45deg);
}
.product-visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(rgba(238,234,223,.24) 1px, transparent 1px), linear-gradient(90deg, rgba(238,234,223,.24) 1px, transparent 1px);
  background-size: 36px 36px;
}
.product-icon { width: 45%; position: relative; z-index: 1; color: var(--product-accent); filter: saturate(0.7); }
.product-icon .ic { width: 100%; height: auto; stroke-width: 0.65; }
.product-code {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: rgba(238, 234, 223, 0.68);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}
.badge, .cat-chip {
  border-radius: 1px;
  backdrop-filter: none;
  background: rgba(17,17,15,.88);
  border-color: var(--border-strong);
}
.badge { top: 14px; left: 14px; color: var(--text); }
.cat-chip { bottom: 14px; right: 14px; color: var(--text-dim); }
.product-body { padding: 18px 16px 22px; gap: 7px; }
.product-body h3 { font-size: 1.02rem; font-weight: 570; line-height: 1.28; }
.product-body .p-cat { font-size: 0.6rem; }
.p-rating { color: var(--safety); }
.p-price .now { font-family: var(--font-mono); font-size: 1rem; }
.p-price .save { color: var(--flame-hot); }

/* Controls and commerce surfaces */
.btn {
  min-height: 46px;
  padding: 12px 21px;
  border-radius: 2px;
  background: var(--flame);
  color: #18120d;
  box-shadow: none;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: background 0.15s cubic-bezier(.16,1,.3,1), color 0.15s cubic-bezier(.16,1,.3,1), border-color 0.15s cubic-bezier(.16,1,.3,1), transform 0.18s cubic-bezier(.16,1,.3,1);
}
.btn::after { display: none; }
.btn:hover { background: var(--flame-hot); color: #18120d; box-shadow: none; filter: none; transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn-outline { background: transparent; border-color: var(--border-strong); color: var(--text); backdrop-filter: none; }
.btn-outline:hover { background: var(--text); border-color: var(--text); color: var(--bg); }
.btn-ghost { background: transparent; color: var(--text-dim); }
input[type='text'], input[type='email'], input[type='password'], input[type='number'],
input[type='search'], input[type='date'], select, textarea {
  border-radius: 2px;
  background: #191916;
  transition: border-color 0.15s cubic-bezier(.16,1,.3,1), background 0.15s cubic-bezier(.16,1,.3,1);
}
.filters,
.panel,
.summary-card,
.auth-card,
.order-card,
.review-item,
.contact-card,
.value-card,
.stat-card,
.admin-nav {
  border-radius: 2px;
  background: var(--bg-raised);
  background-image: none;
  box-shadow: none;
}
.page-title-band { background: #171714; }
.page-title-band h1 { text-transform: uppercase; }
.filters { border-color: var(--border-strong); }
.shop-toolbar select, .qty-stepper, .spec-badge, .status-pill { border-radius: 2px; }
.product-hero-img { border-radius: 2px; aspect-ratio: 4 / 5; }
.product-hero-img .product-icon { width: 38%; }
.size-btn { border-radius: 2px; }
.size-btn.selected { color: var(--bg); }
.feature-list li::before { border-radius: 0; transform: none; width: 9px; height: 2px; top: 15px; }
.free-ship-meter .fill { background: var(--flame); }

/* Footer */
.site-footer {
  margin-top: clamp(80px, 11vw, 150px);
  padding: 62px 0 32px;
  background: #0c0c0b;
  border-top: 1px solid var(--border);
  border-image: none;
}
.footer-grid h4 { color: var(--flame-hot); }
.footer-grid li { color: var(--text-faint); font-size: 0.86rem; }
.standards-links { margin-top: 14px !important; }
.footer-bottom { font-family: var(--font-mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.06em; }
.field label { color: var(--text-dim); }
.muted a:not(.btn), p a:not(.btn) {
  color: var(--flame-hot);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
* { scrollbar-color: rgba(238, 234, 223, 0.3) transparent; }

/* Motion is functional and quiet. */
.reveal { transform: translateY(14px); transition: opacity 0.5s cubic-bezier(.16,1,.3,1), transform 0.5s cubic-bezier(.16,1,.3,1); }
.hero-art svg, .logo .flame-mark, .promo-strip::after { animation: none; }

@media (max-width: 1120px) {
  .main-nav { gap: 14px; }
  .header-search { display: none; }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .header-inner { min-height: 66px; }
  .hero { min-height: 680px; }
  .hero-inner { display: flex; padding-top: 90px; }
  .hero-copy { width: min(680px, 86%); }
  .hero::before { background: linear-gradient(90deg, rgba(10,10,8,.94), rgba(10,10,8,.62) 70%, rgba(10,10,8,.25)); }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 1px solid var(--border); }
  .brand-statement > div { margin-left: 0; }
  .brand-statement p { margin-left: 0; }
  .dept-band { grid-template-columns: 1fr 1fr; }
  .dept-primary { grid-column: 1 / -1; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile-menu { background: rgba(17,17,15,.98); }
  .mobile-menu a { font-size: 0.86rem; font-family: var(--font-mono); text-transform: uppercase; }
}

@media (max-width: 640px) {
  .promo-strip { justify-content: space-between; gap: 10px; font-size: 0.57rem; }
  .promo-code { display: none; }
  .logo { font-size: 0.92rem; }
  .nav-toggle { width: 38px; height: 38px; border-radius: 2px; }
  .hero { min-height: 620px; }
  .hero-media { object-position: 62% center; }
  .hero::before { background: linear-gradient(90deg, rgba(10,10,8,.96), rgba(10,10,8,.78) 70%, rgba(10,10,8,.42)); }
  .hero-inner { padding: 70px 20px 38px; align-items: flex-end; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(3.15rem, 16vw, 4.7rem); }
  .hero p.lede { font-size: 0.94rem; }
  .hero-ctas { align-items: stretch; flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; flex: none; }
  .text-link { width: fit-content; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child { min-height: 88px; border: 0; border-bottom: 1px solid var(--border); }
  .section { padding-top: 76px; }
  .brand-statement { padding-bottom: 72px; }
  .brand-statement h2 { font-size: 3.5rem; }
  .section-head { display: grid; grid-template-columns: 1fr auto; align-items: end; }
  .section-head .rule { display: none; }
  .section-head h2 { font-size: 2.65rem; }
  .dept-band { grid-template-columns: 1fr; }
  .dept-primary { grid-column: auto; }
  .dept-tile { min-height: 220px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-tile { min-height: 165px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-body { padding: 14px 11px 17px; }
  .product-body h3 { font-size: 0.88rem; }
  .p-rating { font-size: 0.68rem; }
  .p-price { flex-wrap: wrap; gap: 5px; }
  .p-price .save { width: 100%; }
  .badge { top: 8px; left: 8px; }
  .cat-chip { right: 8px; bottom: 8px; font-size: 0.55rem; }
  .product-code { left: 10px; bottom: 9px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-contrast: more) {
  :root {
    --border: rgba(238, 234, 223, 0.32);
    --border-strong: rgba(238, 234, 223, 0.52);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
