/* ============================================================================
   Tapquill — design system (Archétype G : SPEC-TECH, sombre + accent néon).
   Polices : Unbounded (display) + Albert Sans (body). Chiffres en monospace.
   Préfixe de classes : .tpq-
   ============================================================================ */
:root {
  --bg: #07090d;
  --bg-2: #0b0e14;
  --surface: #11151d;
  --surface-2: #161b25;
  --line: #232a37;
  --line-soft: #1a212c;
  --ink: #f4f7fb;
  --ink-2: #c4ccd9;
  --muted: #8a93a3;
  --accent: #2e7dff;
  --accent-bright: #4d93ff;
  --accent-dim: rgba(46, 125, 255, .14);
  --accent-glow: rgba(46, 125, 255, .45);
  --danger: #ff5b5b;
  --ok: #36d399;
  --gold: #ffc857;
  --radius: 6px;
  --radius-lg: 12px;
  --wrap: 1240px;
  --mono: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", monospace;
  --disp: "Unbounded", system-ui, sans-serif;
  --body: "Albert Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg); color: var(--ink); font-family: var(--body);
  font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.tpq-noscroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font-family: inherit; }
ul { list-style: none; }

.tpq-wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.tpq-mono { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.tpq-accent { color: var(--accent-bright); }
h1, h2, h3, h4 { font-family: var(--disp); font-weight: 800; line-height: 1.05; letter-spacing: -.01em; }

/* dotted tech grid background utility */
.tpq-grid-bg {
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* ── Boutons ──────────────────────────────────────────────────────────────── */
.tpq-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: var(--radius); font-weight: 700;
  font-size: .92rem; letter-spacing: .01em; transition: .18s ease; border: 1px solid transparent;
  white-space: nowrap;
}
.tpq-btn-accent { background: var(--accent); color: #fff; box-shadow: 0 0 0 1px rgba(46,125,255,.4), 0 8px 24px -8px var(--accent-glow); }
.tpq-btn-accent:hover { background: var(--accent-bright); box-shadow: 0 0 0 1px var(--accent-bright), 0 0 22px -2px var(--accent-glow); transform: translateY(-1px); }
.tpq-btn-line { border-color: var(--line); color: var(--ink); background: var(--surface); }
.tpq-btn-line:hover { border-color: var(--accent); color: var(--accent-bright); }
.tpq-btn-ghost { color: var(--ink-2); border-color: var(--line-soft); }
.tpq-btn-ghost:hover { color: var(--ink); border-color: var(--line); }
.tpq-btn-block { width: 100%; }
.tpq-btn-lg { padding: 16px 30px; font-size: 1rem; }

/* ── Annonce + header ─────────────────────────────────────────────────────── */
.tpq-announce {
  background: linear-gradient(90deg, var(--accent) 0%, #1c5fd6 100%);
  color: #fff; font-family: var(--mono); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; text-align: center; padding: 7px 0;
}
.tpq-header { position: sticky; top: 0; z-index: 60; background: rgba(7,9,13,.82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-soft); transition: .25s; }
.tpq-header.scrolled { background: rgba(7,9,13,.96); border-bottom-color: var(--line); }
.tpq-hdr-in { display: flex; align-items: center; gap: 18px; height: 64px; }
.tpq-logo img { height: 30px; width: auto; filter: drop-shadow(0 0 8px rgba(77,147,255,.25)); }
.tpq-nav { display: flex; gap: 4px; margin-left: 8px; flex: 1; }
.tpq-nav-link {
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-2); padding: 8px 12px; border-radius: var(--radius); position: relative; transition: .15s;
}
.tpq-nav-link:hover { color: var(--ink); background: var(--surface); }
.tpq-nav-link::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 1.5px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: .2s; }
.tpq-nav-link:hover::after { transform: scaleX(1); }
.tpq-hdr-actions { display: flex; align-items: center; gap: 8px; }
.tpq-icbtn { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius); color: var(--ink-2); transition: .15s; position: relative; }
.tpq-icbtn:hover { color: var(--ink); background: var(--surface); }
.tpq-search { display: flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 0 12px; height: 40px; width: 220px; transition: .18s; }
.tpq-search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }
.tpq-search-ic { color: var(--muted); display: flex; }
.tpq-search input { border: none; background: none; color: var(--ink); width: 100%; outline: none; font-size: .85rem; }
.tpq-search-toggle { display: none; }
.tpq-cartbtn .tpq-cart-badge {
  position: absolute; top: 2px; right: 2px; background: var(--accent); color: #fff;
  font-family: var(--mono); font-size: .62rem; font-weight: 700; min-width: 17px; height: 17px;
  border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 0 4px;
  box-shadow: 0 0 0 2px var(--bg);
}
.tpq-burger { display: none; }
.tpq-search-mobile { display: none; max-height: 0; overflow: hidden; transition: .25s; border-top: 1px solid var(--line-soft); }
.tpq-search-mobile.open { max-height: 70px; }
.tpq-search-mobile form { display: flex; align-items: center; gap: 8px; padding: 12px 0; }
.tpq-search-mobile input { flex: 1; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 10px 12px; color: var(--ink); outline: none; }

/* ── Header "double barre" : utility readout + nav onglets ────────────────── */
.tpq-topbar { background: var(--bg-2); border-bottom: 1px solid var(--line-soft); }
.tpq-topbar-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 34px; }
.tpq-topbar-spec { display: inline-flex; align-items: center; gap: 9px; color: var(--ink-2); font-size: .68rem; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.tpq-livedot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px var(--ok); flex-shrink: 0; }
@media (prefers-reduced-motion: no-preference) { .tpq-livedot { animation: tpq-pulse 2.4s ease-in-out infinite; } }
@keyframes tpq-pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.tpq-topbar-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.tpq-toplink { color: var(--muted); font-size: .68rem; transition: .15s; }
.tpq-toplink:hover { color: var(--accent-bright); }
.tpq-topbar-right .tpq-lang { padding: 2px; }
.tpq-topbar-right .tpq-lang a { padding: 3px 8px; font-size: .66rem; }

.tpq-header-double .tpq-hdr-in { gap: 14px; height: 60px; }
.tpq-nav-tabs { flex: 1; display: flex; justify-content: center; gap: 0; margin: 0; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--surface); padding: 3px; }
.tpq-tab {
  position: relative; display: inline-flex; align-items: center; gap: 7px;
  font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-2); padding: 8px 14px; border-radius: 4px; transition: .15s; white-space: nowrap;
}
.tpq-tab + .tpq-tab::before, .tpq-tab-all::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 16px; background: var(--line-soft); }
.tpq-tab-ix { font-family: var(--mono); font-size: .64rem; color: var(--accent-bright); opacity: .8; }
.tpq-tab:hover { color: var(--ink); background: var(--bg-2); }
.tpq-tab:hover .tpq-tab-ix { opacity: 1; }
.tpq-tab-all { color: var(--accent-bright); }

/* ── Overlays / menu mobile / drawer ──────────────────────────────────────── */
.tpq-ov { position: fixed; inset: 0; background: rgba(3,5,9,.7); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: .25s; z-index: 70; }
.tpq-ov.open { opacity: 1; pointer-events: auto; }
.tpq-mmenu { position: fixed; top: 0; left: 0; bottom: 0; width: min(86vw, 360px); background: var(--bg-2); border-right: 1px solid var(--line); z-index: 80; transform: translateX(-100%); transition: .28s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; }
.tpq-mmenu.open { transform: none; }
.tpq-mmenu-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line-soft); }
.tpq-mmenu-nav { display: flex; flex-direction: column; padding: 12px 8px; gap: 2px; }
.tpq-mmenu-nav a { font-family: var(--disp); font-weight: 700; font-size: 1.1rem; padding: 14px 14px; border-radius: var(--radius); transition: .15s; }
.tpq-mmenu-nav a:hover { background: var(--surface); color: var(--accent-bright); }
.tpq-mmenu-foot { margin-top: auto; padding: 20px; border-top: 1px solid var(--line-soft); }

.tpq-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(92vw, 420px); background: var(--bg-2); border-left: 1px solid var(--line); z-index: 80; transform: translateX(100%); transition: .3s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; }
.tpq-drawer.open { transform: none; }
.tpq-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line-soft); }
.tpq-shipbar { padding: 14px 20px; border-bottom: 1px solid var(--line-soft); background: var(--surface); }
.tpq-shiptrack { height: 6px; background: var(--line); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.tpq-shipfill { height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-bright)); transition: width .4s ease; box-shadow: 0 0 10px var(--accent-glow); }
.tpq-shiplabel { display: inline-flex; align-items: center; gap: 6px; }
.tpq-shiplabel svg { width: 14px; height: 14px; color: var(--ok); flex-shrink: 0; }
.tpq-drawer-body { flex: 1; overflow-y: auto; padding: 8px 20px; }
.tpq-cart-empty { color: var(--muted); text-align: center; padding: 60px 0; font-family: var(--mono); font-size: .8rem; }
.tpq-cart-line { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); align-items: start; }
.tpq-cart-line img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.tpq-cart-name { font-weight: 600; font-size: .9rem; line-height: 1.3; }
.tpq-cart-var { display: block; font-family: var(--mono); font-size: .68rem; color: var(--muted); margin-top: 3px; }
.tpq-cart-qty { display: flex; align-items: center; gap: 6px; margin-top: 10px; }
.tpq-cart-qty button { width: 26px; height: 26px; border: 1px solid var(--line); border-radius: 4px; color: var(--ink-2); display: inline-flex; align-items: center; justify-content: center; transition: .15s; }
.tpq-cart-qty button:hover { border-color: var(--accent); color: var(--accent-bright); }
.tpq-cart-qty .tpq-rm { margin-left: 4px; border-color: transparent; }
.tpq-cart-qty .tpq-rm:hover { color: var(--danger); border-color: var(--danger); }
.tpq-cart-qty span { font-family: var(--mono); min-width: 22px; text-align: center; font-size: .85rem; }
.tpq-cart-price { font-family: var(--mono); font-weight: 700; font-size: .9rem; }
.tpq-drawer-foot { padding: 18px 20px; border-top: 1px solid var(--line); background: var(--surface); }
.tpq-drawer-sub { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.tpq-drawer-sub strong { font-family: var(--mono); font-size: 1.3rem; }
.tpq-drawer-foot .tpq-btn { margin-bottom: 8px; }
.tpq-drawer-reassure { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--muted); font-size: .78rem; margin-top: 6px; }
.tpq-drawer-reassure svg { width: 16px; height: 16px; }

/* ── Toast ────────────────────────────────────────────────────────────────── */
.tpq-toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--surface-2); border: 1px solid var(--accent); color: var(--ink); padding: 12px 22px; border-radius: var(--radius); z-index: 200; opacity: 0; pointer-events: none; transition: .25s; font-weight: 600; font-size: .9rem; box-shadow: 0 10px 40px -10px var(--accent-glow); }
.tpq-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Modal newsletter ─────────────────────────────────────────────────────── */
.tpq-modal { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; background: rgba(3,5,9,.78); backdrop-filter: blur(5px); padding: 24px; }
.tpq-modal.open { display: flex; }
.tpq-modal-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-top: 2px solid var(--accent); border-radius: var(--radius-lg); padding: 40px 34px; max-width: 440px; width: 100%; text-align: center; }
.tpq-modal-card h3 { font-size: 1.6rem; margin: 14px 0 10px; }
.tpq-modal-card p { color: var(--ink-2); margin-bottom: 20px; }
.tpq-modal-x { position: absolute; top: 12px; right: 12px; }

/* ── Newsletter form ──────────────────────────────────────────────────────── */
.tpq-news-form { display: flex; gap: 8px; }
.tpq-news-form input { flex: 1; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 14px; color: var(--ink); outline: none; min-width: 0; }
.tpq-news-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }
.tpq-news-ok { color: var(--ok); font-size: .82rem; margin-top: 10px; font-family: var(--mono); display: inline-flex; align-items: center; gap: 7px; }
.tpq-news-ok svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Section heading ──────────────────────────────────────────────────────── */
.tpq-sec { padding: 84px 0; }
.tpq-sec-head { margin-bottom: 44px; }
.tpq-sec-head.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.tpq-sec-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.9rem); margin: 12px 0 10px; }
.tpq-sec-head p { color: var(--ink-2); font-size: 1.02rem; max-width: 640px; }
.tpq-sec-head.center p { margin-left: auto; margin-right: auto; }
.tpq-kicker { display: inline-flex; align-items: center; gap: 8px; }
.tpq-kicker::before { content: ""; width: 24px; height: 1.5px; background: var(--accent); }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.tpq-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.tpq-hero-grid { position: absolute; inset: 0; background-image: radial-gradient(rgba(77,147,255,.07) 1px, transparent 1px); background-size: 26px 26px; mask-image: linear-gradient(180deg, #000, transparent 85%); }
.tpq-hero-glow { position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw; background: radial-gradient(circle, var(--accent-glow), transparent 60%); opacity: .35; filter: blur(40px); pointer-events: none; }
.tpq-hero-in { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 70px 0 60px; }
.tpq-hero-copy h1 { font-size: clamp(2.3rem, 5vw, 4rem); margin: 16px 0 18px; }
.tpq-hero-copy h1 em { color: var(--accent-bright); font-style: normal; }
.tpq-hero-copy p { color: var(--ink-2); font-size: 1.1rem; max-width: 520px; margin-bottom: 28px; }
.tpq-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.tpq-hero-media { position: relative; }
.tpq-hero-media img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line); aspect-ratio: 4/3.4; object-fit: cover; box-shadow: 0 40px 80px -30px rgba(0,0,0,.8); }
.tpq-hero-chip { position: absolute; background: rgba(11,14,20,.85); backdrop-filter: blur(8px); border: 1px solid var(--line); border-radius: var(--radius); padding: 10px 14px; display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 30px -10px rgba(0,0,0,.6); }
.tpq-hero-chip svg { width: 22px; height: 22px; color: var(--accent-bright); }
.tpq-hero-chip b { font-family: var(--mono); font-size: .95rem; }
.tpq-hero-chip span { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; display: block; }
.tpq-hero-chip.c1 { top: 18px; left: -14px; }
.tpq-hero-chip.c2 { bottom: 22px; right: -14px; }

/* hero stat strip */
.tpq-stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-soft); }
.tpq-stat-cell { padding: 22px 24px; border-right: 1px solid var(--line-soft); }
.tpq-stat-cell:last-child { border-right: none; }
.tpq-stat-cell .v { font-family: var(--mono); font-size: 1.7rem; font-weight: 700; color: var(--ink); }
.tpq-stat-cell .v .u { color: var(--accent-bright); }
.tpq-stat-cell .l { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-top: 4px; }

/* ── Cartes produit (sombres, liseré accent, specs visibles) ───────────────── */
.tpq-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tpq-card { position: relative; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; transition: .2s ease; display: flex; flex-direction: column; }
.tpq-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--accent); transform: scaleY(0); transform-origin: top; transition: .25s; z-index: 2; }
.tpq-card:hover { border-color: var(--line); transform: translateY(-3px); box-shadow: 0 24px 50px -28px rgba(0,0,0,.9); }
.tpq-card:hover::before { transform: scaleY(1); }
.tpq-card-media { position: relative; aspect-ratio: 1; background: var(--bg-2); overflow: hidden; }
.tpq-card-media img { width: 100%; height: 100%; object-fit: cover; transition: .4s ease; }
.tpq-card-media img.alt { position: absolute; inset: 0; opacity: 0; }
.tpq-card:hover .tpq-card-media img.main { opacity: 0; }
.tpq-card:hover .tpq-card-media img.alt { opacity: 1; }
.tpq-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px; z-index: 3; }
.tpq-badge { display: inline-flex; align-items: center; gap: 5px; font-family: var(--mono); font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 8px; border-radius: 4px; background: var(--surface-2); border: 1px solid var(--line); color: var(--ink-2); }
.tpq-badge.sale { background: rgba(255,91,91,.14); border-color: rgba(255,91,91,.4); color: #ff8585; }
.tpq-badge.best { background: var(--accent-dim); border-color: rgba(46,125,255,.5); color: var(--accent-bright); }
.tpq-badge.new { background: rgba(54,211,153,.12); border-color: rgba(54,211,153,.4); color: var(--ok); }
.tpq-badge.pro { background: rgba(255,200,87,.12); border-color: rgba(255,200,87,.4); color: var(--gold); }
.tpq-quickadd { position: absolute; bottom: 10px; right: 10px; z-index: 3; width: 40px; height: 40px; border-radius: var(--radius); background: rgba(11,14,20,.9); border: 1px solid var(--line); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(6px); transition: .2s; }
.tpq-card:hover .tpq-quickadd { opacity: 1; transform: none; }
.tpq-quickadd:hover { background: var(--accent); border-color: var(--accent); }
.tpq-quickadd.added { background: var(--ok); border-color: var(--ok); color: #06281c; }
.tpq-card-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.tpq-card-cat { font-family: var(--mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-bright); }
.tpq-card-name { font-weight: 700; font-size: .98rem; margin: 7px 0; line-height: 1.25; font-family: var(--body); }
.tpq-card-name a:hover { color: var(--accent-bright); }
.tpq-card-spec { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.tpq-chip { font-family: var(--mono); font-size: .6rem; letter-spacing: .04em; color: var(--ink-2); background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 4px; padding: 3px 7px; }
.tpq-rating { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--muted); margin-bottom: 12px; }
.tpq-stars { --p: 100%; display: inline-block; font-size: .85rem; line-height: 1; background: linear-gradient(90deg, var(--gold) var(--p), #3a4150 var(--p)); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: 1px; }
.tpq-card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tpq-price { display: flex; align-items: baseline; gap: 8px; }
.tpq-price .now { font-family: var(--mono); font-weight: 700; font-size: 1.15rem; }
.tpq-price .was { font-family: var(--mono); font-size: .82rem; color: var(--muted); text-decoration: line-through; }
.tpq-card .tpq-addbtn { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; padding: 9px 12px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); transition: .15s; }
.tpq-card .tpq-addbtn:hover { border-color: var(--accent); color: var(--accent-bright); background: var(--accent-dim); }
.tpq-card .tpq-addbtn.added { border-color: var(--ok); color: var(--ok); }
.tpq-card .tpq-addbtn { display: inline-flex; align-items: center; gap: 6px; }
.tpq-card .tpq-addbtn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Stat bars (barres animées) ───────────────────────────────────────────── */
.tpq-bars { display: flex; flex-direction: column; gap: 14px; }
.tpq-bar-row .tpq-bar-top { display: flex; justify-content: space-between; font-size: .82rem; margin-bottom: 6px; }
.tpq-bar-row .tpq-bar-top .lab { color: var(--ink-2); }
.tpq-bar-row .tpq-bar-top .val { font-family: var(--mono); color: var(--accent-bright); font-weight: 700; }
.tpq-bar-track { height: 7px; background: var(--line); border-radius: 4px; overflow: hidden; }
.tpq-bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-bright)); border-radius: 4px; transition: width 1.1s cubic-bezier(.2,.7,.2,1); box-shadow: 0 0 8px var(--accent-glow); }

/* ── How it works (étapes numérotées) ─────────────────────────────────────── */
.tpq-how { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
.tpq-how-step { padding: 30px 26px; border-right: 1px solid var(--line-soft); position: relative; background: var(--surface); transition: .2s; }
.tpq-how-step:last-child { border-right: none; }
.tpq-how-step:hover { background: var(--surface-2); }
.tpq-how-num { font-family: var(--mono); font-size: .8rem; color: var(--accent-bright); }
.tpq-how-ic { width: 46px; height: 46px; border-radius: var(--radius); background: var(--accent-dim); border: 1px solid rgba(46,125,255,.3); display: flex; align-items: center; justify-content: center; color: var(--accent-bright); margin: 16px 0 14px; }
.tpq-how-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.tpq-how-step p { color: var(--muted); font-size: .9rem; }

/* ── Protocole : timeline verticale numérotée (variante de section) ────────── */
.tpq-proto { max-width: 820px; margin: 0 auto; }
.tpq-proto-step { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 0 0 36px; position: relative; }
.tpq-proto-step:last-child { padding-bottom: 0; }
.tpq-proto-step::before { content: ""; position: absolute; left: 27px; top: 60px; bottom: 0; width: 1.5px; background: linear-gradient(180deg, var(--line), transparent); }
.tpq-proto-step:last-child::before { display: none; }
.tpq-proto-node { width: 56px; height: 56px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--accent-bright); position: relative; z-index: 1; box-shadow: 0 0 0 4px var(--bg-2); }
.tpq-proto-node svg { width: 24px; height: 24px; }
.tpq-proto-body { padding-top: 5px; }
.tpq-proto-num { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; color: var(--accent-bright); }
.tpq-proto-body h3 { font-size: 1.2rem; margin: 5px 0 8px; }
.tpq-proto-body p { color: var(--muted); font-size: .92rem; max-width: 560px; }

/* ── Jauges specs : bandeau d'instruments (variante de section) ────────────── */
.tpq-gauges { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.tpq-gauge { padding: 26px 24px; border-right: 1px solid var(--line-soft); }
.tpq-gauge:last-child { border-right: none; }
.tpq-gauge-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.tpq-gauge-top .tpq-mono { font-size: .58rem; color: var(--muted); }
.tpq-gauge-ic { color: var(--accent-bright); display: flex; }
.tpq-gauge-ic svg { width: 22px; height: 22px; }
.tpq-gauge .v { font-family: var(--mono); font-size: 1.9rem; font-weight: 700; line-height: 1; }
.tpq-gauge .l { color: var(--muted); font-size: .82rem; margin-top: 6px; }
.tpq-gauge-meter { height: 4px; background: var(--line); border-radius: 3px; margin-top: 16px; overflow: hidden; }
.tpq-gauge-meter .tpq-bar-fill { box-shadow: none; }

/* ── Matrice comparative ──────────────────────────────────────────────────── */
.tpq-matrix-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.tpq-matrix { width: 100%; border-collapse: collapse; min-width: 720px; }
.tpq-matrix th, .tpq-matrix td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: .9rem; }
.tpq-matrix thead th { font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); background: var(--surface); }
.tpq-matrix tbody tr { transition: .15s; }
.tpq-matrix tbody tr:hover { background: var(--surface); }
.tpq-matrix td:first-child { font-weight: 700; }
.tpq-matrix .mono { font-family: var(--mono); color: var(--accent-bright); }
.tpq-matrix .pill { font-family: var(--mono); font-size: .68rem; padding: 3px 8px; border-radius: 4px; background: var(--accent-dim); color: var(--accent-bright); }

/* ── Catégories ───────────────────────────────────────────────────────────── */
.tpq-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tpq-cat { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10; border: 1px solid var(--line-soft); }
.tpq-cat img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.tpq-cat:hover img { transform: scale(1.06); }
.tpq-cat-ov { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,9,13,.1), rgba(7,9,13,.92)); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; }
.tpq-cat-ov h3 { font-size: 1.3rem; }
.tpq-cat-ov .tpq-mono { color: var(--accent-bright); margin-top: 4px; display: flex; align-items: center; gap: 6px; }
.tpq-cat.wide { grid-column: span 2; aspect-ratio: auto; }

/* ── Split éditorial / feature ────────────────────────────────────────────── */
.tpq-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
.tpq-feature.rev { direction: rtl; }
.tpq-feature.rev > * { direction: ltr; }
.tpq-feature-media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.tpq-feature-copy { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; background: var(--surface); }
.tpq-feature-copy h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 12px 0 14px; }
.tpq-feature-copy p { color: var(--ink-2); margin-bottom: 20px; }
.tpq-feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.tpq-feature-list li { display: flex; gap: 12px; align-items: flex-start; }
.tpq-feature-list svg { width: 20px; height: 20px; color: var(--accent-bright); flex-shrink: 0; margin-top: 2px; }

/* ── Specs section (chiffres clés) ────────────────────────────────────────── */
.tpq-spectiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tpq-spectile { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 28px 24px; }
.tpq-spectile .ic { color: var(--accent-bright); margin-bottom: 16px; }
.tpq-spectile .v { font-family: var(--mono); font-size: 2rem; font-weight: 700; }
.tpq-spectile .l { color: var(--muted); font-size: .86rem; margin-top: 4px; }

/* ── Reviews ──────────────────────────────────────────────────────────────── */
.tpq-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tpq-review { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 24px; }
.tpq-review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.tpq-review h4 { font-family: var(--body); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.tpq-review p { color: var(--ink-2); font-size: .92rem; }
.tpq-review-meta { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: .78rem; color: var(--muted); }
.tpq-verified { color: var(--ok); font-family: var(--mono); font-size: .66rem; display: inline-flex; align-items: center; gap: 4px; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.tpq-faq { max-width: 820px; margin: 0 auto; }
.tpq-faq-item { border: 1px solid var(--line-soft); border-radius: var(--radius); margin-bottom: 10px; background: var(--surface); overflow: hidden; }
.tpq-faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; text-align: left; font-weight: 600; font-size: 1rem; }
.tpq-faq-q svg { transition: .25s; flex-shrink: 0; color: var(--accent-bright); }
.tpq-faq-item.open .tpq-faq-q svg { transform: rotate(180deg); }
.tpq-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.tpq-faq-a-in { padding: 0 22px 20px; color: var(--ink-2); font-size: .94rem; }

/* ── Newsletter band ──────────────────────────────────────────────────────── */
.tpq-news-band { position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 56px 44px; text-align: center; background: linear-gradient(135deg, var(--surface), var(--bg-2)); overflow: hidden; }
.tpq-news-band .tpq-hero-glow { opacity: .25; }
.tpq-news-band h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 12px 0 10px; position: relative; }
.tpq-news-band p { color: var(--ink-2); margin-bottom: 24px; position: relative; }
.tpq-news-band .tpq-news-form { max-width: 460px; margin: 0 auto; position: relative; }

/* ── Trust strip ──────────────────────────────────────────────────────────── */
.tpq-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tpq-trust-card { display: flex; align-items: center; gap: 14px; padding: 20px; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: var(--surface); }
.tpq-trust-card svg { color: var(--accent-bright); flex-shrink: 0; }
.tpq-trust-card b { display: block; font-size: .95rem; }
.tpq-trust-card span { font-size: .8rem; color: var(--muted); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.tpq-footer { border-top: 1px solid var(--line); background: var(--bg-2); margin-top: 40px; padding: 64px 0 32px; }
.tpq-foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.6fr; gap: 32px; padding-bottom: 44px; border-bottom: 1px solid var(--line-soft); }
.tpq-wordmark { font-family: var(--disp); font-weight: 900; font-size: 1.5rem; letter-spacing: -.02em; color: var(--ink); }
.tpq-foot-tag { color: var(--muted); font-size: .9rem; margin: 14px 0 18px; max-width: 280px; }
.tpq-foot-social { display: flex; gap: 8px; }
.tpq-foot-social a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: var(--radius); display: inline-flex; align-items: center; justify-content: center; color: var(--ink-2); transition: .15s; }
.tpq-foot-social a:hover { border-color: var(--accent); color: var(--accent-bright); }
.tpq-foot-col h4 { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.tpq-foot-col a { display: block; color: var(--ink-2); font-size: .9rem; padding: 5px 0; transition: .15s; }
.tpq-foot-col a:hover { color: var(--accent-bright); }
.tpq-foot-news p { color: var(--muted); font-size: .85rem; margin-bottom: 14px; }
.tpq-foot-lang { margin-top: 16px; }
.tpq-lang { display: inline-flex; gap: 4px; border: 1px solid var(--line); border-radius: var(--radius); padding: 3px; }
.tpq-lang a { font-family: var(--mono); font-size: .72rem; padding: 5px 10px; border-radius: 4px; color: var(--muted); }
.tpq-lang a.active { background: var(--accent); color: #fff; }
.tpq-foot-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 28px 0; border-bottom: 1px solid var(--line-soft); }
.tpq-trust-item { display: flex; align-items: center; gap: 10px; color: var(--ink-2); font-size: .85rem; }
.tpq-trust-item svg { color: var(--accent-bright); }
.tpq-foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 24px; flex-wrap: wrap; }
.tpq-pays { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tpq-pay { display: inline-flex; border-radius: 4px; overflow: hidden; }
.tpq-foot-legal { text-align: right; font-size: .78rem; color: var(--muted); }
.tpq-foot-legal span { display: block; }
.tpq-foot-addr { color: #5a6373; margin-top: 2px; }

/* ── Footer BENTO (tuiles) ────────────────────────────────────────────────── */
.tpq-footer-bento { padding: 56px 0 30px; }
.tpq-bento {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  grid-template-areas:
    "brand brand reviews news"
    "shop  help  pay     news"
    "trust trust trust   trust";
}
.tpq-bcell { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 24px; transition: border-color .18s, transform .18s; }
.tpq-bcell:hover { border-color: var(--line); }
.tpq-bcell h4 { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.tpq-bcell-shop a, .tpq-bcell-help a { display: block; color: var(--ink-2); font-size: .9rem; padding: 5px 0; transition: .15s; }
.tpq-bcell-shop a:hover, .tpq-bcell-help a:hover { color: var(--accent-bright); }
.tpq-bcell-brand { grid-area: brand; display: flex; flex-direction: column; }
.tpq-bcell-brand .tpq-foot-tag { max-width: 360px; margin: 14px 0 auto; }
.tpq-bcell-brand .tpq-foot-social { margin-top: 18px; }
.tpq-bcell-reviews { grid-area: reviews; background: linear-gradient(160deg, var(--accent-dim), var(--surface)); border-color: rgba(46,125,255,.3); display: flex; flex-direction: column; }
.tpq-brev-score { font-family: var(--mono); font-weight: 700; font-size: 2.6rem; line-height: 1; margin: 12px 0 8px; }
.tpq-brev-score span { font-size: 1rem; color: var(--muted); }
.tpq-brev-stars { display: inline-flex; gap: 2px; color: var(--gold); }
.tpq-brev-stars svg { width: 16px; height: 16px; }
.tpq-brev-count { margin-top: auto; padding-top: 12px; display: inline-flex; align-items: center; gap: 6px; color: var(--accent-bright); font-size: .68rem; }
.tpq-brev-count svg { width: 14px; height: 14px; }
.tpq-bcell-news { grid-area: news; display: flex; flex-direction: column; background: linear-gradient(150deg, var(--surface-2), var(--bg-2)); }
.tpq-bcell-news h4 { font-family: var(--disp); font-size: 1.15rem; letter-spacing: -.01em; text-transform: none; color: var(--ink); margin: 12px 0 8px; }
.tpq-bcell-news p { color: var(--muted); font-size: .85rem; margin-bottom: auto; }
.tpq-bcell-news .tpq-news-form { flex-direction: column; margin-top: 18px; }
.tpq-bcell-news .tpq-news-form .tpq-btn { width: 100%; }
.tpq-bcell-shop { grid-area: shop; }
.tpq-bcell-help { grid-area: help; }
.tpq-bcell-pay { grid-area: pay; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.tpq-bcell-pay .tpq-pays { display: flex; flex-wrap: wrap; gap: 7px; }
.tpq-bcell-trust { grid-area: trust; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: center; }
.tpq-bcell-trust .tpq-trust-item { display: flex; align-items: center; gap: 10px; color: var(--ink-2); font-size: .85rem; }
.tpq-bcell-trust .tpq-trust-item svg { width: 22px; height: 22px; color: var(--accent-bright); flex-shrink: 0; }
.tpq-bento-legal { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; margin-top: 16px; border-top: 1px solid var(--line-soft); flex-wrap: wrap; font-size: .78rem; color: var(--muted); }
.tpq-bento-legal .tpq-foot-addr { margin: 0; }
.tpq-bento-legal .tpq-lang { margin-left: auto; }

/* ── Page intro / breadcrumb ──────────────────────────────────────────────── */
.tpq-pagehead { padding: 50px 0 34px; border-bottom: 1px solid var(--line-soft); position: relative; }
.tpq-pagehead h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 10px 0 8px; }
.tpq-pagehead p { color: var(--ink-2); }
.tpq-bcrumb { font-family: var(--mono); font-size: .72rem; color: var(--muted); }
.tpq-bcrumb a:hover { color: var(--accent-bright); }

/* ── Shop ─────────────────────────────────────────────────────────────────── */
.tpq-shop-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; flex-wrap: wrap; position: sticky; top: 64px; background: rgba(7,9,13,.92); backdrop-filter: blur(10px); z-index: 30; border-bottom: 1px solid var(--line-soft); }
.tpq-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.tpq-filter { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; padding: 9px 14px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink-2); transition: .15s; }
.tpq-filter:hover { border-color: var(--accent); color: var(--ink); }
.tpq-filter.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.tpq-sortsel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); padding: 9px 12px; font-size: .82rem; font-family: var(--mono); }
.tpq-shop-count { font-family: var(--mono); font-size: .74rem; color: var(--muted); }

/* ── PDP ──────────────────────────────────────────────────────────────────── */
.tpq-pdp { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; padding: 40px 0 20px; align-items: start; }
.tpq-gallery { position: sticky; top: 84px; }
.tpq-gallery-main { position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-2); aspect-ratio: 1; }
.tpq-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.tpq-gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.tpq-gallery-thumbs button { width: 78px; height: 78px; border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; transition: .15s; background: var(--bg-2); }
.tpq-gallery-thumbs button.active { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-dim); }
.tpq-gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.tpq-pdp-cat { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-bright); }
.tpq-pdp h1 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin: 12px 0 14px; }
.tpq-pdp-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: .88rem; color: var(--ink-2); }
.tpq-pdp-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.tpq-pdp-price .now { font-family: var(--mono); font-size: 2rem; font-weight: 700; }
.tpq-pdp-price .was { font-family: var(--mono); font-size: 1.05rem; color: var(--muted); text-decoration: line-through; }
.tpq-pdp-price .save { font-family: var(--mono); font-size: .72rem; background: rgba(255,91,91,.14); color: #ff8585; border: 1px solid rgba(255,91,91,.4); padding: 4px 8px; border-radius: 4px; }
.tpq-pdp-short { color: var(--ink-2); margin: 16px 0 22px; font-size: 1.02rem; }
.tpq-pdp-block { margin-bottom: 24px; }
.tpq-pdp-block > .tpq-mono { display: block; margin-bottom: 12px; }
.tpq-variants { display: flex; flex-wrap: wrap; gap: 8px; }
.tpq-variant { font-size: .82rem; padding: 9px 14px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink-2); transition: .15s; background: var(--surface); }
.tpq-variant:hover { border-color: var(--accent); color: var(--ink); }
.tpq-variant.active { border-color: var(--accent); background: var(--accent-dim); color: var(--ink); box-shadow: 0 0 0 1px var(--accent); }
.tpq-pdp-buy { display: flex; gap: 12px; align-items: stretch; margin: 22px 0 14px; }
.tpq-qty { display: flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.tpq-qty button { width: 44px; height: 100%; color: var(--ink-2); font-size: 1.1rem; }
.tpq-qty button:hover { color: var(--accent-bright); }
.tpq-qty span { font-family: var(--mono); min-width: 34px; text-align: center; }
.tpq-pdp-buy .tpq-btn { flex: 1; }
.tpq-stock { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-family: var(--mono); margin-bottom: 18px; }
.tpq-stock .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px var(--ok); }
.tpq-stock.low .dot { background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.tpq-stock.low { color: var(--gold); }
.tpq-pdp-reassure { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 18px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--surface); }
.tpq-pdp-reassure div { display: flex; align-items: center; gap: 9px; font-size: .82rem; color: var(--ink-2); }
.tpq-pdp-reassure svg { width: 18px; height: 18px; color: var(--accent-bright); flex-shrink: 0; }
.tpq-benefits { display: flex; flex-direction: column; gap: 10px; }
.tpq-benefits li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-2); }
.tpq-benefits svg { width: 18px; height: 18px; color: var(--accent-bright); flex-shrink: 0; margin-top: 3px; }

/* PDP datasheet + tabs */
.tpq-datasheet { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.tpq-spec-row { display: grid; grid-template-columns: 220px 1fr; border-bottom: 1px solid var(--line-soft); }
.tpq-spec-row:last-child { border-bottom: none; }
.tpq-spec-row dt { padding: 14px 18px; font-family: var(--mono); font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); background: var(--surface); }
.tpq-spec-row dd { padding: 14px 18px; font-size: .92rem; }
.tpq-bundle-box { border: 1px dashed var(--line); border-radius: var(--radius-lg); padding: 20px; background: var(--surface); margin: 20px 0; }
.tpq-bundle-box h4 { font-family: var(--body); font-size: 1rem; margin-bottom: 4px; }
.tpq-bundle-box p { color: var(--muted); font-size: .84rem; margin-bottom: 14px; }
.tpq-bundle-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.tpq-tier { border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; text-align: center; cursor: pointer; transition: .15s; }
.tpq-tier:hover, .tpq-tier.active { border-color: var(--accent); background: var(--accent-dim); }
.tpq-tier .q { font-family: var(--mono); font-weight: 700; }
.tpq-tier .d { font-size: .72rem; color: var(--ok); margin-top: 4px; }

/* PDP review distribution */
.tpq-revsum { display: grid; grid-template-columns: 180px 1fr; gap: 30px; align-items: center; margin-bottom: 30px; padding: 24px; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: var(--surface); }
.tpq-revsum .big { font-family: var(--mono); font-size: 3rem; font-weight: 700; line-height: 1; }
.tpq-revdist { display: flex; flex-direction: column; gap: 6px; }
.tpq-revdist-row { display: flex; align-items: center; gap: 10px; font-size: .78rem; }
.tpq-revdist-row .tpq-bar-track { flex: 1; }

/* sticky mobile ATC */
.tpq-sticky-atc { position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; display: none; background: rgba(11,14,20,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding: 10px 16px; gap: 12px; align-items: center; }
.tpq-sticky-atc .p { font-family: var(--mono); font-weight: 700; font-size: 1.1rem; }
.tpq-sticky-atc .tpq-btn { flex: 1; }

/* contact / about */
.tpq-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.tpq-card-plain { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 32px; }
.tpq-field { margin-bottom: 16px; }
.tpq-field label { display: block; font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 7px; }
.tpq-field input, .tpq-field textarea { width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 14px; color: var(--ink); outline: none; }
.tpq-field input:focus, .tpq-field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }
.tpq-prose { max-width: 800px; }
.tpq-prose h2 { font-size: 1.5rem; margin: 32px 0 12px; }
.tpq-prose h3 { font-size: 1.15rem; margin: 24px 0 8px; }
.tpq-prose p, .tpq-prose li { color: var(--ink-2); margin-bottom: 12px; }
.tpq-prose ul { padding-left: 20px; list-style: disc; }

/* ── Reveal animations + safety ───────────────────────────────────────────── */
.tpq-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.tpq-reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .tpq-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .tpq-bar-fill, .tpq-shipfill { transition: none !important; }
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .tpq-grid { grid-template-columns: repeat(3, 1fr); }
  .tpq-foot-top { grid-template-columns: 1fr 1fr 1fr; }
  .tpq-foot-brand { grid-column: 1 / -1; }
  .tpq-foot-news { grid-column: 1 / -1; }
  .tpq-bento { grid-template-columns: repeat(2, 1fr); grid-template-areas:
    "brand brand"
    "reviews news"
    "shop help"
    "pay pay"
    "trust trust"; }
}
@media (max-width: 900px) {
  .tpq-nav { display: none; }
  .tpq-burger { display: inline-flex; }
  .tpq-search { display: none; }
  .tpq-search-toggle { display: inline-flex; }
  .tpq-search-mobile { display: block; }
  .tpq-hero-in { grid-template-columns: 1fr; }
  .tpq-hero-media { order: -1; }
  .tpq-hero-chip { display: none; }
  .tpq-how { grid-template-columns: 1fr 1fr; }
  .tpq-how-step:nth-child(2) { border-right: none; }
  .tpq-feature, .tpq-feature.rev { grid-template-columns: 1fr; direction: ltr; }
  .tpq-pdp { grid-template-columns: 1fr; gap: 28px; }
  .tpq-gallery { position: static; }
  .tpq-spectiles { grid-template-columns: 1fr 1fr; }
  .tpq-reviews { grid-template-columns: 1fr; }
  .tpq-cats { grid-template-columns: 1fr 1fr; }
  .tpq-cat.wide { grid-column: span 2; }
  .tpq-2col { grid-template-columns: 1fr; }
  .tpq-trust { grid-template-columns: 1fr 1fr; }
  .tpq-stat-strip { grid-template-columns: 1fr 1fr; }
  .tpq-stat-cell:nth-child(2) { border-right: none; }
  .tpq-stat-cell:nth-child(1), .tpq-stat-cell:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
  .tpq-foot-trust { grid-template-columns: 1fr 1fr; }
  .tpq-gauges { grid-template-columns: 1fr 1fr; }
  .tpq-gauge:nth-child(2) { border-right: none; }
  .tpq-gauge:nth-child(1), .tpq-gauge:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
  .tpq-bcell-trust { grid-template-columns: 1fr 1fr; gap: 14px; }
  .tpq-topbar-right .tpq-toplink { display: none; }
  .tpq-sticky-atc { display: flex; }
  .tpq-pdp-buy.is-sticky-src { margin-bottom: 70px; }
}
@media (max-width: 600px) {
  .tpq-wrap { padding: 0 16px; }
  .tpq-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tpq-sec { padding: 56px 0; }
  .tpq-how { grid-template-columns: 1fr; }
  .tpq-how-step { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .tpq-spectiles { grid-template-columns: 1fr 1fr; }
  .tpq-cats { grid-template-columns: 1fr; }
  .tpq-cat.wide { grid-column: span 1; }
  .tpq-revsum { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .tpq-revsum .tpq-revdist { text-align: left; }
  .tpq-foot-top { grid-template-columns: 1fr 1fr; }
  .tpq-bento { grid-template-columns: 1fr; grid-template-areas:
    "brand" "reviews" "news" "shop" "help" "pay" "trust"; }
  .tpq-bento-legal { flex-direction: column; align-items: flex-start; }
  .tpq-bento-legal .tpq-lang { margin-left: 0; }
  .tpq-gauges { grid-template-columns: 1fr 1fr; }
  .tpq-card-body { padding: 12px; }
  .tpq-spec-row { grid-template-columns: 130px 1fr; }
  .tpq-foot-bottom { flex-direction: column; align-items: flex-start; }
  .tpq-foot-legal { text-align: left; }
}
