/* Lootsniper stylesheet. Montserrat for display, DM Sans for text. Coral-to-red gradient accent, electric blue secondary. */

:root {
  --ink: #0f1226;
  --ink-soft: #2a3147;
  --muted: #626b80;
  --paper: #f7f7fb;
  --panel: #ffffff;
  --line: #e3e6ef;
  --line-soft: #eef0f6;
  --signal: #ff4d1c;
  --signal-2: #f42c37;
  --signal-deep: #c93a10;
  --signal-tint: #fff0eb;
  --blue: #1f6fe5;
  --blue-tint: #e8f0ff;
  --stock: #12b76a;
  --stock-tint: #e6f9ef;
  --warn: #a5690c;
  --warn-tint: #fff5df;
  --oos: #6b7280;
  --oos-tint: #eef0f3;
  --grad: linear-gradient(135deg, var(--signal) 0%, var(--signal-2) 100%);
  --glow: 0 10px 30px -6px rgba(244, 44, 55, 0.45);
  --card: 0 3px 40px rgba(15, 18, 38, 0.10);
  --radius: 12px;
  --radius-lg: 24px;
  --pill: 999px;
  --display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --text: "DM Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  --wrap: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: 1.3rem; font-weight: 700; }
p { margin: 0 0 1em; max-width: 68ch; }
small, .small { font-size: 0.875rem; }
.muted { color: var(--muted); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.inline { display: inline; }
:focus-visible { outline: 3px solid var(--signal); outline-offset: 2px; border-radius: 3px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.kicker { display: inline-block; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--signal-2); margin-bottom: 14px; }

/* Top bar */
.topbar { position: relative; z-index: 3; background: transparent; }
.topbar--app { border-bottom: 1px solid var(--line); background: var(--paper); }
.topbar__in { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand__name { font-family: var(--display); font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; }
.brand--small .brand__name { font-size: 1.05rem; }
.logo { color: var(--ink); }
.topnav { display: flex; align-items: center; gap: 26px; font-weight: 500; font-size: 0.95rem; }
.topnav a:not(.btn) { position: relative; text-decoration: none; color: var(--ink-soft); }
.topnav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; border-radius: 2px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform 220ms ease; }
.topnav a:not(.btn):hover, .topnav a[aria-current="page"] { color: var(--ink); }
.topnav a:not(.btn):hover::after, .topnav a[aria-current="page"]::after { transform: scaleX(1); }
.topnav .btn { text-decoration: none; }
.linklike { background: none; border: 0; padding: 0; font: inherit; color: var(--ink-soft); cursor: pointer; font-weight: 500; }
.linklike:hover { color: var(--ink); text-decoration: underline; }
@media (max-width: 700px) {
  .topbar__in { height: 68px; }
  .topnav { gap: 12px; font-size: 0.9rem; }
  .site .topnav a:not(.btn), .site .topnav .btn--ghost { display: none; }
}

/* Buttons and controls */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 600; font-size: 0.95rem;
  min-height: 44px; padding: 10px 22px; border-radius: var(--pill); border: 0;
  cursor: pointer; text-decoration: none; line-height: 1.2; white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(15, 18, 38, 0.5); }
.btn--signal { background: var(--grad); color: #fff; box-shadow: var(--glow); }
.btn--signal:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(244, 44, 55, 0.55); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--danger { background: transparent; color: #a1160a; box-shadow: inset 0 0 0 1.5px #e6b8b3; }
.btn--danger:hover { box-shadow: inset 0 0 0 1.5px #a1160a; }
.btn--small { min-height: 36px; padding: 6px 14px; font-size: 0.85rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }

label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 6px; }
.hint { display: block; font-weight: 400; color: var(--muted); font-size: 0.85rem; margin-top: 4px; }
input[type="text"], input[type="email"], input[type="password"], input[type="url"], input[type="tel"], input[type="number"], select, textarea {
  width: 100%; font: inherit; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: #fff; color: var(--ink); transition: border-color 150ms ease, box-shadow 150ms ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--signal); outline: none; box-shadow: 0 0 0 4px rgba(255, 77, 28, 0.15); }
.field { margin-bottom: 18px; }
.field--check { display: flex; gap: 10px; align-items: flex-start; }
.field--check input { margin-top: 4px; width: 16px; height: 16px; flex: none; accent-color: var(--signal); }
.field--check label { margin: 0; font-weight: 500; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.form-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 8px; }

/* Flash messages and notices */
.flashes { margin: 18px auto 0; display: grid; gap: 8px; }
.site .flashes { padding-top: 0; }
.flash { display: flex; gap: 12px; align-items: flex-start; padding: 14px 18px; border-radius: 16px; border: 0; background: #fff; font-size: 0.95rem; font-weight: 500; box-shadow: var(--card); animation: rise 500ms cubic-bezier(.2,.8,.2,1) both; transition: opacity 600ms ease; }
.flash::before { content: ""; flex: none; width: 10px; height: 10px; border-radius: 50%; margin-top: 7px; background: var(--blue); box-shadow: 0 0 0 4px rgba(31, 111, 229, 0.16); }
.flash--success { background: var(--stock-tint); color: #0b5c38; }
.flash--success::before { background: var(--stock); box-shadow: 0 0 0 4px rgba(18, 183, 106, 0.2); }
.flash--error { background: var(--signal-tint); color: #8a2210; }
.flash--error::before { background: var(--grad); box-shadow: 0 0 0 4px rgba(244, 44, 55, 0.18); }
.flash--info { background: #fff; color: var(--ink); }
.flash--fade { opacity: 0.55; }
.notice { display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap; margin-top: 18px; padding: 14px 18px; border-radius: var(--radius); background: var(--warn-tint); border: 1px solid #ecd39a; }
.notice p { margin: 0; }

/* ---------- Marketing ---------- */
.hero { position: relative; padding: 56px 0 72px; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.75; }
.blob--coral { width: 560px; height: 560px; right: -140px; top: -180px; background: radial-gradient(circle, rgba(255, 77, 28, 0.35), rgba(255, 77, 28, 0) 70%); animation: drift 14s ease-in-out infinite alternate; }
.blob--blue { width: 520px; height: 520px; left: -200px; bottom: -220px; background: radial-gradient(circle, rgba(31, 111, 229, 0.28), rgba(31, 111, 229, 0) 70%); animation: drift 18s ease-in-out infinite alternate-reverse; }
.dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(15, 18, 38, 0.10) 1px, transparent 1px); background-size: 22px 22px; -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 80%); mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 80%); }
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 56px; align-items: center; }
@media (max-width: 960px) { .hero__grid { grid-template-columns: 1fr; gap: 36px; } .hero { padding: 32px 0 56px; } }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px 7px 8px; border-radius: var(--pill); background: #fff; box-shadow: var(--card); font-weight: 600; font-size: 0.82rem; color: var(--ink-soft); }
.eyebrow i { display: inline-block; width: 22px; height: 22px; border-radius: 50%; background: var(--grad); position: relative; }
.eyebrow i::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--grad); animation: ping 1.8s ease-out infinite; }
.hero h1 { max-width: none; margin: 22px 0 18px; text-wrap: balance; }
.hero h1 .grad-text { display: block; }
.hero__lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 28px; }
.pastebar { display: flex; gap: 8px; align-items: center; max-width: 600px; padding: 8px 8px 8px 12px; background: #fff; border-radius: var(--pill); box-shadow: var(--card); transition: box-shadow 200ms ease; }
.pastebar:hover, .pastebar:focus-within { box-shadow: 0 8px 50px rgba(15, 18, 38, 0.16); }
.pastebar input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 10px 8px; font-size: 1rem; }
.pastebar input:focus { box-shadow: none; }
.pastebar .btn { flex: none; min-height: 48px; padding: 12px 24px; font-size: 1rem; }
@media (max-width: 520px) {
  .pastebar { flex-direction: column; align-items: stretch; border-radius: 28px; padding: 10px; gap: 10px; }
  .pastebar input { padding: 8px 10px 0; }
}
.hero__fine { margin-top: 16px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; color: var(--muted); font-size: 0.9rem; max-width: none; }
.chip { display: inline-flex; align-items: center; padding: 5px 12px; border-radius: var(--pill); background: #fff; box-shadow: inset 0 0 0 1px var(--line); font-weight: 600; font-size: 0.82rem; color: var(--ink-soft); }

/* The lock-on demo: a product card, a reticle that settles on the stock line, and an alert that arrives. */
.demo { position: relative; padding: 30px 0 84px 20px; }
.demo__card {
  position: relative; background: var(--panel); border-radius: var(--radius-lg); padding: 26px 26px 22px;
  box-shadow: 0 0 0 2px rgba(255, 77, 28, 0.35), 0 24px 70px -18px rgba(244, 44, 55, 0.45), var(--card);
  animation: floaty 6s ease-in-out infinite;
}
.demo__shop { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-bottom: 10px; }
.demo__shop::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.demo__title { font-family: var(--display); font-weight: 700; font-size: 1.3rem; line-height: 1.2; margin: 0 0 16px; letter-spacing: -0.01em; }
.demo__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line-soft); position: relative; }
.demo__price { font-family: var(--display); font-weight: 800; font-size: 1.5rem; }
.demo__status { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 0.88rem; padding: 8px 14px; border-radius: var(--pill); background: var(--oos-tint); color: var(--oos); }
.demo__status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.demo__status-text { display: grid; }
.demo__status-text span { grid-area: 1 / 1; }
.demo__status-text span:last-child { opacity: 0; }
.reticle { position: absolute; width: 58px; height: 58px; right: -4px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--signal); opacity: 0; }
.reticle svg { width: 100%; height: 100%; display: block; }
.demo__alert {
  position: absolute; left: -10px; top: calc(100% - 16px); display: flex; gap: 12px; align-items: center;
  background: var(--ink); color: #fff; padding: 14px 18px; border-radius: 18px; max-width: 360px;
  box-shadow: 0 24px 50px -20px rgba(15, 18, 38, 0.6); opacity: 0; transform: translateY(10px);
}
.demo__alert-dot { width: 34px; height: 34px; border-radius: 12px; background: var(--grad); flex: none; display: grid; place-items: center; }
.demo__alert-dot::after { content: ""; width: 12px; height: 7px; border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: translateY(-2px) rotate(-45deg); }
.demo__alert strong { display: block; font-family: var(--display); font-size: 0.88rem; font-weight: 700; }
.demo__alert span { font-size: 0.82rem; color: #c9cfdd; }
.demo__mini { position: absolute; right: -6px; top: 4px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--pill); background: #fff; box-shadow: var(--card); font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); animation: floaty 7s ease-in-out 1s infinite; }
.demo__mini::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--stock); }
@media (max-width: 600px) {
  .demo { padding: 24px 0 110px; }
  .demo__card { padding: 20px; }
  .demo__title { font-size: 1.1rem; }
  .demo__alert { left: 0; max-width: calc(100% - 10px); }
  .demo__mini { right: 0; top: -10px; }
}

@keyframes reticleIn { 0% { opacity: 0; transform: translate(-160px, -100%) scale(1.7); } 45% { opacity: 1; transform: translate(-20px, -50%) scale(1.15); } 70% { transform: translate(0, -50%) scale(0.95); } 100% { opacity: 1; transform: translate(0, -50%) scale(1); } }
@keyframes alertIn { from { opacity: 0; transform: translateY(10px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes statusFlip { to { background: var(--stock-tint); color: var(--stock); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeOut { to { opacity: 0; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes drift { from { transform: translate(0, 0); } to { transform: translate(-40px, 30px); } }
@keyframes ping { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(2.2); opacity: 0; } }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.demo--animate .reticle { animation: reticleIn 1.1s cubic-bezier(.2,.8,.2,1) 0.5s forwards; }
.demo--animate .demo__status { animation: statusFlip 300ms ease 1.7s forwards; }
.demo--animate .demo__status-text span:first-child { animation: fadeOut 250ms ease 1.75s forwards; }
.demo--animate .demo__status-text span:last-child { animation: fadeIn 250ms ease 1.75s forwards; }
.demo--animate .demo__alert { animation: alertIn 500ms ease 2.2s forwards; }
.rise { opacity: 0; animation: rise 700ms cubic-bezier(.2,.8,.2,1) forwards; }
.rise--1 { animation-delay: 60ms; } .rise--2 { animation-delay: 160ms; } .rise--3 { animation-delay: 260ms; } .rise--4 { animation-delay: 360ms; } .rise--5 { animation-delay: 460ms; } .rise--6 { animation-delay: 620ms; }
@media (prefers-reduced-motion: reduce) {
  .rise, .demo__card, .demo__mini, .uses__badge, .blob, .eyebrow i::after, .marquee__track, .demo--animate .reticle, .demo--animate .demo__status, .demo--animate .demo__status-text span, .demo--animate .demo__alert { animation: none; }
  .rise { opacity: 1; }
  .demo--animate .reticle { opacity: 1; }
  .demo--animate .demo__status { background: var(--stock-tint); color: var(--stock); }
  .demo--animate .demo__status-text span:first-child { opacity: 0; }
  .demo--animate .demo__status-text span:last-child { opacity: 1; }
  .demo--animate .demo__alert { opacity: 1; transform: none; }
}

/* Trust strip */
.trust { position: relative; z-index: 2; margin-top: -10px; }
.trust__in { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); background: #fff; border-radius: var(--radius-lg); box-shadow: var(--card); padding: 8px; margin: 0; list-style: none; }
.trust__item { display: flex; align-items: center; gap: 14px; padding: 18px 22px; border-radius: 18px; transition: background-color 180ms ease; }
.trust__item:hover { background: var(--paper); }
.trust__item strong { display: block; font-family: var(--display); font-weight: 700; font-size: 0.95rem; }
.trust__item span { font-size: 0.88rem; color: var(--muted); }
.ico { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; flex: none; color: #fff; }
.ico svg { width: 22px; height: 22px; }
.ico--grad { background: var(--grad); box-shadow: var(--glow); }
.ico--blue { background: linear-gradient(135deg, #3b8bff, var(--blue)); box-shadow: 0 10px 30px -8px rgba(31, 111, 229, 0.5); }
.ico--green { background: linear-gradient(135deg, #2dd684, var(--stock)); box-shadow: 0 10px 30px -8px rgba(18, 183, 106, 0.5); }
@media (max-width: 960px) { .trust__in { grid-template-columns: 1fr; } .trust__item { padding: 14px 16px; } }

.section { padding: 88px 0; }
.section--tight { padding-top: 0; }
.section__head { max-width: 62ch; margin-bottom: 40px; }
.section__head p { color: var(--ink-soft); font-size: 1.05rem; }
@media (max-width: 960px) { .section { padding: 64px 0; } }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; counter-reset: step; list-style: none; padding: 0; margin: 0; }
@media (max-width: 960px) { .steps { grid-template-columns: 1fr; } }
.step { counter-increment: step; position: relative; background: #fff; border-radius: var(--radius-lg); padding: 30px 28px 28px; box-shadow: var(--card); overflow: hidden; transition: transform 220ms ease, box-shadow 220ms ease; }
.step:hover { transform: translateY(-6px); box-shadow: 0 24px 60px -20px rgba(15, 18, 38, 0.25); }
.step::before { content: counter(step); display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: var(--grad); color: #fff; font-family: var(--display); font-weight: 800; font-size: 1.4rem; box-shadow: var(--glow); margin-bottom: 20px; }
.step::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 77, 28, 0.14), transparent 70%); pointer-events: none; }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-soft); margin: 0; font-size: 0.97rem; }

.uses { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
@media (max-width: 960px) { .uses { grid-template-columns: 1fr; gap: 36px; } }
.uses__photo { position: relative; border-radius: var(--radius-lg); overflow: visible; aspect-ratio: 4 / 3; }
.uses__photo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--card); }
.uses__badge { position: absolute; left: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 10px; background: #fff; padding: 12px 16px; border-radius: 16px; box-shadow: var(--card); font-weight: 700; font-size: 0.88rem; animation: floaty 6s ease-in-out infinite; }
.uses__badge::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--stock); box-shadow: 0 0 0 6px rgba(18, 183, 106, 0.18); }
.uses__credit { font-size: 0.8rem; color: var(--muted); margin-top: 10px; }
.uses__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.uses__list li { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; padding: 14px 18px; background: #fff; border-radius: 16px; box-shadow: inset 0 0 0 1px var(--line-soft); transition: transform 180ms ease, box-shadow 180ms ease; }
.uses__list li:hover { transform: translateX(6px); box-shadow: var(--card); }
.uses__list li span:first-child { font-weight: 600; }
.uses__list li span:last-child { color: var(--muted); font-size: 0.9rem; text-align: right; }
@media (max-width: 600px) { .uses__list li { grid-template-columns: 1fr; gap: 2px; } .uses__list li span:last-child { text-align: left; } }
.stat { margin-top: 26px; display: flex; gap: 18px; align-items: center; padding: 18px 22px; border-radius: 18px; background: var(--ink); color: #fff; }
.stat strong { font-family: var(--display); font-weight: 800; font-size: 2rem; line-height: 1; white-space: nowrap; display: block; }
.stat span { font-size: 0.88rem; color: #c9cfdd; }
@media (max-width: 600px) { .stat { flex-direction: column; align-items: flex-start; gap: 8px; } }

/* Shops marquee */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; gap: 14px; width: max-content; padding: 12px 0; margin: 0; list-style: none; animation: marquee 28s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.shops li { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: var(--pill); background: #fff; box-shadow: var(--card); font-family: var(--display); font-weight: 700; font-size: 1.1rem; letter-spacing: -0.01em; white-space: nowrap; transition: transform 180ms ease; }
.shops li::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--grad); }
.shops li:hover { transform: translateY(-3px); }
.shops li.shops__more { font-family: var(--text); font-weight: 500; font-size: 0.95rem; color: var(--muted); box-shadow: inset 0 0 0 1.5px var(--line); }
.shops li.shops__more::before { display: none; }

.faq { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 20px; align-items: start; }
@media (max-width: 960px) { .faq { grid-template-columns: 1fr; } }
.faq details { background: #fff; border-radius: 18px; box-shadow: inset 0 0 0 1px var(--line-soft); padding: 4px 22px; transition: box-shadow 180ms ease; }
.faq details:hover, .faq details[open] { box-shadow: var(--card); }
.faq summary { font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 0; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 1.1rem; line-height: 1; transition: transform 220ms ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0; padding: 0 0 18px; color: var(--ink-soft); font-size: 0.97rem; }
.faq details a { color: var(--blue); font-weight: 600; text-decoration: none; }
.faq details a:hover { text-decoration: underline; }

.cta { padding: 0 0 88px; }
.cta__in { position: relative; overflow: hidden; border-radius: 32px; background: var(--grad); color: #fff; padding: 72px 56px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: center; box-shadow: 0 30px 80px -30px rgba(244, 44, 55, 0.6); }
.cta__in::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; right: -160px; top: -260px; background: rgba(255, 255, 255, 0.14); pointer-events: none; }
.cta__in::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; left: 40%; bottom: -240px; background: rgba(255, 255, 255, 0.10); pointer-events: none; }
.cta h2 { position: relative; color: #fff; max-width: 16ch; margin-bottom: 12px; }
.cta p { position: relative; color: rgba(255, 255, 255, 0.86); font-size: 1.05rem; }
.cta .pastebar { position: relative; max-width: none; box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.4); }
@media (max-width: 960px) { .cta__in { grid-template-columns: 1fr; padding: 48px 28px; } .cta { padding-bottom: 56px; } }
@media (max-width: 600px) { .cta__in { padding: 40px 22px; border-radius: 24px; } }

.footer { border-top: 1px solid var(--line); padding: 36px 0 44px; color: var(--muted); font-size: 0.9rem; }
.footer__in { display: grid; grid-template-columns: 1fr auto; gap: 14px 40px; align-items: start; }
.footer__links { display: flex; gap: 22px; }
.footer__links a { display: inline-flex; align-items: center; min-height: 44px; color: var(--ink-soft); font-weight: 500; text-decoration: none; }
.footer__links a:hover { color: var(--ink); text-decoration: underline; }
.footer__note { margin: 8px 0 0; }
.footer__copy { grid-column: 1 / -1; margin: 0; }
.footer--app { margin-top: 60px; padding: 24px 0; }
.footer--app .footer__in { grid-template-columns: auto 1fr; }
.footer--app .footer__copy { grid-column: auto; text-align: right; }
@media (max-width: 600px) { .footer__in { grid-template-columns: 1fr; } }

/* Auth cards */
.auth { max-width: 440px; margin: 56px auto; background: var(--panel); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--card); }
.auth h1 { font-size: 1.9rem; margin-bottom: 6px; }
.auth__lead { color: var(--muted); margin-bottom: 22px; }
.auth__alt { margin: 18px 0 0; font-size: 0.95rem; color: var(--muted); }
.auth__alt a { color: var(--blue); font-weight: 600; text-decoration: none; }
.auth__alt a:hover { text-decoration: underline; }
.honey { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- App ---------- */
.app__main { padding-bottom: 40px; }
.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin: 30px 0 18px; }
.page-head h1 { font-size: 2rem; margin: 0; }
.page-head p { margin: 0; color: var(--muted); }
.panel { background: var(--panel); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 22px; box-shadow: var(--card); }
.panel h2 { font-size: 1.25rem; margin-bottom: 14px; }
.panel--tight { padding: 16px 18px; }
.addbar { display: flex; gap: 8px; align-items: center; padding: 6px; background: var(--paper); border-radius: var(--pill); box-shadow: inset 0 0 0 1.5px var(--line); }
.addbar:focus-within { box-shadow: inset 0 0 0 1.5px var(--signal), 0 0 0 4px rgba(255, 77, 28, 0.12); }
.addbar input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 10px 12px; font-size: 1rem; }
.addbar input:focus { box-shadow: none; }
.addbar__paste { flex: none; }
@media (max-width: 560px) { .addbar { flex-direction: column; align-items: stretch; border-radius: 24px; } }
details.more { margin-top: 12px; }
details.more summary { cursor: pointer; font-weight: 500; color: var(--ink-soft); font-size: 0.92rem; }
details.more .field-row { margin-top: 14px; }

.watches { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.watch { display: grid; grid-template-columns: 64px minmax(0, 1fr) auto; gap: 16px; align-items: center; background: var(--panel); border-radius: 18px; padding: 14px 16px; box-shadow: inset 0 0 0 1px var(--line-soft); transition: box-shadow 180ms ease; }
.watch:hover { box-shadow: var(--card); }
.watch--live { box-shadow: inset 0 0 0 2px var(--stock); }
.watch__img { width: 64px; height: 64px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line-soft); display: grid; place-items: center; overflow: hidden; }
.watch__img img { width: 100%; height: 100%; object-fit: contain; }
.watch__img svg { color: var(--line); }
.watch__title { font-weight: 600; text-decoration: none; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.watch__title:hover { text-decoration: underline; }
.watch__meta { color: var(--muted); font-size: 0.88rem; display: flex; gap: 8px 14px; flex-wrap: wrap; margin-top: 4px; }
.watch__meta a { color: var(--muted); }
.watch__actions { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.watch__actions form { display: inline; }
@media (max-width: 720px) {
  .watch { grid-template-columns: 52px minmax(0, 1fr); }
  .watch__img { width: 52px; height: 52px; }
  .watch__actions { grid-column: 1 / -1; justify-content: flex-start; }
}
.pill { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.8rem; padding: 3px 10px; border-radius: var(--pill); white-space: nowrap; }
.pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.pill--in_stock { background: var(--stock-tint); color: #0e8a52; }
.pill--out_of_stock { background: var(--oos-tint); color: var(--oos); }
.pill--preorder { background: var(--blue-tint); color: var(--blue); }
.pill--error, .pill--blocked { background: var(--warn-tint); color: var(--warn); }
.pill--unknown { background: transparent; color: var(--muted); border: 1px dashed var(--line); }
.pill--paused { background: transparent; color: var(--muted); border: 1px solid var(--line); }
.pill--paused::before { display: none; }
.empty { text-align: center; padding: 44px 20px; color: var(--muted); border: 1.5px dashed var(--line); border-radius: var(--radius-lg); }
.empty strong { display: block; color: var(--ink); font-family: var(--display); font-size: 1.3rem; margin-bottom: 6px; }

.two-col { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: 22px; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li { display: grid; grid-template-columns: auto 1fr; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line-soft); font-size: 0.9rem; }
.timeline time { color: var(--muted); white-space: nowrap; }

table.data { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
table.data th, table.data td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
table.data th { font-weight: 600; color: var(--muted); font-size: 0.8rem; }
table.data td.num, table.data th.num { text-align: right; font-variant-numeric: tabular-nums; }
.table-scroll { overflow-x: auto; }
.kv { display: grid; grid-template-columns: max-content 1fr; gap: 6px 18px; font-size: 0.95rem; margin: 0; }
.kv dt { color: var(--muted); }
.kv dd { margin: 0; word-break: break-word; }

.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-bottom: 22px; }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.stats div { background: var(--panel); border-radius: var(--radius); padding: 12px 14px; box-shadow: inset 0 0 0 1px var(--line-soft); }
.stats strong { display: block; font-family: var(--display); font-size: 1.6rem; line-height: 1.1; }
.stats span { color: var(--muted); font-size: 0.85rem; }
.ok { color: #0e8a52; font-weight: 600; }
.bad { color: #a1160a; font-weight: 600; }
.danger-zone { box-shadow: inset 0 0 0 1.5px #e6b8b3; }
code { font-family: ui-monospace, Consolas, monospace; font-size: 0.9em; background: var(--oos-tint); padding: 1px 5px; border-radius: 4px; }

/* Legal / static */
.prose { max-width: 72ch; margin: 40px auto 60px; }
.prose h1 { font-size: 2.4rem; }
.prose h2 { font-size: 1.4rem; margin-top: 1.6em; }
.prose ul { padding-left: 1.2em; }
.prose a { color: var(--blue); }

/* Error page */
.errorpage { max-width: 520px; margin: 64px auto; padding: 44px 36px; text-align: center; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--card); animation: rise 600ms cubic-bezier(.2,.8,.2,1) both; }
.errorpage h1 { font-size: 6rem; line-height: 1; margin: 0 0 6px; }
.errorpage h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.errorpage p { margin: 0 auto; }
.errorpage code { display: inline-block; max-width: 100%; overflow-wrap: anywhere; margin-bottom: 8px; }
.errorpage .btn { margin-top: 22px; }

/* ---------- App polish: same system as the marketing pages ---------- */
.topbar--app { border-bottom: 0; background: transparent; }
.page-head { margin: 34px 0 22px; }
.page-head h1 { font-size: 2.2rem; }
.page-head .kicker { margin-bottom: 8px; }
.chip--live { padding: 7px 14px; box-shadow: var(--card); }
.chip--live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--stock); box-shadow: 0 0 0 4px rgba(18, 183, 106, 0.18); margin-right: 9px; }
.backlink { display: inline-flex; align-items: center; gap: 6px; min-height: 32px; color: var(--muted); text-decoration: none; font-weight: 500; font-size: 0.9rem; margin-bottom: 4px; }
.backlink:hover { color: var(--ink); }
.backlink svg { width: 16px; height: 16px; }
.panel h2 { font-size: 1.15rem; font-weight: 700; }
.notice { border: 0; box-shadow: var(--card); background: #fff6e3; border-radius: 18px; }
details.more summary { display: inline-flex; align-items: center; gap: 8px; padding: 6px 0; list-style: none; }
details.more summary::-webkit-details-marker { display: none; }
details.more summary::before { content: "+"; flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 0.95rem; line-height: 1; transition: transform 220ms ease; }
details.more[open] summary::before { transform: rotate(45deg); }
.watch { border-radius: 20px; padding: 16px 18px; transition: transform 180ms ease, box-shadow 180ms ease; }
.watch:hover { transform: translateY(-2px); box-shadow: var(--card); }
.watch--live { box-shadow: inset 0 0 0 2px var(--stock), 0 12px 30px -14px rgba(18, 183, 106, 0.5); }
.watch--live:hover { box-shadow: inset 0 0 0 2px var(--stock), var(--card); }
.watch__img { border-radius: 16px; border: 0; }
.empty { background: #fff; border: 0; box-shadow: var(--card); padding: 56px 20px; }
.empty__icon { width: 56px; height: 56px; border-radius: 18px; background: var(--grad); box-shadow: var(--glow); display: grid; place-items: center; margin: 0 auto 18px; color: #fff; }
.empty__icon svg { width: 26px; height: 26px; }
.timeline li { grid-template-columns: auto auto 1fr; align-items: center; padding: 10px 0; }
.timeline li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }
.timeline li:last-child { border-bottom: 0; }
.kv dt { font-weight: 500; }
.danger-zone { box-shadow: inset 0 0 0 1.5px #f3c9c4; background: #fffafa; }
.footer--app { border-top: 1px solid var(--line); }
.two-col { gap: 24px; }
.stats div { border-radius: 16px; }

/* Admin */
.stats { gap: 12px; }
.stats div { background: #fff; border-radius: 18px; padding: 16px 18px; box-shadow: var(--card); }
.stats strong { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.02em; }
.stats span { display: block; margin-top: 2px; }
table.data th { text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.72rem; padding: 10px 12px; }
table.data td { padding: 11px 12px; }
table.data tbody tr { transition: background-color 120ms ease; }
table.data tbody tr:hover { background: var(--paper); }
table.data a { color: var(--blue); font-weight: 500; text-decoration: none; }
table.data a:hover { text-decoration: underline; }
.ok, .bad { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; }
.ok::before, .bad::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.kv code { display: inline-block; max-width: 100%; overflow-wrap: anywhere; }

/* Auth and legal pages */
.authpage { position: relative; }
.authpage::before, .authpage::after { content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.7; pointer-events: none; z-index: -1; }
.authpage::before { width: 420px; height: 420px; right: -80px; top: -60px; background: radial-gradient(circle, rgba(255, 77, 28, 0.30), rgba(255, 77, 28, 0) 70%); }
.authpage::after { width: 400px; height: 400px; left: -120px; bottom: -80px; background: radial-gradient(circle, rgba(31, 111, 229, 0.24), rgba(31, 111, 229, 0) 70%); }
.site main { position: relative; z-index: 0; }
.auth { padding: 36px; animation: rise 600ms cubic-bezier(.2,.8,.2,1) both; }
.auth .kicker { margin-bottom: 10px; }
.auth h1 { font-size: 2rem; }
.auth .btn--block { min-height: 50px; margin-top: 4px; }
.auth .flash { box-shadow: none; }
.prose { background: #fff; border-radius: var(--radius-lg); padding: 40px 44px 44px; box-shadow: var(--card); margin: 48px auto 72px; }
.prose .kicker { margin-bottom: 8px; }
.prose h1 { font-size: 2.4rem; margin-bottom: 8px; }
.prose h2 { font-size: 1.3rem; margin-top: 1.8em; margin-bottom: 0.4em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose li { margin-bottom: 6px; }
.prose .chip { margin-bottom: 22px; }
@media (max-width: 600px) { .prose { padding: 28px 22px 32px; margin: 24px auto 48px; } .auth { padding: 28px 22px; margin: 32px auto; } }
.errorpage h1 { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Motion: reveal on scroll, hero tilt, parallax */
[data-reveal] > * { opacity: 0; transform: translateY(22px); transition: opacity 600ms cubic-bezier(.2,.8,.2,1), transform 600ms cubic-bezier(.2,.8,.2,1); transition-delay: calc(var(--i, 0) * 90ms); }
[data-reveal].is-in > * { opacity: 1; transform: none; }
.uses__list[data-reveal] > li:hover { transform: translateX(6px); }
.steps[data-reveal] > .step:hover { transform: translateY(-6px); }
.hero { perspective: 1200px; }
.demo__card { transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform 300ms ease; will-change: transform; }
.demo--animate .demo__card { animation: floaty3d 6s ease-in-out infinite; }
@keyframes floaty3d { 0%, 100% { transform: translateY(0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); } 50% { transform: translateY(-10px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); } }
.blob--coral { translate: 0 calc(var(--scroll-y, 0px) * -1); }
.blob--blue { translate: 0 var(--scroll-y, 0px); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] > * { opacity: 1; transform: none; transition: none; }
  .demo__card, .demo--animate .demo__card { animation: none; transform: none; }
  .blob--coral, .blob--blue { translate: none; }
}

/* Scroll stage: the trainer turntable scrubbed by scroll (see assets/scroll/) */
.stage { position: relative; margin-top: 56px; }
.stage .seq { background: var(--ink); }
.stage .seq__pin { background: radial-gradient(60% 50% at 70% 55%, rgba(255, 77, 28, 0.22), transparent 70%), radial-gradient(40% 40% at 20% 20%, rgba(31, 111, 229, 0.18), transparent 70%), var(--ink); }
.stage__copy { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); pointer-events: none; }
.stage__copy .wrap { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.stage__text { color: #fff; position: relative; min-height: 220px; }
.stage__beat { position: absolute; left: 0; top: 0; width: 100%; max-width: 440px; opacity: 0; transform: translateY(16px); transition: opacity 420ms cubic-bezier(.2,.8,.2,1), transform 420ms cubic-bezier(.2,.8,.2,1); pointer-events: none; }
.stage__beat.in { opacity: 1; transform: none; pointer-events: auto; }
.stage__beat .kicker { color: #ff7a52; }
.stage__beat h2 { color: #fff; font-size: clamp(1.9rem, 3.2vw, 2.8rem); margin-bottom: 12px; text-wrap: balance; }
.stage__beat p { color: #c9cfdd; font-size: 1.05rem; max-width: 34ch; }
.stage__beat .btn { margin-top: 6px; pointer-events: auto; }
.stage__lock { position: absolute; width: 120px; height: 120px; color: var(--signal); opacity: 0; transform: translate(-50%, -50%) scale(1.6); transition: opacity 300ms ease, transform 500ms cubic-bezier(.2,.8,.2,1); pointer-events: none; filter: drop-shadow(0 0 18px rgba(255, 77, 28, 0.6)); }
.stage__lock.in { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.stage__lock svg { width: 100%; height: 100%; }
.stage__tag { position: absolute; display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: var(--pill); background: #fff; color: var(--ink); font-weight: 700; font-size: 0.88rem; box-shadow: var(--card); opacity: 0; transform: translateY(10px); transition: opacity 300ms ease 120ms, transform 300ms ease 120ms; pointer-events: none; white-space: nowrap; }
.stage__tag::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--stock); box-shadow: 0 0 0 4px rgba(18, 183, 106, 0.2); }
.stage__tag.in { opacity: 1; transform: none; }
.stage__progress { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); display: flex; gap: 6px; }
.stage__progress i { width: 26px; height: 4px; border-radius: 2px; background: rgba(255, 255, 255, 0.22); transition: background-color 200ms ease; }
.stage__progress i.on { background: var(--grad); }
@media (max-width: 960px) {
  .stage__copy { top: 48px; transform: none; }
  .stage__copy .wrap { grid-template-columns: 1fr; }
  .stage__text { min-height: 200px; }
  .stage__beat { max-width: 100%; }
  .stage__beat p { font-size: 0.97rem; }
  .stage__lock { width: 90px; height: 90px; }
}

/* Link preview under the add bar */
.preview { display: flex; gap: 14px; align-items: flex-start; margin-top: 12px; padding: 14px 16px; border-radius: 18px; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line-soft); animation: rise 300ms cubic-bezier(.2,.8,.2,1) both; }
.preview--warn { background: var(--warn-tint); }
.preview__img { width: 56px; height: 56px; flex: none; border-radius: 14px; background: #fff; display: grid; place-items: center; overflow: hidden; color: var(--line); }
.preview__img img { width: 100%; height: 100%; object-fit: contain; }
.preview__body { min-width: 0; flex: 1; }
.preview__shop { display: block; font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.preview__title { display: block; font-weight: 600; line-height: 1.3; margin: 2px 0 6px; }
.preview__meta { display: flex; flex-wrap: wrap; gap: 6px 12px; align-items: center; font-size: 0.88rem; color: var(--muted); }
.preview__note { margin: 8px 0 0; font-size: 0.88rem; color: var(--ink-soft); }
.preview__note--warn { color: #8a5a00; font-weight: 600; }
.preview__loading { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.92rem; }
.preview__loading::before { content: ""; width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--line); border-top-color: var(--signal); animation: spin 800ms linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.pill--note { background: var(--warn-tint); color: var(--warn); }

/* Price history */
.pricebox { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: center; }
.pricebox__spark { color: var(--blue); }
.spark { width: 100%; height: auto; max-width: 320px; display: block; }
.pricebox__stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 18px; margin: 0; }
.pricebox__stats dt { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 600; }
.pricebox__stats dd { margin: 0; font-family: var(--display); font-weight: 700; font-size: 1.05rem; }
@media (max-width: 600px) { .pricebox { grid-template-columns: 1fr; } }

/* Bookmarklet */
.bookmarklet { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 10px 18px; border-radius: var(--pill); background: var(--grad); color: #fff; font-weight: 700; text-decoration: none; box-shadow: var(--glow); cursor: grab; }
.bookmarklet::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: #fff; }

/* Trending grid */
.tgrid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 960px) { .tgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .tgrid { grid-template-columns: 1fr; } }
.tcard { display: grid; grid-template-columns: 72px minmax(0, 1fr); grid-template-rows: auto auto; gap: 8px 14px; padding: 16px; background: #fff; border-radius: 20px; box-shadow: inset 0 0 0 1px var(--line-soft); transition: transform 180ms ease, box-shadow 180ms ease; }
.tcard:hover { transform: translateY(-3px); box-shadow: var(--card); }
.tcard__img { grid-row: 1 / 3; width: 72px; height: 72px; border-radius: 16px; background: var(--paper); display: grid; place-items: center; overflow: hidden; color: var(--line); }
.tcard__img img { width: 100%; height: 100%; object-fit: contain; }
.tcard__shop { display: block; font-size: 0.78rem; font-weight: 600; color: var(--muted); }
.tcard__title { font-size: 1rem; font-weight: 700; line-height: 1.3; margin: 2px 0 6px; }
.tcard__meta { display: flex; flex-wrap: wrap; gap: 6px 12px; align-items: center; font-size: 0.85rem; color: var(--muted); }
.tcard form, .tcard > .btn { grid-column: 2; justify-self: start; }
