/* ============================================================
   FORGEYARD // construction-grade store
   2040 industrial UI — dark base, hazard accents, schematic feel
   ============================================================ */

:root {
  --bg-0: #060708;
  --bg-1: #0b0d10;
  --bg-2: #11151a;
  --line: #1c2229;
  --line-2: #262d36;
  --text: #e7ecf2;
  --text-dim: #8b95a3;
  --text-mute: #5a6573;
  --hazard: #ffb000;
  --hazard-glow: #ffcb3a;
  --signal: #00f0c8;
  --danger: #ff5b3a;
  --grid: rgba(255, 176, 0, 0.06);
  --radius: 2px;
  --radius-lg: 4px;
  --mono: 'JetBrains Mono', 'IBM Plex Mono', 'SF Mono', ui-monospace, Menlo, monospace;
  --sans: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg-0);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at top, black 30%, transparent 80%);
}

body::after {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(255, 176, 0, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 100%, rgba(0, 240, 200, 0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

.app { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; }
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* ===== nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6, 7, 8, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.brand-mark {
  width: 34px; height: 34px;
  background: var(--hazard);
  position: relative;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  box-shadow: 0 0 24px rgba(255, 176, 0, 0.35);
}
.brand-mark::after {
  content: ""; position: absolute; inset: 4px;
  background: var(--bg-0);
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
}
.brand-mark::before {
  content: ""; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 8px; height: 8px; background: var(--hazard);
  z-index: 1;
}
.brand-name {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.brand-tag {
  font-family: var(--mono); font-size: 10px;
  color: var(--text-mute); letter-spacing: 0.2em;
  margin-top: 1px; text-transform: uppercase;
}

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  padding: 8px 14px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  cursor: pointer;
}
.nav-link:hover { color: var(--text); border-color: var(--line-2); }
.nav-link.active { color: var(--hazard); border-color: var(--line-2); background: rgba(255, 176, 0, 0.05); }

.nav-status {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px;
  color: var(--text-mute); letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 8px var(--signal);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1 } 50% { opacity: 0.35 } }

/* ===== hero ===== */
.hero {
  padding: 100px 0 80px;
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  width: 100%;
  margin-left: auto;
}
.hero-art svg { width: 100%; height: 100%; }
.hero-art::before {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  opacity: 0.35;
}
.hero-art::after {
  content: "";
  position: absolute; inset: 12%;
  border: 1px dashed var(--line-2);
  border-radius: 50%;
  animation: spin 60s linear infinite;
  opacity: 0.45;
}
@keyframes spin { to { transform: rotate(360deg) } }

.hero-meta {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 28px;
}
.hero-meta .pill {
  color: var(--hazard);
  border: 1px solid var(--hazard);
  padding: 4px 10px;
  background: rgba(255, 176, 0, 0.06);
}
.hero h1 {
  font-family: var(--sans);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 920px;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(95deg, var(--hazard), var(--hazard-glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lede {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  color: var(--text);
  transition: all 0.18s ease;
  cursor: pointer;
}
.btn:hover { border-color: var(--text-dim); transform: translateY(-1px); }
.btn-primary {
  background: var(--hazard);
  color: var(--bg-0);
  border-color: var(--hazard);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--hazard-glow); border-color: var(--hazard-glow);
  box-shadow: 0 0 0 4px rgba(255, 176, 0, 0.15);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 80px;
  padding-top: 28px;
}
.stat { padding-right: 24px; }
.stat-num {
  font-family: var(--mono); font-size: 28px;
  font-weight: 700; color: var(--text);
  letter-spacing: -0.01em;
}
.stat-label {
  font-family: var(--mono); font-size: 10px;
  color: var(--text-mute); letter-spacing: 0.18em;
  text-transform: uppercase; margin-top: 6px;
}

/* ===== section ===== */
.section { padding: 80px 0; border-bottom: 1px solid var(--line); }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 40px; gap: 20px; flex-wrap: wrap;
}
.section-tag {
  font-family: var(--mono); font-size: 11px;
  color: var(--hazard); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-tag::before {
  content: ""; width: 24px; height: 1px; background: var(--hazard);
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 700px;
}
.section-sub {
  color: var(--text-dim); max-width: 460px;
  font-size: 15px;
}

/* ===== category strip ===== */
.cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.cat-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  color: var(--text-dim);
  transition: all 0.15s;
  cursor: pointer;
}
.cat-chip:hover { color: var(--text); border-color: var(--text-mute); }
.cat-chip.active {
  background: var(--hazard); color: var(--bg-0);
  border-color: var(--hazard); font-weight: 700;
}
.cat-chip-tag { color: var(--text-mute); font-size: 10px; }
.cat-chip.active .cat-chip-tag { color: var(--bg-0); opacity: 0.7; }

/* ===== product grid ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.product-card {
  background: var(--bg-1);
  display: flex; flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}
.product-card:hover { background: var(--bg-2); }
.product-card:hover .product-image { filter: brightness(1.04); }
.product-card:hover .scan-line { opacity: 1; }

.product-image {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(ellipse 80% 70% at 50% 60%, #f4f5f7 0%, #d8dce2 80%, #b8bdc6 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.product-image::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,176,0,0.04), transparent 40%);
  pointer-events: none;
}
.product-image img {
  width: 78%; height: 78%; object-fit: contain;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.18));
  position: relative; z-index: 1;
}
.scan-line {
  position: absolute; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--hazard), transparent);
  opacity: 0; pointer-events: none;
  animation: scan 2.4s ease-in-out infinite;
}
@keyframes scan { 0% { top: 0 } 50% { top: 100% } 100% { top: 0 } }

.product-meta-strip {
  position: absolute; top: 12px; left: 12px; right: 12px;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mute);
  pointer-events: none;
}
.status-tag {
  color: var(--signal);
  display: flex; align-items: center; gap: 6px;
}
.status-tag::before {
  content: ""; width: 5px; height: 5px;
  background: var(--signal); border-radius: 50%;
  box-shadow: 0 0 6px var(--signal);
}

.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-cat-tag {
  font-family: var(--mono); font-size: 10px;
  color: var(--hazard); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 10px;
}
.product-name {
  font-size: 17px; font-weight: 600;
  line-height: 1.25; margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.product-desc {
  font-size: 13px; color: var(--text-dim);
  line-height: 1.5; margin-bottom: 16px;
  flex: 1;
}
.product-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px;
  color: var(--text-mute); letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-row .arrow { color: var(--hazard); transition: transform 0.18s; }
.product-card:hover .arrow { transform: translateX(4px); }

/* ===== product detail ===== */
.detail-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px;
  color: var(--text-dim); letter-spacing: 0.14em;
  text-transform: uppercase; padding: 10px 0;
  margin: 24px 0 8px; cursor: pointer;
}
.detail-back:hover { color: var(--hazard); }

.detail {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  padding: 32px 0 80px;
  align-items: start;
}
.detail-vis {
  background:
    radial-gradient(ellipse 80% 70% at 50% 60%, #f4f5f7 0%, #d8dce2 80%, #b8bdc6 100%);
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.detail-vis::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,176,0,0.05), transparent 40%);
  pointer-events: none;
}
.detail-vis img { width: 78%; height: 78%; object-fit: contain; position: relative; z-index: 1; filter: drop-shadow(0 14px 40px rgba(0,0,0,0.22)); }
.detail-vis .corner {
  position: absolute; width: 22px; height: 22px;
  border-color: var(--hazard); border-style: solid; border-width: 0;
}
.detail-vis .c-tl { top: 12px; left: 12px; border-top-width: 2px; border-left-width: 2px; }
.detail-vis .c-tr { top: 12px; right: 12px; border-top-width: 2px; border-right-width: 2px; }
.detail-vis .c-bl { bottom: 12px; left: 12px; border-bottom-width: 2px; border-left-width: 2px; }
.detail-vis .c-br { bottom: 12px; right: 12px; border-bottom-width: 2px; border-right-width: 2px; }
.detail-vis .schematic {
  position: absolute; bottom: 18px; left: 18px;
  font-family: var(--mono); font-size: 10px;
  color: var(--text-mute); letter-spacing: 0.18em;
  text-transform: uppercase;
}

.detail-info h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 14px;
}
.detail-tagline {
  font-size: 17px; color: var(--text-dim);
  line-height: 1.5; margin-bottom: 28px;
}
.detail-meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding: 14px 0; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.06em;
}
.detail-meta div span {
  display: block; color: var(--text-mute);
  font-size: 10px; margin-bottom: 4px;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.detail-meta div strong { color: var(--text); font-weight: 600; }

.detail-cta { margin-bottom: 36px; }
.detail-cta .btn-primary { width: 100%; justify-content: center; padding: 16px; font-size: 13px; }
.affiliate-note {
  margin-top: 12px;
  font-family: var(--mono); font-size: 10px;
  color: var(--text-mute); letter-spacing: 0.1em;
  text-transform: uppercase; text-align: center;
}

.detail-block { padding: 28px 0; border-top: 1px solid var(--line); }
.detail-block h3 {
  font-family: var(--mono); font-size: 11px;
  color: var(--hazard); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.detail-block h3::before {
  content: ""; width: 24px; height: 1px; background: var(--hazard);
}
.detail-block p { color: var(--text-dim); line-height: 1.7; font-size: 15px; }
.feat-list { list-style: none; }
.feat-list li {
  position: relative; padding-left: 28px;
  font-size: 14px; color: var(--text-dim);
  line-height: 1.6; margin-bottom: 10px;
}
.feat-list li::before {
  content: "+"; position: absolute; left: 0; top: 0;
  color: var(--hazard); font-family: var(--mono);
  font-weight: 700; font-size: 16px;
}
.spec-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.spec-grid div {
  background: var(--bg-1); padding: 14px 16px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.06em;
}
.spec-grid div span {
  display: block; color: var(--text-mute);
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 6px;
}
.spec-grid div strong { color: var(--text); font-weight: 600; }

.use-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.use-tag {
  padding: 8px 14px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--line-2); color: var(--text-dim);
  background: var(--bg-1);
}

/* ===== category overview cards ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cat-card {
  background: var(--bg-1);
  padding: 28px 24px;
  cursor: pointer;
  position: relative;
  transition: background 0.18s;
}
.cat-card:hover { background: var(--bg-2); }
.cat-card-tag {
  font-family: var(--mono); font-size: 10px;
  color: var(--hazard); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 18px;
}
.cat-card h3 {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.01em; margin-bottom: 10px;
}
.cat-card p {
  color: var(--text-dim); font-size: 14px;
  line-height: 1.55; margin-bottom: 24px;
}
.cat-card-foot {
  font-family: var(--mono); font-size: 11px;
  color: var(--text-mute); letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.cat-card:hover .cat-card-foot { color: var(--hazard); }

/* ===== about ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 56px;
}
.about-cell { background: var(--bg-1); padding: 32px 24px; }
.about-cell-num {
  font-family: var(--mono); font-size: 11px;
  color: var(--hazard); letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.about-cell h4 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.about-cell p { color: var(--text-dim); font-size: 14px; line-height: 1.6; }

/* ===== footer ===== */
.foot {
  border-top: 1px solid var(--line);
  padding: 56px 0 24px;
  margin-top: auto;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 40px;
}
.foot h5 {
  font-family: var(--mono); font-size: 11px;
  color: var(--text-mute); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 16px;
}
.foot ul { list-style: none; }
.foot li { margin-bottom: 8px; }
.foot a { font-size: 14px; color: var(--text-dim); cursor: pointer; }
.foot a:hover { color: var(--text); }
.foot p { color: var(--text-dim); font-size: 14px; line-height: 1.6; }
.foot-bot {
  display: flex; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px;
  color: var(--text-mute); letter-spacing: 0.1em;
  flex-wrap: wrap; gap: 12px;
}

/* ===== empty / 404 ===== */
.empty { text-align: center; padding: 100px 20px; }
.empty h2 {
  font-family: var(--mono); color: var(--hazard);
  font-size: 14px; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 16px;
}
.empty p { color: var(--text-dim); margin-bottom: 24px; }

/* ===== trust strip ===== */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: var(--bg-1);
}
.trust-inner {
  display: flex; align-items: center; gap: 40px;
  flex-wrap: wrap; justify-content: space-between;
}
.trust-label {
  font-family: var(--mono); font-size: 11px;
  color: var(--text-mute); letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.trust-label::before {
  content: ""; width: 24px; height: 1px; background: var(--hazard);
}
.brands {
  display: flex; align-items: center; gap: 36px;
  flex-wrap: wrap;
}
.brand-mark-text {
  font-family: var(--mono); font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  font-weight: 700;
  opacity: 0.7;
  transition: opacity 0.18s, color 0.18s;
}
.brand-mark-text:hover { opacity: 1; color: var(--text); }

/* ===== rating badge ===== */
.rating {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px;
  color: var(--text);
  letter-spacing: 0.04em;
}
.rating .stars {
  color: var(--hazard);
  letter-spacing: 0.1em;
  font-size: 12px;
}
.rating .reviews {
  color: var(--text-mute);
  font-size: 10px;
}

/* ===== editor pick badge ===== */
.pick-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  background: var(--hazard);
  color: var(--bg-0);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(255, 176, 0, 0.35);
}
.pick-badge::before {
  content: "★";
  font-size: 10px;
}

.best-tag {
  display: inline-flex; align-items: center;
  padding: 4px 8px;
  font-family: var(--mono); font-size: 10px;
  color: var(--signal);
  border: 1px solid rgba(0, 240, 200, 0.3);
  background: rgba(0, 240, 200, 0.06);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ===== editor's pick feature row ===== */
.picks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pick {
  background: var(--bg-1);
  padding: 0;
  display: flex; flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}
.pick:hover { background: var(--bg-2); }
.pick-img {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(ellipse 80% 70% at 50% 60%, #f4f5f7 0%, #d8dce2 80%, #b8bdc6 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pick-img::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,176,0,0.05), transparent 40%);
  pointer-events: none;
}
.pick-img img { width: 78%; height: 78%; object-fit: contain; position: relative; z-index: 1; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2)); }
.pick-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.pick-tag {
  font-family: var(--mono); font-size: 10px;
  color: var(--hazard); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 12px;
}
.pick-name {
  font-size: 19px; font-weight: 600;
  line-height: 1.25; margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pick-quote {
  font-size: 14px; color: var(--text-dim);
  line-height: 1.6;
  border-left: 2px solid var(--hazard);
  padding: 4px 0 4px 14px;
  margin: 14px 0 20px;
  font-style: italic;
}
.pick-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; margin-top: auto;
  border-top: 1px solid var(--line);
}

/* ===== badges in standard cards ===== */
.product-card { position: relative; }
.product-card .pick-badge { top: 14px; left: 14px; }
.card-rating-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
  gap: 10px;
}

/* ===== fade-in ===== */
.fade { animation: fade 0.4s ease both; }
@keyframes fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== responsive ===== */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 64px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-art { max-width: 360px; margin: 0 auto; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px 0; margin-top: 48px; }
  .detail { grid-template-columns: 1fr; gap: 32px; }
  .foot-top { grid-template-columns: 1fr; gap: 32px; }
  .spec-grid { grid-template-columns: 1fr; }
  .picks { grid-template-columns: 1fr; }
  .trust-inner { gap: 20px; }
  .brands { gap: 24px; }
}
@media (max-width: 520px) {
  .hero h1 { font-size: 36px; }
  .section { padding: 56px 0; }
  .nav-status { display: none; }
}
