/* Treadline by On The Go — tire e-commerce catalogue theme.
   Ink storefront identity, but keeps the SAME orange accent as the rest
   of the tire-change brand (not a separate amber/yellow) so it reads as
   part of the same business rather than a competing sub-brand.
   Component styles below are ported from the standalone tires.html
   prototype. Renamed on port to avoid colliding with base.css's global
   .btn / .card / .grid / .field / .brand classes: .card -> .tl-card,
   .grid -> .tl-grid, .field(s) -> .tl-field(s), .brand -> .tl-brand.
   The finder's search button now reuses the site's own .btn .btn-primary
   instead of a custom rule. */
body.theme-treadline {
  --bg: #F4F5F7;
  --text: #0B0D10;
  --font-heading: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --header-bg: #0B0D10;
  --header-border: rgba(255,255,255,0.1);
  --header-text: #FFFFFF;

  --accent: #FF9E00;
  --accent-contrast: #2F2E2E;

  --surface: #FFFFFF;
  --surface-border: #E4E7EB;

  --placeholder-bg: #F4F5F7;
  --placeholder-border: #E4E7EB;
  --placeholder-text: #6B7280;

  --input-bg: #FFFFFF;
  --input-border: #E4E7EB;

  --footer-bg: #0B0D10;
  --footer-text: rgba(255,255,255,0.65);
  --footer-heading: #FFFFFF;
  --footer-border: rgba(255,255,255,0.1);

  --header-chip-bg: rgba(255,255,255,0.12);
  --header-chip-text: #FFFFFF;

  /* Treadline's own internal palette, used by the component styles below */
  --tl-ink: #0B0D10;
  --tl-graphite: #15181D;
  --tl-canvas: #F4F5F7;
  --tl-surface: #FFFFFF;
  --tl-line: #E4E7EB;
  --tl-muted: #6B7280;
  --tl-accent: #FF9E00;
  --tl-accent-deep: #D98600;
  --tl-danger: #C0362C;
  --tl-ok: #2E9E5B;
}

body.theme-treadline *,
body.theme-treadline *::before,
body.theme-treadline *::after { box-sizing: border-box; }

body.theme-treadline .tl-display { font-family: 'Sora', system-ui, sans-serif; letter-spacing: -0.03em; }
body.theme-treadline .tl-mono { font-family: 'IBM Plex Mono', ui-monospace, monospace; }
body.theme-treadline :focus-visible { outline: 2px solid var(--tl-accent); outline-offset: 3px; border-radius: 6px; }

/* ---------------- Finder (hero) ---------------- */
body.theme-treadline .finder {
  position: relative;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(255,158,0,0.16), transparent 60%),
    var(--tl-ink);
  color: #fff;
  padding: 44px 0 40px;
  overflow: hidden;
}
body.theme-treadline .tl-eyebrow { display: block; margin-bottom: 10px; }

/* Corner "best price guarantee" seal */
body.theme-treadline .tl-seal {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--tl-accent);
  color: var(--tl-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 0 12px 28px -8px rgba(255,158,0,0.55);
  z-index: 2;
}
body.theme-treadline .tl-seal-top { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
body.theme-treadline .tl-seal-mid { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; line-height: 1.1; margin: 1px 0; }
body.theme-treadline .tl-seal-bottom { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; max-width: 84px; line-height: 1.25; opacity: 0.85; }
@media (max-width: 760px) {
  body.theme-treadline .tl-seal { width: 74px; height: 74px; top: 14px; right: 14px; }
  body.theme-treadline .tl-seal-top { font-size: 8px; }
  body.theme-treadline .tl-seal-mid { font-size: 11px; }
  body.theme-treadline .tl-seal-bottom { font-size: 6px; max-width: 54px; }
  body.theme-treadline .tl-brand { padding-right: 84px; }
}
body.theme-treadline .tl-brand { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; flex-wrap: wrap; }
body.theme-treadline .tl-brand .mark { font-family: 'Sora', sans-serif; font-size: 30px; font-weight: 800; letter-spacing: -0.01em; color: var(--tl-accent); }
body.theme-treadline .tl-brand .tag {
  font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; line-height: 1;
  color: rgba(255,255,255,.85);
  padding: 6px 12px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px;
}

body.theme-treadline .finder h1 { font-size: 46px; line-height: 1.06; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 12px; }
body.theme-treadline .finder .sub { font-size: 16px; color: rgba(255,255,255,.62); margin: 0 0 28px; max-width: 46ch; }

body.theme-treadline .tl-fields { display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; }
body.theme-treadline .tl-fields[hidden] { display: none; }
body.theme-treadline .tl-field { display: flex; flex-direction: column; gap: 8px; }
body.theme-treadline .tl-field label { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); }
body.theme-treadline .tl-field input {
  font-family: 'IBM Plex Mono', monospace; font-size: 24px; font-weight: 600; text-align: center;
  width: 108px; padding: 16px 8px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05); color: var(--tl-accent);
}
body.theme-treadline .tl-field input::placeholder { color: rgba(255,255,255,.22); font-weight: 500; }
body.theme-treadline .tl-sep { font-family: 'IBM Plex Mono', monospace; color: rgba(255,255,255,.28); padding-bottom: 18px; font-size: 20px; }

body.theme-treadline .finder .btn-primary { background: var(--tl-accent); color: var(--tl-ink); }
body.theme-treadline .finder .btn-primary[disabled] { opacity: .28; cursor: not-allowed; }

/* Tires / Rims switch */
body.theme-treadline .tl-type-switch {
  display: inline-flex; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px; padding: 3px; gap: 2px; margin-bottom: 22px;
}
body.theme-treadline .tl-type-btn {
  padding: 8px 20px; border-radius: 999px; border: 0; background: transparent;
  font-family: 'Sora', sans-serif; font-size: 13.5px; font-weight: 600;
  color: rgba(255,255,255,.65); cursor: pointer;
}
body.theme-treadline .tl-type-btn.is-active { background: var(--tl-accent); color: var(--tl-ink); }

body.theme-treadline .tl-rim-note { font-size: 14px; color: rgba(255,255,255,.62); max-width: 52ch; margin: 0 0 8px; }

/* Cart icon in header */
.cart-link { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; color: var(--header-text); flex-shrink: 0; }
.cart-link svg { width: 21px; height: 21px; }
.cart-badge {
  position: absolute; top: -2px; right: -2px; min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 999px; background: var(--tl-accent, #FF9E00); color: #14110B;
  font-size: 10.5px; font-weight: 700; line-height: 17px; text-align: center;
}

body.theme-treadline .hint {
  margin: 24px 0 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; gap: 16px; align-items: center;
}
body.theme-treadline .hint[hidden] { display: none; }
body.theme-treadline .hint p { margin: 0; font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.55; }
body.theme-treadline .hint code { font-family: 'IBM Plex Mono', monospace; color: var(--tl-accent); background: rgba(255,206,31,.1); padding: 2px 6px; border-radius: 4px; }

body.theme-treadline .trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 30px;
  padding: 16px 0; background: var(--tl-graphite);
  font-size: 13.5px; color: rgba(255,255,255,.6);
}
body.theme-treadline .trust b { color: #fff; font-weight: 600; }

/* ---------------- Guarantees ---------------- */
body.theme-treadline .guarantees { padding: 40px 0; background: var(--tl-canvas); }
body.theme-treadline .guarantee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
body.theme-treadline .guarantee-card {
  background: var(--tl-surface); border: 1px solid var(--tl-line); border-radius: 16px;
  padding: 24px 20px; text-align: center;
}
body.theme-treadline .guarantee-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin: 0 auto 12px;
  border-radius: 50%; background: rgba(255,158,0,0.1); color: var(--tl-accent);
}
body.theme-treadline .guarantee-icon svg { width: 22px; height: 22px; }
body.theme-treadline .guarantee-card h3 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 600; margin: 0 0 8px; }
body.theme-treadline .guarantee-card p { font-size: 13.5px; color: var(--tl-muted); margin: 0; line-height: 1.5; }
@media (max-width: 760px) {
  body.theme-treadline .guarantee-grid { grid-template-columns: 1fr; }
}

/* ---------------- Results ---------------- */
body.theme-treadline .results { padding: 34px 0 60px; }
body.theme-treadline .bar { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
body.theme-treadline .bar h2 { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 600; margin: 0; }
body.theme-treadline .bar .count { font-size: 13px; color: var(--tl-muted); margin: 4px 0 0; }

body.theme-treadline select.control {
  font-size: 13px; padding: 9px 12px; border-radius: 10px;
  border: 1px solid var(--tl-line); background: var(--tl-surface); color: var(--tl-ink);
}

body.theme-treadline .chips { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 12px; scrollbar-width: thin; }
body.theme-treadline .chips[hidden] { display: none; }
body.theme-treadline .chip {
  flex-shrink: 0; font-size: 13px; font-weight: 500; padding: 8px 15px; border-radius: 999px;
  border: 1px solid var(--tl-line); background: var(--tl-surface); color: #2A2F38; cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease; white-space: nowrap;
}
body.theme-treadline .chip:hover { border-color: #C8CDD4; }
body.theme-treadline .chip.on { background: var(--tl-ink); border-color: var(--tl-ink); color: #fff; font-weight: 600; }

body.theme-treadline .tl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }

body.theme-treadline .tl-card {
  background: var(--tl-surface); border: 1px solid var(--tl-line); border-radius: 16px;
  padding: 18px; display: flex; flex-direction: column;
  transition: transform .2s cubic-bezier(.2,.7,.3,1), box-shadow .2s ease, border-color .2s ease;
}
body.theme-treadline .tl-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px -14px rgba(11,13,16,.22); border-color: #CFD4DA; }

body.theme-treadline .tl-card .pic { height: 140px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
body.theme-treadline .tl-card .pic img { max-height: 140px; max-width: 100%; object-fit: contain; }

body.theme-treadline .tl-card .brand-name { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--tl-muted); font-weight: 500; }
body.theme-treadline .tl-card h3 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 600; margin: 2px 0 10px; line-height: 1.3; }

body.theme-treadline .stamp {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 600;
  background: var(--tl-ink); color: var(--tl-accent); padding: 4px 8px; border-radius: 6px; display: inline-block;
}
body.theme-treadline .season-tag {
  font-size: 11px; font-weight: 500; padding: 4px 9px; border-radius: 999px;
  background: var(--tl-canvas); border: 1px solid var(--tl-line); color: #2A2F38; margin-left: 6px;
}

body.theme-treadline .rim-bolt { font-size: 11.5px; color: var(--tl-muted); margin: 6px 0 0; }
body.theme-treadline .tl-card .foot { margin-top: auto; padding-top: 16px; }
body.theme-treadline .tl-price { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 600; line-height: 1; }
body.theme-treadline .tl-each { font-size: 11px; color: var(--tl-muted); margin-top: 5px; }
body.theme-treadline .tl-stock { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--tl-muted); margin-top: 8px; }
body.theme-treadline .tl-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--tl-ok); }
body.theme-treadline .tl-dot.low { background: var(--tl-danger); }

body.theme-treadline .actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
body.theme-treadline .act {
  font-size: 13px; font-weight: 600; padding: 10px; border-radius: 11px; cursor: pointer;
  border: 1px solid var(--tl-line); background: var(--tl-surface); color: var(--tl-ink);
}
body.theme-treadline .act.primary { background: var(--tl-ink); color: #fff; border-color: var(--tl-ink); }
body.theme-treadline .act:hover { opacity: .9; }

/* ---------------- Cart ---------------- */
body.theme-treadline .cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 18px;
  background: var(--tl-surface); border: 1px solid var(--tl-line); border-radius: 14px;
  padding: 16px 18px; margin-bottom: 10px;
}
body.theme-treadline .cart-item-info .brand-name { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--tl-muted); font-weight: 500; margin: 0; }
body.theme-treadline .cart-item-info h3 { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 600; margin: 2px 0; }
body.theme-treadline .cart-item-spec { font-size: 12.5px; color: var(--tl-muted); margin: 0; }
body.theme-treadline .cart-item-qty { display: flex; align-items: center; gap: 10px; font-family: 'IBM Plex Mono', monospace; font-weight: 600; }
body.theme-treadline .qty-btn {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--tl-line); background: var(--tl-canvas);
  color: var(--tl-ink); font-size: 15px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
body.theme-treadline .qty-btn:hover { border-color: var(--tl-accent); color: var(--tl-accent-deep); }
body.theme-treadline .cart-item-price { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; min-width: 72px; text-align: right; }
body.theme-treadline .cart-item-remove {
  width: 28px; height: 28px; border-radius: 50%; border: 0; background: transparent; color: var(--tl-muted);
  font-size: 18px; line-height: 1; cursor: pointer;
}
body.theme-treadline .cart-item-remove:hover { background: rgba(192,54,44,.1); color: var(--tl-danger); }
@media (max-width: 600px) {
  body.theme-treadline .cart-item { grid-template-columns: 1fr auto; grid-template-areas: "info remove" "qty price"; row-gap: 10px; }
  body.theme-treadline .cart-item-info { grid-area: info; }
  body.theme-treadline .cart-item-remove { grid-area: remove; justify-self: end; }
  body.theme-treadline .cart-item-qty { grid-area: qty; }
  body.theme-treadline .cart-item-price { grid-area: price; justify-self: end; }
}

/* ---------------- Checkout add-ons ---------------- */
body.theme-treadline .tl-addon-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 4px; border-bottom: 1px solid var(--tl-line); cursor: pointer;
}
body.theme-treadline .tl-addon-row:last-child { border-bottom: 0; }
body.theme-treadline .tl-addon-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--tl-accent); flex-shrink: 0; cursor: pointer; }
body.theme-treadline .tl-addon-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
body.theme-treadline .tl-addon-info strong { font-family: 'Sora', sans-serif; font-size: 14.5px; font-weight: 600; }
body.theme-treadline .tl-addon-info small { font-size: 12px; color: var(--tl-muted); line-height: 1.4; }
body.theme-treadline .tl-addon-price { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14.5px; white-space: nowrap; }
body.theme-treadline .addon-strike { text-decoration: line-through; color: var(--tl-muted); font-weight: 400; font-size: 12.5px; margin-right: 4px; }

/* ---------------- Membership member-number field ---------------- */
body.theme-treadline .tl-member-box {
  margin: var(--space-2) 0 0; padding: 14px; border-radius: 10px;
  background: rgba(255,158,0,.08); border: 1px solid rgba(255,158,0,.25);
}
body.theme-treadline .tl-member-box label { display: block; font-size: 13px; font-weight: 500; color: var(--tl-ink); margin-bottom: 8px; }
body.theme-treadline .tl-member-box label strong { font-family: 'Sora', sans-serif; }
body.theme-treadline .tl-member-field { display: flex; align-items: center; gap: 8px; }
body.theme-treadline .tl-member-field input {
  flex: 1; padding: 9px 12px; border-radius: 8px; border: 1px solid var(--tl-line);
  background: var(--tl-surface); font-family: 'IBM Plex Mono', monospace; font-size: 13px;
}
body.theme-treadline .tl-member-field input:focus { outline: none; border-color: var(--tl-accent); }
body.theme-treadline .tl-member-applied { font-size: 12px; font-weight: 700; color: var(--tl-ok); white-space: nowrap; }
body.theme-treadline .tl-member-checking { font-size: 12px; color: var(--tl-muted); white-space: nowrap; }
body.theme-treadline .tl-member-box .pricing-note { margin: 8px 0 0; }
body.theme-treadline .tl-member-box .pricing-note:last-child { opacity: .75; }
body.theme-treadline .tl-member-box .pricing-note a { color: var(--tl-accent-deep); text-decoration: underline; }

/* ---------------- Add-on vehicle-size picker (interior detailing) ---------------- */
body.theme-treadline .tl-addon-row-wrap:not(:last-child) { border-bottom: 1px solid var(--tl-line); }
body.theme-treadline .tl-addon-row-wrap .tl-addon-row { border-bottom: 0; }
body.theme-treadline .tl-addon-vehicle { display: flex; align-items: center; gap: 8px; padding: 0 4px 12px 34px; }
body.theme-treadline .tl-addon-vehicle label { font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--tl-muted); }
body.theme-treadline .tl-addon-vehicle select {
  font-size: 12.5px; padding: 5px 8px; border-radius: 6px; border: 1px solid var(--tl-line); background: var(--tl-surface); color: var(--tl-ink);
}

/* ---------------- Floating cart button ---------------- */
body.theme-treadline .floating-cart-btn {
  position: fixed; right: 20px; bottom: 20px; z-index: 400;
  display: flex; align-items: center; gap: 10px;
  background: var(--tl-accent); color: #14110B;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14.5px;
  padding: 14px 20px; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.28), 0 2px 8px rgba(0,0,0,.2);
  text-decoration: none;
  opacity: 0; visibility: hidden; transform: translateY(16px) scale(0.9);
  transition: opacity .25s ease, transform .25s cubic-bezier(.34,1.56,.64,1), visibility .25s;
}
body.theme-treadline .floating-cart-btn.is-visible {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
  animation: tlCartPop .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes tlCartPop {
  0% { transform: translateY(16px) scale(0.85); }
  55% { transform: translateY(-4px) scale(1.06); }
  100% { transform: translateY(0) scale(1); }
}
body.theme-treadline .floating-cart-btn:hover { background: var(--tl-accent-deep); }
body.theme-treadline .floating-cart-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
body.theme-treadline .floating-cart-count {
  background: #14110B; color: var(--tl-accent);
  min-width: 20px; height: 20px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; padding: 0 5px;
}
@media (max-width: 560px) {
  body.theme-treadline .floating-cart-btn span:not(.floating-cart-count) { display: none; }
  body.theme-treadline .floating-cart-btn { padding: 14px; }
}

/* ---------------- Deposit / pay-in-full choice ---------------- */
body.theme-treadline .tl-pay-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 600px) { body.theme-treadline .tl-pay-options { grid-template-columns: 1fr; } }
body.theme-treadline .tl-pay-option {
  display: flex; flex-direction: column; gap: 3px; cursor: pointer;
  padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--tl-line);
  background: var(--tl-surface); transition: border-color .15s ease, background .15s ease;
}
body.theme-treadline .tl-pay-option input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
body.theme-treadline .tl-pay-option.is-active {
  border-color: var(--tl-accent); background: rgba(255,158,0,.08);
}
body.theme-treadline .tl-pay-option-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14.5px; }
body.theme-treadline .tl-pay-option-sub { font-size: 12px; color: var(--tl-muted); line-height: 1.4; }

body.theme-treadline .tl-empty {
  background: var(--tl-surface); border: 1px solid var(--tl-line); border-radius: 16px;
  padding: 60px 24px; text-align: center;
}
body.theme-treadline .tl-empty p { margin: 0 0 6px; font-weight: 600; }
body.theme-treadline .tl-empty small { color: var(--tl-muted); }

/* ---------------- How it works ---------------- */
body.theme-treadline .how {
  background:
    radial-gradient(ellipse 900px 500px at 85% 110%, rgba(255,158,0,0.1), transparent 60%),
    var(--tl-ink);
  color: #fff;
  padding: 44px 0 48px;
}
body.theme-treadline .how h3 { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--tl-accent); margin: 0 0 24px; }
body.theme-treadline .steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
body.theme-treadline .steps li { display: flex; flex-direction: column; gap: 9px; }
body.theme-treadline .num {
  font-family: 'IBM Plex Mono', monospace; font-size: 13px; font-weight: 600;
  width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(255,206,31,.12); color: var(--tl-accent);
}
body.theme-treadline .steps strong { font-size: 16px; font-weight: 600; }
body.theme-treadline .steps span { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.6); }
body.theme-treadline .kicker {
  margin: 28px 0 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09);
  font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 600; color: rgba(255,255,255,.9);
}

@media (max-width: 760px) {
  body.theme-treadline .finder { padding: 30px 0 28px; }
  body.theme-treadline .finder h1 { font-size: 32px; }
  body.theme-treadline .tl-brand .mark { font-size: 23px; }
  body.theme-treadline .tl-brand .tag { font-size: 10.5px; padding: 5px 10px; }
  body.theme-treadline .tl-field input { width: 88px; font-size: 20px; padding: 14px 6px; }
  body.theme-treadline .finder .btn { width: 100%; margin-top: 8px; }
  body.theme-treadline .steps { grid-template-columns: 1fr; }
  body.theme-treadline .trust { font-size: 12.5px; gap: 8px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  body.theme-treadline * { transition: none !important; }
}
