/* ═══════════════════════════════════════════════════════════════
   TNC SHOP · main.css
   Design system for shop.thenepalicomment.com
   Brand: Ink Black foundation · Print Saffron accent · Crimson anchor
   Type:  Bebas Neue (impact) · Fraunces (serif) · DM Sans (body) · DM Mono (labels)
═══════════════════════════════════════════════════════════════ */

/* ── 1. TOKENS ─────────────────────────────────────────────── */
:root {
  /* Neutrals */
  --ink:       #0F0F0F;
  --charcoal:  #1C1C1C;
  --concrete:  #2A2A2A;
  --steel:     #484848;
  --muted:     #7A7671;
  --chalk:     #C8C4BC;
  --paper:     #F4F1EA;
  --white:     #FFFFFF;

  /* Brand */
  --crimson:   #C41E3A;
  --crimson-d: #8B1226;
  --crimson-l: #E8364F;
  --saffron:   #E8820C;
  --saffron-l: #F5A030;
  --saffron-p: #FFF3E0;
  --acid:      #E8E442;
  --acid-d:    #B8B410;
  --teal:      #0D9E8A;
  --teal-p:    #E0F6F3;

  /* Type */
  --font-impact: 'Bebas Neue', Impact, sans-serif;
  --font-serif:  'Fraunces', Georgia, serif;
  --font-body:   'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono:   'DM Mono', ui-monospace, monospace;

  /* Scale */
  --r-1: 2px;
  --r-2: 3px;
  --r-3: 4px;
  --r-4: 6px;

  /* Spacing scale (rem) */
  --s-1: .25rem; --s-2: .5rem; --s-3: .75rem; --s-4: 1rem;
  --s-5: 1.5rem; --s-6: 2rem; --s-7: 2.5rem; --s-8: 3rem;
  --s-9: 4rem;  --s-10: 5rem; --s-11: 6rem;

  /* Header height (used to offset sticky sections) */
  --header-h: 72px;
}

/* ── 2. RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .15s ease, opacity .2s ease; }
a:hover { color: var(--saffron); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: transparent; }
ul, ol { list-style: none; }
hr { border: 0; height: 1px; background: rgba(255,255,255,.08); }
::selection { background: var(--saffron); color: var(--ink); }
:focus-visible { outline: 2px solid var(--saffron); outline-offset: 2px; }

/* ── 3. TYPOGRAPHY ─────────────────────────────────────────── */
.tnc-impact {
  font-family: var(--font-impact);
  letter-spacing: .02em;
  line-height: .92;
  color: var(--white);
}
.tnc-impact-xl { font-size: clamp(3.5rem, 11vw, 9rem); }
.tnc-impact-lg { font-size: clamp(2.5rem, 7vw, 6rem); }
.tnc-impact-md { font-size: clamp(1.8rem, 4vw, 3rem); }
.tnc-impact span { display: block; }
.tnc-impact-dim  { color: rgba(255,255,255,.16); }
.tnc-impact-main { color: var(--white); }
.tnc-impact-saf  { color: var(--saffron); }
.tnc-impact-crim { color: var(--crimson-l); }

.tnc-serif {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.tnc-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--saffron);
  display: inline-block;
  margin-bottom: var(--s-3);
}
.tnc-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
h1, h2, h3 { color: var(--white); }
h3 { font-family: var(--font-serif); font-weight: 700; font-size: 1.2rem; margin: var(--s-6) 0 var(--s-3); }
p  { line-height: 1.7; color: rgba(255,255,255,.65); max-width: 70ch; }
p.lead { font-family: var(--font-serif); font-size: 1.15rem; color: rgba(255,255,255,.75); }
strong { color: var(--white); font-weight: 500; }
code { font-family: var(--font-mono); font-size: .85rem; background: rgba(255,255,255,.06); padding: 2px 6px; border-radius: 3px; color: var(--saffron); }

/* ── 4. LAYOUT ─────────────────────────────────────────────── */
.tnc-wrap { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px)  { .tnc-wrap { padding: 0 2rem; } }
@media (min-width: 1200px) { .tnc-wrap { padding: 0 3rem; } }

.tnc-section { padding: var(--s-10) 0; position: relative; }
.tnc-section--paper  { background: var(--paper); color: var(--ink); }
.tnc-section--paper p { color: var(--steel); }
.tnc-section--paper h1, .tnc-section--paper h2, .tnc-section--paper h3 { color: var(--ink); }
.tnc-section--saffron { background: var(--saffron); color: var(--ink); }
.tnc-section--saffron h2, .tnc-section--saffron p { color: var(--ink); }

@media (max-width: 720px) {
  .tnc-section { padding: var(--s-8) 0; }
}

/* ── 5. BUTTONS ────────────────────────────────────────────── */
.tnc-btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: .6rem;
  font-family: var(--font-impact);
  font-size: 1rem;
  letter-spacing: .06em;
  padding: .9rem 1.5rem;
  border-radius: var(--r-2);
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 48px;
  transition: all .18s ease;
  text-align: center;
  line-height: 1;
}
.tnc-btn:hover { transform: translateY(-1px); }
.tnc-btn:active { transform: scale(.98); }
.tnc-btn--primary {
  background: var(--saffron);
  color: var(--ink);
}
.tnc-btn--primary:hover { background: var(--saffron-l); color: var(--ink); }
.tnc-btn--secondary {
  background: transparent;
  color: var(--saffron);
  border-color: var(--saffron);
}
.tnc-btn--secondary:hover { background: var(--saffron); color: var(--ink); }
.tnc-btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.25);
}
.tnc-btn--ghost:hover { border-color: var(--white); color: var(--white); }
.tnc-btn--danger {
  background: var(--crimson);
  color: var(--white);
}
.tnc-btn--block { width: 100%; }
.tnc-btn--lg { font-size: 1.15rem; padding: 1.1rem 2rem; min-height: 56px; }
.tnc-btn--sm { font-size: .85rem; padding: .55rem 1rem; min-height: 36px; }
.tnc-btn[disabled], .tnc-btn--disabled {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.4);
  border-color: transparent;
  cursor: not-allowed;
  transform: none !important;
}

/* ── 6. HEADER ─────────────────────────────────────────────── */
.tnc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,15,15,.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.tnc-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: var(--s-5);
}
.tnc-header-announce {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: .5rem 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.tnc-header-announce strong { color: var(--saffron); font-weight: 500; }

.tnc-logo {
  font-family: var(--font-impact);
  font-size: 1.15rem;
  letter-spacing: .06em;
  line-height: .95;
  color: var(--white);
  display: inline-block;
}
.tnc-logo-line { display: block; }
.tnc-logo-accent-saf  { color: var(--saffron); }
.tnc-logo-accent-crim { color: var(--crimson); }
.tnc-logo-on-light { color: var(--ink); }

.tnc-nav { display: none; }
@media (min-width: 1024px) {
  .tnc-nav { display: flex; gap: 2rem; }
}
.tnc-nav a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  position: relative;
  padding: .5rem 0;
}
.tnc-nav a:hover { color: var(--white); }
.tnc-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.tnc-nav a:hover::after { transform: scaleX(1); }

.tnc-header-actions { display: flex; align-items: center; gap: var(--s-3); }
.tnc-icon-btn {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: var(--r-3);
  color: rgba(255,255,255,.8);
  position: relative;
}
.tnc-icon-btn:hover { color: var(--white); background: rgba(255,255,255,.06); }
.tnc-cart-count {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 18px; height: 18px;
  background: var(--saffron);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  border-radius: 9px;
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 0 5px;
  line-height: 1;
}
.tnc-cart-count:empty, .tnc-cart-count[data-count="0"] { display: none; }

.tnc-mobile-toggle { display: inline-flex; }
@media (min-width: 1024px) { .tnc-mobile-toggle { display: none; } }

/* ── 7. MOBILE DRAWER (NAV) ────────────────────────────────── */
.tnc-mobile-drawer {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.tnc-mobile-drawer.is-open { transform: translateX(0); }
.tnc-mobile-drawer-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.tnc-mobile-drawer-nav { padding: 1.5rem 1.25rem; flex: 1; }
.tnc-mobile-drawer-nav a {
  display: block;
  font-family: var(--font-impact);
  font-size: 1.5rem;
  letter-spacing: .04em;
  padding: .65rem 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.tnc-mobile-drawer-nav a:hover { color: var(--saffron); }
.tnc-mobile-drawer-foot {
  padding: 1.5rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.06);
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,.4);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ── 8. MOBILE BOTTOM TAB BAR ──────────────────────────────── */
.tnc-tabbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(15,15,15,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
  z-index: 80;
  display: flex;
  padding: .35rem 0 calc(.35rem + env(safe-area-inset-bottom));
}
.tnc-tabbar a {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
  padding: .35rem;
  min-height: 56px;
  color: rgba(255,255,255,.55);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tnc-tabbar a.is-active { color: var(--saffron); }
.tnc-tabbar a:hover { color: var(--white); }
@media (min-width: 1024px) { .tnc-tabbar { display: none; } }
body { padding-bottom: 0; }
@media (max-width: 1023px) { body.tnc-has-tabbar { padding-bottom: 60px; } }

/* ── 9. HERO ───────────────────────────────────────────────── */
.tnc-hero {
  position: relative;
  background: var(--ink);
  padding: var(--s-9) 0 var(--s-10);
  overflow: hidden;
  min-height: 78vh;
  display: flex; align-items: center;
}
.tnc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.tnc-hero::after {
  content: '';
  position: absolute;
  right: -10%; top: -10%;
  width: 60vmin; height: 60vmin;
  background: radial-gradient(closest-side, rgba(232,130,12,.15), transparent 70%);
  pointer-events: none;
  filter: blur(20px);
}
.tnc-hero-inner { position: relative; z-index: 2; width: 100%; }
.tnc-hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: var(--s-5);
  padding: .35rem .75rem;
  border: 1px solid rgba(232,130,12,.35);
  border-radius: var(--r-1);
  background: rgba(232,130,12,.06);
}
.tnc-hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--saffron);
  animation: tnc-pulse 2s infinite;
}
@keyframes tnc-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .5; transform: scale(1.4); }
}
.tnc-hero-headline { margin-bottom: var(--s-6); }
.tnc-hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: rgba(255,255,255,.65);
  max-width: 56ch;
  line-height: 1.5;
  margin: var(--s-5) 0 var(--s-7);
}
.tnc-hero-actions {
  display: flex; flex-wrap: wrap; gap: var(--s-4);
}
.tnc-hero-meta {
  display: flex; flex-wrap: wrap; gap: var(--s-6);
  margin-top: var(--s-9);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,.08);
}
.tnc-hero-meta-item .tnc-label { display: block; margin-bottom: 4px; }
.tnc-hero-meta-item .val {
  font-family: var(--font-impact);
  font-size: 1.2rem;
  letter-spacing: .04em;
  color: var(--white);
}
.tnc-hero-meta-item .val.saf { color: var(--saffron); }

/* ── 10. COUNTDOWN ─────────────────────────────────────────── */
.tnc-countdown { display: inline-flex; flex-direction: column; gap: var(--s-2); }
.tnc-countdown-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--saffron);
}
.tnc-countdown-grid {
  display: flex; gap: var(--s-2);
}
.tnc-countdown-unit {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-3);
  padding: .65rem .85rem;
  min-width: 64px;
  text-align: center;
  display: flex; flex-direction: column; gap: 2px;
}
.tnc-countdown-num {
  font-family: var(--font-impact);
  font-size: 2rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.tnc-countdown-unit-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── 11. NOTIFY MODULE (PRE-LAUNCH) ────────────────────────── */
.tnc-notify-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-4);
  padding: var(--s-7);
  max-width: 540px;
  position: relative;
  overflow: hidden;
}
.tnc-notify-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--crimson) 33%, var(--saffron) 33% 66%, var(--acid) 66%);
}
.tnc-notify-card h3 {
  font-family: var(--font-impact);
  font-size: 1.8rem;
  letter-spacing: .04em;
  color: var(--white);
  margin: 0 0 .5rem;
}
.tnc-notify-card p {
  margin-bottom: var(--s-5);
  font-size: .92rem;
  color: rgba(255,255,255,.6);
}
.tnc-notify-form {
  display: flex; flex-direction: column; gap: var(--s-3);
}
.tnc-notify-row {
  display: flex; gap: var(--s-2);
  flex-wrap: wrap;
}
.tnc-notify-row .tnc-input { flex: 1 1 240px; }
.tnc-input, .tnc-select, .tnc-textarea {
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-2);
  padding: .85rem 1rem;
  color: var(--white);
  width: 100%;
  font-family: var(--font-body);
  font-size: .95rem;
  min-height: 48px;
  transition: border-color .2s, background .2s;
}
.tnc-input:focus, .tnc-select:focus, .tnc-textarea:focus {
  border-color: var(--saffron);
  outline: none;
  background: rgba(232,130,12,.04);
}
.tnc-input::placeholder { color: rgba(255,255,255,.35); }
.tnc-checkbox-row {
  display: flex; flex-wrap: wrap; gap: var(--s-4);
}
.tnc-checkbox {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  cursor: pointer;
}
.tnc-checkbox input {
  width: 18px; height: 18px;
  accent-color: var(--saffron);
}
.tnc-notify-success, .tnc-notify-error {
  padding: .85rem 1rem;
  border-radius: var(--r-2);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  margin-top: var(--s-3);
  display: none;
}
.tnc-notify-success {
  background: rgba(13,158,138,.1);
  border: 1px solid rgba(13,158,138,.3);
  color: #5DD;
}
.tnc-notify-error {
  background: rgba(196,30,58,.1);
  border: 1px solid rgba(196,30,58,.3);
  color: #F88;
}
.is-visible { display: block !important; }

/* ── 12. DROP CARD / FEATURED DROP ─────────────────────────── */
.tnc-drop-feature {
  background: var(--charcoal);
  border-radius: var(--r-4);
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 900px) {
  .tnc-drop-feature { grid-template-columns: 1.1fr 1fr; }
}
.tnc-drop-feature-art {
  background: linear-gradient(135deg, #0F0F0F 0%, #1c1c1c 100%);
  min-height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center; justify-content: center;
  padding: var(--s-6);
}
.tnc-drop-feature-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(232,130,12,.18), transparent 60%);
}
.tnc-drop-feature-text {
  padding: var(--s-7);
  display: flex; flex-direction: column;
  justify-content: center;
  gap: var(--s-4);
}
.tnc-drop-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--saffron);
}
.tnc-drop-feature-text h3 {
  font-family: var(--font-impact);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: .03em;
  line-height: .95;
  color: var(--white);
  margin: 0;
}
.tnc-drop-feature-text h3 .accent { color: var(--saffron); display: block; }

/* Print sample (text-only) shown inside the drop art area */
.tnc-tee-mock {
  position: relative;
  width: clamp(180px, 28vw, 280px);
  aspect-ratio: 1 / 1.1;
}
.tnc-tee-mock svg { width: 100%; height: auto; }
.tnc-tee-mock-print {
  position: absolute;
  top: 38%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: var(--font-impact);
  letter-spacing: .03em;
  line-height: 1;
  color: var(--saffron);
  width: 60%;
  font-size: clamp(.65rem, 1.4vw, 1rem);
}

/* ── 13. CATEGORY GRID ─────────────────────────────────────── */
.tnc-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
@media (min-width: 700px) { .tnc-cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .tnc-cat-grid { grid-template-columns: repeat(5, 1fr); } }
.tnc-cat-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-3);
  padding: var(--s-5) var(--s-4);
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .25s ease, border-color .25s ease;
}
.tnc-cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,130,12,.4);
}
.tnc-cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
}
.tnc-cat-card[data-cat="csit"]::before { background: var(--saffron); }
.tnc-cat-card[data-cat="code"]::before { background: var(--teal); }
.tnc-cat-card[data-cat="science"]::before { background: var(--acid); }
.tnc-cat-card[data-cat="student"]::before { background: var(--crimson-l); }
.tnc-cat-card[data-cat="political"]::before { background: var(--chalk); }

.tnc-cat-num {
  position: absolute;
  top: var(--s-2); right: var(--s-3);
  font-family: var(--font-impact);
  font-size: 2.5rem;
  color: rgba(255,255,255,.06);
  line-height: 1;
}
.tnc-cat-card h3 {
  font-family: var(--font-impact);
  font-size: 1.25rem;
  letter-spacing: .04em;
  color: var(--white);
  margin: 0 0 var(--s-2);
}
.tnc-cat-phase {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tnc-cat-card[data-cat="csit"]    .tnc-cat-phase { color: var(--saffron); }
.tnc-cat-card[data-cat="code"]    .tnc-cat-phase { color: var(--teal); }
.tnc-cat-card[data-cat="science"] .tnc-cat-phase { color: var(--acid-d); }
.tnc-cat-card[data-cat="student"] .tnc-cat-phase { color: var(--crimson-l); }
.tnc-cat-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin: var(--s-3) 0 var(--s-4);
  line-height: 1.5;
}

/* ── 14. PRODUCT CARD ──────────────────────────────────────── */
.tnc-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
@media (min-width: 768px)  { .tnc-product-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); } }
@media (min-width: 1200px) { .tnc-product-grid { grid-template-columns: repeat(4, 1fr); } }

.tnc-product-card {
  background: var(--charcoal);
  border-radius: var(--r-3);
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  position: relative;
  transition: transform .25s ease, border-color .25s ease;
}
.tnc-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,130,12,.3);
}
.tnc-product-card-media {
  background: var(--ink);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.tnc-product-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.tnc-product-card:hover .tnc-product-card-media img { transform: scale(1.04); }

.tnc-badge {
  position: absolute;
  top: var(--s-2); left: var(--s-2);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--r-1);
  z-index: 2;
}
.tnc-badge-low-stock { background: var(--saffron); color: var(--ink); }
.tnc-badge-sold-out  { background: rgba(0,0,0,.85); color: var(--white); border: 1px solid rgba(255,255,255,.2); }
.tnc-badge-new       { background: var(--teal); color: var(--white); }
.tnc-badge-sale      { background: var(--crimson); color: var(--white); right: var(--s-2); left: auto; }

.tnc-product-card-body { padding: var(--s-4); }
.tnc-product-card-cat {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .25rem;
  display: block;
}
.tnc-product-card-title {
  font-family: var(--font-impact);
  font-size: 1.1rem;
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 .35rem;
  display: block;
}
.tnc-product-card-price {
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--saffron);
  letter-spacing: .04em;
}
.tnc-product-card-price del {
  color: var(--muted);
  margin-right: .35rem;
}
.tnc-product-card-actions {
  margin-top: var(--s-3);
  display: flex; gap: var(--s-2);
}

/* ── 15. SINGLE PRODUCT ────────────────────────────────────── */
.tnc-single-product .product { display: block; }
.tnc-product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  padding: var(--s-6) 0;
}
@media (min-width: 900px) {
  .tnc-product-layout { grid-template-columns: 1.1fr 1fr; gap: var(--s-7); align-items: flex-start; }
}
.tnc-product-gallery { position: relative; }
.tnc-product-gallery img { border-radius: var(--r-3); }
.tnc-product-info { display: flex; flex-direction: column; gap: var(--s-4); }
.tnc-product-info h1 {
  font-family: var(--font-impact);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: .04em;
  line-height: 1;
  color: var(--white);
}
.tnc-product-short {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.tnc-product-price {
  font-family: var(--font-impact);
  font-size: 2rem;
  color: var(--saffron);
  letter-spacing: .04em;
}
.tnc-product-price del { color: var(--muted); margin-right: .5rem; font-size: 1.2rem; }
.tnc-attr-group { display: flex; flex-direction: column; gap: .5rem; }
.tnc-attr-group .tnc-label { color: rgba(255,255,255,.7); }
.tnc-swatch-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.tnc-swatch {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  cursor: pointer;
  position: relative;
  transition: transform .15s, border-color .15s;
}
.tnc-swatch:hover { transform: scale(1.1); }
.tnc-swatch.is-active {
  border-color: var(--saffron);
  box-shadow: 0 0 0 2px var(--ink), 0 0 0 4px var(--saffron);
}
.tnc-size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(48px, 1fr));
  gap: .35rem;
  max-width: 360px;
}
.tnc-size-btn {
  min-height: 48px;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-2);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--white);
  cursor: pointer;
  transition: all .15s;
}
.tnc-size-btn:hover { border-color: var(--saffron); }
.tnc-size-btn.is-active { background: var(--saffron); color: var(--ink); border-color: var(--saffron); }
.tnc-size-btn[disabled] {
  opacity: .35;
  cursor: not-allowed;
  text-decoration: line-through;
}
.tnc-size-guide-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--saffron);
  background: transparent;
  border: 0;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

/* Trust badges */
.tnc-trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin: var(--s-4) 0;
  padding-top: var(--s-4);
  border-top: 1px solid rgba(255,255,255,.06);
}
@media (min-width: 600px) { .tnc-trust-badges { grid-template-columns: repeat(4, 1fr); } }
.tnc-trust-badges li {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.tnc-trust-icon {
  width: 20px; height: 20px;
  display: inline-flex;
  color: var(--saffron);
}

/* Accordion */
.tnc-accordion details {
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: .85rem 0;
}
.tnc-accordion summary {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding-right: .25rem;
}
.tnc-accordion summary::-webkit-details-marker { display: none; }
.tnc-accordion summary::after {
  content: '+';
  font-family: var(--font-impact);
  color: var(--saffron);
  font-size: 1.3rem;
  transition: transform .2s;
  line-height: 1;
}
.tnc-accordion details[open] summary::after { transform: rotate(45deg); }
.tnc-accordion-body {
  padding: var(--s-3) 0 0;
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

/* ── 16. CART DRAWER ───────────────────────────────────────── */
.tnc-cart-drawer {
  position: fixed;
  top: 0; bottom: 0; right: 0;
  width: min(420px, 90vw);
  background: var(--ink);
  border-left: 1px solid rgba(255,255,255,.08);
  z-index: 250;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.tnc-cart-drawer.is-open { transform: translateX(0); }
@media (max-width: 600px) {
  .tnc-cart-drawer {
    width: 100%;
    top: auto;
    height: 92vh;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.08);
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
  }
  .tnc-cart-drawer.is-open { transform: translateY(0); }
}
.tnc-cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.tnc-cart-drawer-head h2 {
  font-family: var(--font-impact);
  font-size: 1.3rem;
  letter-spacing: .04em;
  color: var(--white);
  margin: 0;
}
.tnc-cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}
.tnc-cart-drawer-foot {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem;
  background: var(--charcoal);
}
.tnc-cart-line {
  display: flex; gap: var(--s-3);
  padding: var(--s-4) 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.tnc-cart-line:last-child { border-bottom: 0; }
.tnc-cart-line-thumb {
  width: 64px; height: 80px;
  background: var(--charcoal);
  border-radius: var(--r-2);
  overflow: hidden;
  flex-shrink: 0;
}
.tnc-cart-line-meta { flex: 1; }
.tnc-cart-line-title {
  font-family: var(--font-impact);
  font-size: 1rem;
  letter-spacing: .04em;
  color: var(--white);
  margin: 0 0 .15rem;
}
.tnc-cart-line-attr {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .04em;
}
.tnc-cart-line-price { color: var(--saffron); font-family: var(--font-mono); font-size: 13px; margin-top: 4px; }
.tnc-cart-qty {
  display: inline-flex; align-items: center;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-2);
  margin-top: var(--s-2);
  overflow: hidden;
}
.tnc-cart-qty button {
  width: 32px; height: 32px;
  color: var(--white);
}
.tnc-cart-qty input {
  width: 36px;
  text-align: center;
  background: transparent;
  border: 0;
  font-family: var(--font-mono);
  color: var(--white);
}
.tnc-cart-total-row {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .35rem;
  color: rgba(255,255,255,.65);
}
.tnc-cart-total-row.tnc-total {
  font-family: var(--font-impact);
  font-size: 1.4rem;
  text-transform: none;
  color: var(--white);
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(255,255,255,.08);
  align-items: baseline;
}
.tnc-cart-total-row.tnc-total span:last-child { color: var(--saffron); }

/* Overlay used by both drawers */
.tnc-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 240;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.tnc-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ── 17. STICKY ATC BAR ────────────────────────────────────── */
.tnc-sticky-atc {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: .75rem 1rem;
  display: flex; align-items: center; gap: var(--s-3);
  z-index: 90;
  transform: translateY(110%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.tnc-sticky-atc.is-visible { transform: translateY(0); }
.tnc-sticky-atc-thumb { width: 44px; height: 44px; flex-shrink: 0; }
.tnc-sticky-atc-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-2); }
.tnc-sticky-atc-meta { flex: 1; min-width: 0; }
.tnc-sticky-atc-title {
  font-family: var(--font-impact);
  font-size: .95rem;
  color: var(--white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tnc-sticky-atc-price { font-family: var(--font-mono); font-size: 12px; color: var(--saffron); }
@media (max-width: 1023px) { .tnc-sticky-atc { padding-bottom: calc(.75rem + env(safe-area-inset-bottom)); bottom: 60px; } }

/* ── 18. WHY / VALUE PROPS ─────────────────────────────────── */
.tnc-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-6);
}
@media (min-width: 700px) { .tnc-why-grid { grid-template-columns: repeat(4, 1fr); } }
.tnc-why-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-3);
  padding: var(--s-5);
}
.tnc-why-card .icon {
  width: 32px; height: 32px;
  display: inline-flex;
  color: var(--saffron);
  margin-bottom: var(--s-3);
}
.tnc-why-card h4 {
  font-family: var(--font-impact);
  font-size: 1.15rem;
  letter-spacing: .04em;
  color: var(--white);
  margin: 0 0 .35rem;
}
.tnc-why-card p {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}

/* ── 19. EMAIL SIGNUP STRIP ────────────────────────────────── */
.tnc-email-strip {
  background: var(--saffron);
  color: var(--ink);
  padding: var(--s-9) 0;
  position: relative;
  overflow: hidden;
}
.tnc-email-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
.tnc-email-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: center;
  position: relative; z-index: 2;
}
@media (min-width: 800px) { .tnc-email-strip-inner { grid-template-columns: 1.2fr 1fr; } }
.tnc-email-strip h2 {
  font-family: var(--font-impact);
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: .95;
  letter-spacing: .03em;
  margin: 0 0 .5rem;
}
.tnc-email-strip p {
  color: rgba(15,15,15,.7);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  max-width: 44ch;
}
.tnc-email-strip-form {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-3);
  padding: var(--s-5);
}
.tnc-email-strip-form .tnc-input { background: var(--charcoal); }

/* ── 20. FOOTER ────────────────────────────────────────────── */
.tnc-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: var(--s-9) 0 var(--s-5);
  margin-top: var(--s-10);
}
.tnc-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 700px)  { .tnc-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.tnc-footer-brand .tnc-logo { font-size: 1.4rem; margin-bottom: var(--s-3); }
.tnc-footer-brand p {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--s-4);
  font-size: .95rem;
}
.tnc-footer-social {
  display: flex; gap: .5rem;
}
.tnc-footer-social a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: var(--r-2);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
}
.tnc-footer-social a:hover { color: var(--saffron); border-color: var(--saffron); }
.tnc-footer h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--saffron);
  margin: 0 0 var(--s-3);
}
.tnc-footer ul li {
  margin-bottom: .35rem;
}
.tnc-footer ul li a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
}
.tnc-footer ul li a:hover { color: var(--white); }
.tnc-footer-meta {
  margin-top: var(--s-7);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: var(--s-3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35);
}
.tnc-footer-meta a { color: var(--saffron); }
@media (max-width: 1023px) { .tnc-footer { padding-bottom: calc(60px + var(--s-5)); } }

/* ── 21. UTIL CLASSES ──────────────────────────────────────── */
.tnc-tx-center { text-align: center; }
.tnc-mt-3 { margin-top: var(--s-3); }
.tnc-mt-4 { margin-top: var(--s-4); }
.tnc-mt-5 { margin-top: var(--s-5); }
.tnc-mt-6 { margin-top: var(--s-6); }
.tnc-mt-7 { margin-top: var(--s-7); }
.tnc-mb-5 { margin-bottom: var(--s-5); }
.tnc-mb-6 { margin-bottom: var(--s-6); }
.tnc-flex { display: flex; }
.tnc-flex-col { flex-direction: column; }
.tnc-gap-2 { gap: var(--s-2); }
.tnc-gap-3 { gap: var(--s-3); }
.tnc-gap-4 { gap: var(--s-4); }
.tnc-items-center { align-items: center; }
.tnc-between { justify-content: space-between; }
.tnc-wrap-row { display: flex; flex-wrap: wrap; }
.tnc-hide-mobile { display: none; }
@media (min-width: 768px) { .tnc-hide-mobile { display: initial; } .tnc-hide-desktop { display: none; } }

/* ── 22. BREADCRUMBS ───────────────────────────────────────── */
.tnc-breadcrumbs {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  padding: var(--s-3) 0;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  align-items: center;
}
.tnc-breadcrumbs a { color: rgba(255,255,255,.65); }
.tnc-breadcrumbs a:hover { color: var(--saffron); }
.tnc-breadcrumbs-sep { color: rgba(255,255,255,.25); }
.tnc-breadcrumbs [aria-current="page"] { color: var(--saffron); }

/* ── 23. SIZE GUIDE MODAL ──────────────────────────────────── */
.tnc-modal {
  position: fixed; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  z-index: 300;
  padding: 1rem;
}
.tnc-modal.is-open { display: flex; }
.tnc-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.7);
}
.tnc-modal-card {
  position: relative;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-4);
  max-width: 640px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: var(--s-6);
}
.tnc-modal-close {
  position: absolute;
  top: var(--s-3); right: var(--s-3);
  width: 36px; height: 36px;
  color: var(--white);
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: var(--r-2);
}
.tnc-modal-close:hover { background: rgba(255,255,255,.08); }
.tnc-modal-card h3 {
  font-family: var(--font-impact);
  font-size: 1.8rem;
  margin: 0 0 var(--s-4);
  letter-spacing: .04em;
}
.tnc-size-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--s-3);
  font-size: .9rem;
}
.tnc-size-table th, .tnc-size-table td {
  padding: .55rem .75rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-align: left;
}
.tnc-size-table th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.tnc-size-table tr:hover td { background: rgba(255,255,255,.02); }

/* ── 24. SECTION HEADERS ───────────────────────────────────── */
.tnc-section-head {
  margin-bottom: var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-2);
}
.tnc-section-head-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: var(--s-3);
}
.tnc-section-head h2 {
  font-family: var(--font-impact);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: .03em;
  line-height: .95;
}
.tnc-section-head h2 .accent { color: var(--saffron); }
.tnc-section-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--saffron);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.tnc-section-link::after { content: '→'; }
.tnc-section-link:hover { color: var(--saffron-l); }

/* ── 25. ALERTS / NOTICES ──────────────────────────────────── */
.woocommerce-notices-wrapper { margin-bottom: var(--s-4); }
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-2);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .02em;
  margin: 0 0 var(--s-3);
}
.woocommerce-message {
  background: rgba(13,158,138,.1);
  border: 1px solid rgba(13,158,138,.3);
  color: #7DD;
}
.woocommerce-info {
  background: rgba(232,130,12,.08);
  border: 1px solid rgba(232,130,12,.3);
  color: var(--saffron-l);
}
.woocommerce-error {
  background: rgba(196,30,58,.1);
  border: 1px solid rgba(196,30,58,.3);
  color: #F88;
  list-style: none;
}

/* ── 26. 404 ───────────────────────────────────────────────── */
.tnc-404 {
  text-align: center;
  padding: var(--s-11) 0;
}
.tnc-404 .num {
  font-family: var(--font-impact);
  font-size: clamp(6rem, 20vw, 16rem);
  color: var(--saffron);
  line-height: .9;
}
.tnc-404 .line {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,.5);
  font-size: 1.2rem;
  max-width: 40ch;
  margin: 0 auto var(--s-6);
}

/* ── 27. UTILITY: SCREEN-READER ONLY ───────────────────────── */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px; width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  white-space: nowrap;
  word-wrap: normal !important;
}

/* ── 28. ANIMATIONS ────────────────────────────────────────── */
@keyframes tnc-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tnc-reveal { opacity: 0; }
.tnc-reveal.is-visible {
  animation: tnc-fade-up .6s ease both;
}

/* ── 29. MICRO ─────────────────────────────────────────────── */
.tnc-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  margin: var(--s-7) 0;
}
.tnc-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-1);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.65);
}
.tnc-pill--saf { background: rgba(232,130,12,.12); border-color: rgba(232,130,12,.35); color: var(--saffron-l); }
.tnc-pill--teal { background: rgba(13,158,138,.12); border-color: rgba(13,158,138,.3); color: #5DD; }
.tnc-pill--crim { background: rgba(196,30,58,.12); border-color: rgba(196,30,58,.3); color: #F88; }

/* ── 30. PRINT QUERIES ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   31. CATEGORY PAGE (matches tnc-category-page-wireframe.html)
   ═══════════════════════════════════════════════════════════════ */

.tnc-cat-hero {
  --cat-accent: var(--saffron);
  background: linear-gradient(135deg, var(--ink) 0%, #1a1a0a 100%);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative;
  overflow: hidden;
}
.tnc-cat-hero-ghost {
  position: absolute;
  right: -2rem; top: -1rem;
  font-family: var(--font-impact);
  font-size: clamp(8rem, 22vw, 18rem);
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
  letter-spacing: .04em;
  white-space: nowrap;
}
.tnc-cat-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .tnc-cat-hero-inner { grid-template-columns: 1fr auto; }
}
.tnc-cat-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: lowercase;
  color: var(--cat-accent);
  margin-bottom: .85rem;
}
.tnc-cat-hero-title {
  font-family: var(--font-impact);
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: .9;
  letter-spacing: .02em;
  color: var(--white);
  margin-bottom: 1rem;
}
.tnc-cat-hero-title span { color: var(--cat-accent); }
.tnc-cat-hero-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,.65);
  max-width: 52ch;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.tnc-cat-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.tnc-cat-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-1);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: 1px solid transparent;
}
.tnc-cat-pill--live { background: rgba(196,30,58,.2); color: #F88; border-color: rgba(196,30,58,.4); }
.tnc-cat-pill--live .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--crimson-l);
  animation: tnc-pulse 2s infinite;
}
.tnc-cat-pill--count { background: rgba(232,130,12,.15); color: var(--saffron); border-color: rgba(232,130,12,.3); }
.tnc-cat-pill--free  { background: rgba(13,158,138,.15); color: #5DD; border-color: rgba(13,158,138,.3); }

.tnc-cat-hero-mock {
  display: block;
  width: 240px;
  background: var(--concrete);
  border-radius: var(--r-4);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, border-color .25s ease;
}
.tnc-cat-hero-mock:hover { transform: translateY(-3px); border-color: rgba(232,130,12,.3); }
.tnc-cat-hero-mock-img {
  height: 220px;
  background: var(--charcoal);
  display: flex;
  align-items: center; justify-content: center;
  font-family: var(--font-impact);
  font-size: 1.2rem;
  letter-spacing: .04em;
  text-align: center;
  padding: 1.5rem;
  line-height: 1.2;
  color: var(--cat-accent);
  position: relative;
}
.tnc-cat-hero-mock-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--crimson);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
  padding: 3px 8px;
  border-radius: var(--r-1);
  text-transform: uppercase;
}
.tnc-cat-hero-mock-info { padding: .85rem 1rem; }
.tnc-cat-hero-mock-name {
  font-family: var(--font-impact);
  font-size: 1rem;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: .2rem;
}
.tnc-cat-hero-mock-price {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--saffron);
}

/* Sticky filter bar */
.tnc-filter-bar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: .85rem 0;
  position: sticky;
  top: var(--header-h);
  z-index: 40;
}
.tnc-filter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.tnc-filter-left,
.tnc-filter-form {
  display: flex;
  gap: .55rem;
  align-items: center;
  flex-wrap: wrap;
}
.tnc-filter-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.tnc-filter-select {
  background: var(--concrete);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--chalk);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .45rem .75rem;
  border-radius: var(--r-2);
  cursor: pointer;
  min-height: 36px;
}
.tnc-filter-select--active {
  background: rgba(232,130,12,.15);
  border-color: rgba(232,130,12,.4);
  color: var(--saffron);
}
.tnc-filter-right { display: flex; align-items: center; gap: 1rem; }
.tnc-filter-count {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .08em;
}
.tnc-view-toggle { display: flex; gap: .25rem; }
.tnc-view-btn {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.1);
  background: transparent;
  border-radius: var(--r-2);
  color: rgba(255,255,255,.6);
  cursor: pointer;
}
.tnc-view-btn.is-active {
  background: rgba(232,130,12,.18);
  border-color: var(--saffron);
  color: var(--saffron);
}

/* Shop results wrapper */
.tnc-shop-results { padding: 2.5rem 0; }
.tnc-shop-results .products,
.tnc-shop-results ul.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
@media (min-width: 768px)  { .tnc-shop-results .products { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .tnc-shop-results .products { grid-template-columns: repeat(3, 1fr); } }

.tnc-empty-cat {
  text-align: center;
  padding: var(--s-10) 0;
}

/* Product card (override of grid card from spec) */
.tnc-prod-card {
  background: var(--concrete);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-4);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  list-style: none;
}
.tnc-prod-card:hover { border-color: rgba(232,130,12,.4); transform: translateY(-3px); }
.tnc-prod-card-img {
  display: block;
  height: 240px;
  background: var(--charcoal);
  position: relative;
  text-align: center;
  padding: 1.5rem;
  font-family: var(--font-impact);
  font-size: 1.05rem;
  letter-spacing: .03em;
  line-height: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}
.tnc-prod-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.tnc-prod-print { position: relative; z-index: 2; }

.tnc-prod-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
  padding: 3px 8px;
  border-radius: var(--r-1);
  text-transform: uppercase;
  z-index: 3;
}
.tnc-prod-badge--new { background: var(--teal); color: var(--white); }
.tnc-prod-badge--hot { background: var(--crimson); color: var(--white); }
.tnc-prod-badge--low { background: var(--saffron); color: var(--ink); }

.tnc-wishlist-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  font-size: .9rem;
  cursor: pointer;
  color: rgba(255,255,255,.75);
  z-index: 3;
  transition: all .15s;
}
.tnc-wishlist-btn:hover, .tnc-wishlist-btn.is-active { background: var(--crimson); color: var(--white); border-color: var(--crimson); }

.tnc-prod-info { padding: 1rem; }
.tnc-prod-cat {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem;
}
.tnc-prod-name {
  font-family: var(--font-impact);
  font-size: 1.05rem;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: .2rem;
  line-height: 1.1;
  display: block;
  text-decoration: none;
}
.tnc-prod-name:hover { color: var(--saffron); }
.tnc-prod-rating {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-bottom: .45rem;
}
.tnc-stars { color: var(--saffron); font-size: .85rem; letter-spacing: .05em; }
.tnc-rating-count {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
}
.tnc-prod-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .65rem;
  line-height: 1.4;
}
.tnc-prod-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.tnc-prod-price {
  font-family: var(--font-mono);
  font-size: .9rem;
  font-weight: 500;
  color: var(--saffron);
}
.tnc-prod-price del { color: var(--muted); font-size: .75rem; margin-right: .35rem; }
.tnc-prod-atc,
.tnc-prod-info .button {
  background: var(--saffron) !important;
  color: var(--ink) !important;
  font-family: var(--font-impact);
  font-size: .85rem;
  letter-spacing: .06em;
  padding: .45rem .9rem;
  border-radius: var(--r-2);
  border: none;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.tnc-prod-atc:hover { background: var(--saffron-l) !important; }

/* Category SEO block */
.tnc-cat-seo {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 3rem 0;
  margin-top: 2rem;
}
.tnc-cat-seo-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 800px) { .tnc-cat-seo-inner { grid-template-columns: 2fr 1fr; } }
.tnc-cat-seo-h2 {
  font-family: var(--font-impact);
  font-size: 2rem;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 1rem;
}
.tnc-cat-seo-body {
  font-family: var(--font-serif);
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
}
.tnc-cat-seo-body p { margin-bottom: .85rem; max-width: none; }
.tnc-cat-seo-links { display: flex; flex-direction: column; gap: .5rem; }
.tnc-cat-seo-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--saffron);
  text-decoration: none;
}
.tnc-cat-seo-link::before { content: '→ '; }

/* ═══════════════════════════════════════════════════════════════
   32. PRODUCT PAGE (matches tnc-product-page-wireframe.html)
   ═══════════════════════════════════════════════════════════════ */

.tnc-prod-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
}
@media (min-width: 900px) {
  .tnc-prod-page { grid-template-columns: 1.1fr 1fr; gap: 3.5rem; align-items: flex-start; }
}

.tnc-prod-gallery {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.tnc-prod-main-img {
  background: var(--charcoal);
  border-radius: var(--r-4);
  border: 1px solid rgba(255,255,255,.08);
  height: 480px;
  display: flex;
  align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.tnc-prod-main-img::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(28,58,107,.25), transparent 60%);
}
.tnc-prod-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative; z-index: 1;
}
.tnc-tee-design {
  font-family: var(--font-impact);
  font-size: 2.4rem;
  letter-spacing: .04em;
  text-align: center;
  line-height: 1.05;
  color: inherit;
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}
.tnc-tee-small {
  font-family: var(--font-serif);
  font-size: .9rem;
  font-style: italic;
  color: rgba(255,255,255,.5);
  display: block;
  margin-top: .65rem;
  font-weight: 400;
  letter-spacing: 0;
}
.tnc-zoom-badge {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 8px;
  border-radius: var(--r-2);
  letter-spacing: .06em;
  z-index: 5;
}
.tnc-thumb-strip {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}
.tnc-thumb {
  width: 75px; height: 75px;
  background: var(--concrete);
  border-radius: var(--r-2);
  border: 2px solid transparent;
  display: flex;
  align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  cursor: pointer;
  text-align: center;
  padding: .25rem;
  overflow: hidden;
  transition: border-color .15s;
}
.tnc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tnc-thumb.is-active { border-color: var(--saffron); }
.tnc-thumb:hover { border-color: rgba(232,130,12,.4); }

/* Product info column */
.tnc-prod-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.tnc-prod-pill-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.tnc-prod-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-1);
  border: 1px solid transparent;
}
.tnc-prod-pill--cat  { background: rgba(28,58,107,.35); color: #8BB8FF; border-color: rgba(28,58,107,.5); }
.tnc-prod-pill--drop { background: rgba(196,30,58,.2);  color: #F88;   border-color: rgba(196,30,58,.3); }
.tnc-prod-pill--new  { background: rgba(13,158,138,.2); color: #5DD;   border-color: rgba(13,158,138,.3); }

.tnc-prod-h1 {
  font-family: var(--font-impact);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: .92;
  letter-spacing: .03em;
  color: var(--white);
  margin: 0;
}
.tnc-prod-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
  padding: .75rem 1rem;
  border-left: 3px solid var(--saffron);
  background: rgba(232,130,12,.06);
}
.tnc-prod-rating-row {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.tnc-rating-txt {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.tnc-rating-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--saffron);
  text-decoration: none;
}
.tnc-rating-link:hover { text-decoration: underline; }

.tnc-prod-price-row {
  display: flex;
  align-items: baseline;
  gap: .85rem;
}
.tnc-prod-price-now,
.tnc-prod-price-now .price,
.tnc-prod-price-now .woocommerce-Price-amount {
  font-family: var(--font-impact);
  font-size: 2.4rem !important;
  letter-spacing: .04em;
  color: var(--saffron);
  line-height: 1;
}
.tnc-prod-price-now del { color: var(--muted); font-size: 1.1rem; margin-right: .35rem; }

.tnc-stock-warn {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--saffron);
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.tnc-stock-warn::before {
  content: '●';
  color: var(--saffron);
  font-size: 8px;
  animation: tnc-pulse 1.5s infinite;
}

/* Trust strip */
.tnc-trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
  padding: .85rem;
  background: var(--concrete);
  border-radius: var(--r-2);
  border: 1px solid rgba(255,255,255,.06);
}
@media (min-width: 500px) { .tnc-trust-strip { grid-template-columns: repeat(4, 1fr); } }
.tnc-trust-item { text-align: center; }
.tnc-trust-icon { font-size: 1.2rem; display: block; margin-bottom: .25rem; }
.tnc-trust-txt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--chalk);
  line-height: 1.3;
}

/* Delivery row */
.tnc-delivery-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  background: rgba(13,158,138,.08);
  border: 1px solid rgba(13,158,138,.25);
  border-radius: var(--r-2);
}
.tnc-delivery-icon { font-size: 1.15rem; }
.tnc-delivery-txt {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
}
.tnc-delivery-txt strong { color: var(--teal); }

/* Design Story section */
.tnc-story-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.tnc-story-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 800px) {
  .tnc-story-inner { grid-template-columns: 1fr 2fr; gap: 3rem; }
}
.tnc-story-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: .5rem;
}
.tnc-story-h2 {
  font-family: var(--font-impact);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: .04em;
  color: var(--white);
  line-height: .92;
}
.tnc-story-body {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
}
.tnc-story-body p { margin-bottom: .85rem; max-width: none; }
.tnc-story-body strong { color: var(--white); }
.tnc-story-quote {
  border-left: 3px solid var(--saffron);
  padding: 1rem 1.5rem;
  background: rgba(232,130,12,.06);
  margin: 1.25rem 0;
  font-family: var(--font-impact);
  font-size: 1.4rem;
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1.1;
}

/* Specs grid */
.tnc-specs-section {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.tnc-sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.tnc-sec-h2 {
  font-family: var(--font-impact);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: .04em;
  color: var(--white);
}
.tnc-sec-link {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--saffron);
  text-decoration: none;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tnc-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 700px) { .tnc-specs-grid { grid-template-columns: repeat(4, 1fr); } }
.tnc-spec-card {
  background: var(--concrete);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-3);
  padding: 1.1rem;
}
.tnc-spec-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.tnc-spec-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem;
}
.tnc-spec-val {
  font-family: var(--font-impact);
  font-size: 1.05rem;
  letter-spacing: .04em;
  color: var(--white);
}

/* Reviews avg block */
.tnc-reviews-section {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.tnc-review-avg {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--concrete);
  border-radius: var(--r-3);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,.06);
}
.tnc-avg-num {
  font-family: var(--font-impact);
  font-size: 3rem;
  color: var(--saffron);
  line-height: 1;
}
.tnc-avg-stars { display: flex; flex-direction: column; gap: .25rem; }
.tnc-avg-stars .tnc-stars { font-size: 1.1rem; }
.tnc-avg-from {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .06em;
}

/* Related products grid */
.tnc-related-section {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.tnc-related-section .products {
  grid-template-columns: repeat(2, 1fr) !important;
}
@media (min-width: 700px) {
  .tnc-related-section .products { grid-template-columns: repeat(4, 1fr) !important; }
}

/* ═══════════════════════════════════════════════════════════════
   33. MOBILE-FIRST OVERRIDES (≤ 720px)
   90% of TNC Shop traffic is mobile — these rules are not afterthoughts.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {

  /* Header: tighten + ensure full action row stays one line */
  :root { --header-h: 60px; }
  .tnc-header-bar { gap: .5rem; }
  .tnc-logo { font-size: 1rem; letter-spacing: .04em; }
  .tnc-icon-btn { width: 40px; height: 40px; }

  /* Hero: smaller padding, bigger ghost text relative to viewport */
  .tnc-cat-hero { padding: 2.5rem 0 2rem; }
  .tnc-cat-hero-ghost {
    font-size: clamp(7rem, 38vw, 14rem);
    right: -.5rem; top: -.5rem;
    color: rgba(255,255,255,.04);
  }
  .tnc-cat-hero-title { font-size: clamp(3rem, 13vw, 5rem); line-height: .88; }
  .tnc-cat-hero-desc { font-size: 1rem; line-height: 1.5; }
  .tnc-cat-hero-mock {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .tnc-cat-hero-mock-img { height: 180px; font-size: 1.1rem; }

  /* Filter bar: HIDE the 4-select bar on mobile, show a single button */
  .tnc-filter-bar { padding: .6rem 0; }
  .tnc-filter-inner { gap: .5rem; justify-content: space-between; }
  .tnc-filter-form { display: none; }
  .tnc-filter-label { display: none; }
  .tnc-filter-left::before {
    content: "≡ Filter & Sort";
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--saffron);
    background: rgba(232,130,12,.12);
    border: 1px solid rgba(232,130,12,.35);
    border-radius: var(--r-2);
    padding: .55rem 1rem;
    min-height: 44px;
    cursor: pointer;
  }
  .tnc-filter-left { cursor: pointer; }
  .tnc-view-toggle { display: none; }
  .tnc-filter-count { font-size: 10px; }

  /* Product grid: 2 cols, tighter gap, smaller card */
  .tnc-shop-results { padding: 1.5rem 0; }
  .tnc-shop-results .products,
  .tnc-shop-results ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: .65rem;
  }
  .tnc-prod-card-img { height: 200px; padding: 1rem; font-size: .85rem; line-height: 1.1; }
  .tnc-prod-info { padding: .75rem; }
  .tnc-prod-cat { font-size: 8px; }
  .tnc-prod-name { font-size: .9rem; }
  .tnc-prod-rating { gap: .25rem; }
  .tnc-stars { font-size: .75rem; }
  .tnc-rating-count { font-size: 9px; }
  .tnc-prod-line { font-size: .72rem; margin-bottom: .5rem; }
  .tnc-prod-bottom { flex-wrap: wrap; gap: .35rem; }
  .tnc-prod-price { font-size: .8rem; }
  .tnc-prod-atc, .tnc-prod-info .button {
    font-size: .72rem;
    padding: .4rem .65rem;
    width: 100%;
    min-height: 36px;
    text-align: center;
  }
  .tnc-prod-bottom .tnc-prod-price { width: 100%; }

  /* Hide wishlist heart on mobile cards to free space — user can wishlist from product page */
  .tnc-wishlist-btn { width: 32px; height: 32px; font-size: .8rem; }
  .tnc-prod-badge { font-size: 8px; padding: 2px 6px; }

  /* Category SEO block: stack */
  .tnc-cat-seo { padding: 2rem 0; }
  .tnc-cat-seo-inner { gap: 1.5rem; }
  .tnc-cat-seo-h2 { font-size: 1.5rem; }

  /* Product page: gallery height down */
  .tnc-prod-page { padding: 1.25rem 0 1.5rem; gap: 1.5rem; }
  .tnc-prod-main-img { height: 360px; border-radius: var(--r-3); }
  .tnc-tee-design { font-size: clamp(1.3rem, 6.5vw, 2rem); padding: 1rem; }
  .tnc-tee-small { font-size: .78rem; margin-top: .5rem; }
  .tnc-zoom-badge { bottom: 8px; right: 8px; font-size: 9px; padding: 3px 6px; }

  /* Thumbnails: smaller, horizontal scroll if needed */
  .tnc-thumb-strip { gap: .5rem; overflow-x: auto; padding-bottom: 4px; }
  .tnc-thumb {
    width: 56px; height: 56px;
    min-width: 56px;
    font-size: 8.5px;
    padding: .2rem;
  }

  /* Product info */
  .tnc-prod-info-col { gap: .85rem; }
  .tnc-prod-pill { font-size: 9px; padding: 3px 8px; }
  .tnc-prod-h1 { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .tnc-prod-tagline { font-size: .9rem; padding: .65rem .85rem; }
  .tnc-prod-rating-row { gap: .5rem; font-size: .8rem; }
  .tnc-prod-price-now,
  .tnc-prod-price-now .price,
  .tnc-prod-price-now .woocommerce-Price-amount {
    font-size: 2rem !important;
  }
  .tnc-stock-warn { font-size: 10px; }

  /* WC variations form: full width */
  .variations_form .variations select { font-size: 14px; min-height: 44px; }

  /* Add to cart: full-width, big touch target */
  .single_add_to_cart_button {
    font-size: 1rem !important;
    padding: 1rem !important;
    min-height: 56px !important;
    letter-spacing: .04em;
  }

  /* Trust strip: 4 columns even on mobile but tinier text */
  .tnc-trust-strip { grid-template-columns: repeat(4, 1fr); gap: .35rem; padding: .65rem; }
  .tnc-trust-icon { font-size: 1rem; }
  .tnc-trust-txt { font-size: 8.5px; letter-spacing: .04em; }

  /* Delivery row */
  .tnc-delivery-row { padding: .65rem .85rem; }
  .tnc-delivery-txt { font-size: 12px; }

  /* Story section: stack labels above body */
  .tnc-story-section { padding: 1.75rem 0; }
  .tnc-story-h2 { font-size: 1.8rem; }
  .tnc-story-quote { font-size: 1.1rem; padding: .75rem 1rem; }
  .tnc-story-body { font-size: .92rem; }

  /* Specs: 2 cols on mobile */
  .tnc-specs-section { padding: 1.75rem 0; }
  .tnc-specs-grid { grid-template-columns: repeat(2, 1fr); gap: .65rem; }
  .tnc-spec-card { padding: .85rem; }
  .tnc-spec-icon { font-size: 1.2rem; margin-bottom: .35rem; }
  .tnc-spec-val { font-size: .9rem; }

  /* Reviews: single col on mobile */
  .tnc-reviews-section { padding: 1.75rem 0; }
  .tnc-review-avg { padding: 1rem; gap: 1rem; }
  .tnc-avg-num { font-size: 2.4rem; }
  .tnc-sec-h2 { font-size: 1.5rem; }

  /* Related products: 2 cols on mobile */
  .tnc-related-section .products { grid-template-columns: repeat(2, 1fr) !important; }
  .tnc-related-section { padding: 1.75rem 0; }

  /* Footer: extra bottom space for tab bar */
  .tnc-footer { padding-bottom: calc(80px + var(--s-3)); }
  .tnc-footer-grid { gap: 1.5rem; }
  .tnc-footer-meta { font-size: 10px; }

  /* Tab bar visible always on mobile */
  body.tnc-has-tabbar { padding-bottom: 0; }
  .tnc-tabbar { display: flex; }

  /* Sticky ATC: always visible on mobile product pages */
  .tnc-single-product .tnc-sticky-atc {
    transform: translateY(0);
    bottom: 60px; /* clear tab bar */
  }

  /* Make hero (homepage) tighter on mobile */
  .tnc-hero { padding: 2rem 0 3rem; min-height: auto; }
  .tnc-hero-headline { margin-bottom: 1rem; }
  .tnc-hero-tagline { font-size: 1rem; margin: 1rem 0 1.5rem; }
  .tnc-hero-actions .tnc-btn { width: 100%; }
  .tnc-hero-meta { gap: 1rem; margin-top: 2rem; padding-top: 1rem; }
  .tnc-hero-meta-item .val { font-size: 1rem; }
  .tnc-notify-card { padding: 1.25rem; }

  /* Section heads compress */
  .tnc-section { padding: 2rem 0; }
  .tnc-section-head { margin-bottom: 1.25rem; }

  /* Email strip */
  .tnc-email-strip { padding: 2.5rem 0; }
  .tnc-email-strip h2 { font-size: clamp(2rem, 8vw, 3rem); }
}

/* Extra tight phones */
@media (max-width: 380px) {
  .tnc-wrap { padding: 0 .85rem; }
  .tnc-cat-hero-title { font-size: 2.6rem; }
  .tnc-prod-h1 { font-size: 1.5rem; }
  .tnc-prod-main-img { height: 320px; }
  .tnc-trust-txt { font-size: 8px; }
}

/* ═══════════════════════════════════════════════════════════════
   34. MOBILE FILTER BOTTOM SHEET
   Triggered on mobile when user taps "≡ Filter & Sort" on the filter bar.
   ═══════════════════════════════════════════════════════════════ */
.tnc-filter-sheet {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,.08);
  border-radius: 16px 16px 0 0;
  z-index: 260;
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  max-height: 85vh;
  overflow-y: auto;
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
}
.tnc-filter-sheet.is-open { transform: translateY(0); }
.tnc-filter-sheet-grab {
  width: 40px; height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
  margin: 0 auto .85rem;
}
.tnc-filter-sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.tnc-filter-sheet-head h3 {
  font-family: var(--font-impact);
  font-size: 1.4rem;
  letter-spacing: .04em;
  color: var(--white);
  margin: 0;
}
.tnc-filter-sheet-block {
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: .85rem 0;
}
.tnc-filter-sheet-block:last-of-type { border-bottom: 0; }
.tnc-filter-sheet-block h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .65rem;
}
.tnc-filter-sheet-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.tnc-filter-chip {
  background: var(--concrete);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  padding: .5rem .85rem;
  border-radius: var(--r-2);
  min-height: 40px;
  cursor: pointer;
}
.tnc-filter-chip.is-active {
  background: var(--saffron);
  color: var(--ink);
  border-color: var(--saffron);
}
.tnc-filter-sheet-actions {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: .65rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  position: sticky;
  bottom: 0;
  background: var(--charcoal);
}

/* ═══════════════════════════════════════════════════════════════
   35. MOBILE STICKY ATC POLISH (product page)
   Wireframe shows it pinned bottom. On mobile, full-bleed.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  .tnc-sticky-atc {
    border-radius: 0;
    padding: .65rem .85rem;
    box-shadow: 0 -8px 24px rgba(0,0,0,.4);
  }
  .tnc-sticky-atc-thumb { width: 40px; height: 40px; }
  .tnc-sticky-atc-title { font-size: .85rem; }
  .tnc-sticky-atc-price { font-size: 11px; }
  .tnc-sticky-atc .tnc-btn { min-height: 44px; font-size: .85rem; padding: .5rem .85rem; white-space: nowrap; }
}

/* Mobile cart drawer: bottom sheet style (already set up in section 16 — just emphasise here) */
@media (max-width: 600px) {
  .tnc-cart-drawer { height: 88vh; }
  .tnc-cart-drawer-foot { padding-bottom: calc(1.25rem + env(safe-area-inset-bottom)); }
}

