/* ── Products page ────────────────────────────────── */
.prod-pg { padding: 72px 0; }

/* ── Tab navigation ───────────────────────────────── */
.tab-nav { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 44px; overflow-x: auto; scrollbar-width: none; }
.tab-nav::-webkit-scrollbar { display: none; }
.tab-p { display: none; }
.tab-p.active { display: block; }

/* ── Product grid ─────────────────────────────────── */
.pg3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* ── Product card details ─────────────────────────── */
.prod-tier { font-family: var(--font-mono); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.prod-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.prod-spec { font-size: 0.825rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.prod-price { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 16px; font-variant-numeric: tabular-nums; }
.prod-price small { font-family: var(--font-body); font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }
.prod-price--muted { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0; }

/* ── Product image ────────────────────────────────── */
.prod-img {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--surface-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.prod-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-img-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blue);
  opacity: 0.35;
  width: 100%;
  height: 100%;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 920px) {
  .pg3 { grid-template-columns: 1fr; }
}
