/* ============================================================
   NYC TAILBLAZERS · 3D STUDIO  —  standalone micro-site identity
   Deliberately NOT the parent dog-tag/cinematic system.
   Blend: editorial-retail backbone + blueprint texture + playful filament color.
   Fonts: Space Grotesk (display) · Space Mono (spec/price) · Inter (body)
   ============================================================ */

:root {
  /* editorial paper base */
  --paper:   #f5f2ea;
  --paper-2: #ffffff;
  --paper-3: #ece7db;
  --ink:     #17151b;
  --ink-2:   #57535f;
  --ink-3:   #86818e;
  --line:    rgba(23,21,27,0.12);
  --line-2:  rgba(23,21,27,0.07);

  /* blueprint technical accent */
  --blue:      #2a5fd6;
  --blue-ink:  #1b3f92;
  --blue-soft: rgba(42,95,214,0.09);
  --grid:      rgba(42,95,214,0.10);

  /* playful filament pops (two bridge to the parent brand: gold + emerald) */
  --gold:   #e8a41f;
  --grape:  #7a5cff;
  --coral:  #ff6a3d;
  --bluec:  #2a5fd6;
  --mint:   #10a37f;
  --pink:   #ff478f;
  --emerald:#0d7a5f;

  --shadow:   0 24px 60px -24px rgba(23,21,27,0.35);
  --shadow-sm:0 10px 26px -14px rgba(23,21,27,0.30);

  --display: 'Space Grotesk', system-ui, sans-serif;
  --mono:    'Space Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
  --body:    'Inter', system-ui, -apple-system, sans-serif;

  --wrap: 1200px;
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  line-height: 1.65;
  background-color: var(--paper);
  /* faint build-plate dot grid */
  background-image: radial-gradient(var(--grid) 1px, transparent 1px);
  background-size: 26px 26px;
  background-position: -13px -13px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2.5px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.skip { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--ink); color: #fff; padding: 10px 18px; }
.skip:focus { left: 8px; top: 8px; border-radius: 8px; }

/* ---- type scale ---- */
h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.02; letter-spacing: -0.02em; color: var(--ink); }
.mono { font-family: var(--mono); }

/* blueprint "spec" eyebrow */
.spec {
  font-family: var(--mono);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-ink); display: inline-flex; align-items: center; gap: 10px;
}
.spec::before { content: "+"; font-weight: 700; }
.spec.plain::before { content: none; }

/* ---- buttons (chunky, playful) ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-ink   { background: var(--ink); color: var(--paper); }
.btn-ink:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(23,21,27,.6); }
.btn-blue  { background: var(--blue); color: #fff; box-shadow: 0 12px 28px -12px rgba(42,95,214,.7); }
.btn-blue:hover { transform: translateY(-3px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-3px); }

/* ============ HEADER / NAV ============ */
.tb3-announce {
  background: var(--ink); color: var(--paper); text-align: center;
  font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.06em; padding: 8px 16px;
}
.tb3-announce a { color: var(--gold); border-bottom: 1px solid rgba(232,164,31,.5); }
header.tb3 {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,242,234,0.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.tb3-nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.tb3-brand { display: flex; align-items: center; gap: 11px; }
.tb3-brand img { width: 38px; height: 38px; border-radius: 9px; }
.tb3-brand .bn { font-family: var(--display); font-weight: 700; font-size: 1.06rem; line-height: 1; color: var(--ink); }
.tb3-brand .bn small { display: block; font-family: var(--mono); font-weight: 700; font-size: 0.6rem; letter-spacing: 0.22em; color: var(--blue-ink); margin-top: 4px; }
.tb3-links { display: flex; align-items: center; gap: 26px; }
.tb3-links a { font-family: var(--display); font-weight: 500; font-size: 0.96rem; color: var(--ink-2); transition: color .2s; }
.tb3-links a:hover, .tb3-links a.here { color: var(--ink); }
.tb3-links .back { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-3); }
.tb3-links .back:hover { color: var(--blue-ink); }
.tb3-cta { background: var(--blue); color: #fff !important; padding: 9px 18px; border-radius: 100px; font-weight: 600; }
.tb3-cta:hover { transform: translateY(-2px); }
.tb3-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; }
.tb3-burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
@media (max-width: 940px) {
  .tb3-burger { display: flex; }
  .tb3-links { position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px 24px 20px;
    transform: translateY(-10px); opacity: 0; visibility: hidden; pointer-events: none; transition: .25s; }
  .tb3-links.open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .tb3-links a { padding: 13px 2px; border-bottom: 1px solid var(--line-2); }
  .tb3-cta { text-align: center; margin-top: 10px; }
}

/* ============ SECTION SCAFFOLD ============ */
section { position: relative; }
.pad { padding: clamp(56px, 8vw, 108px) 0; }
.pad-sm { padding: clamp(40px, 5vw, 64px) 0; }
.center { text-align: center; }
.sechead { max-width: 620px; margin-bottom: 40px; }
.sechead.center { margin-inline: auto; }
.sechead h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); margin: 12px 0 12px; }
.sechead p { color: var(--ink-2); font-size: 1.08rem; }

/* layer-line divider */
.layerline { height: 8px; width: 100%; background:
  repeating-linear-gradient(90deg, var(--line) 0 2px, transparent 2px 9px); opacity: .8; }

/* reveal */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: .07s; } .d2 { transition-delay: .14s; } .d3 { transition-delay: .21s; } .d4 { transition-delay: .28s; }

/* ============ HERO (hub) ============ */
.hero { padding: clamp(48px,7vw,88px) 0 clamp(40px,5vw,64px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,4vw,56px); align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); letter-spacing: -0.03em; }
.hero h1 .pop { position: relative; white-space: nowrap; }
.hero h1 .pop::after { content: ""; position: absolute; left: -2px; right: -2px; bottom: .07em; height: .28em; background: var(--gold); z-index: -1; opacity: .55; border-radius: 3px; }
.hero-lede { color: var(--ink-2); font-size: 1.14rem; max-width: 46ch; margin: 22px 0 0; }
.hero-lede b { color: var(--ink); font-weight: 600; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero-fig { position: relative; }
.hero-fig .frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); aspect-ratio: 16/10; background: var(--paper-3); }
.hero-fig .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-fig .tick { position: absolute; font-family: var(--mono); font-size: .68rem; color: var(--blue-ink); background: var(--paper); border: 1px solid var(--line); padding: 5px 10px; border-radius: 100px; box-shadow: var(--shadow-sm); }
.hero-fig .tick.t1 { top: -12px; left: 18px; }
.hero-fig .tick.t2 { bottom: -12px; right: 18px; }
/* hero spec strip */
.specstrip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 44px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--paper-2); }
.specstrip .cell { padding: 20px 22px; border-right: 1px solid var(--line); }
.specstrip .cell:last-child { border-right: none; }
.specstrip .n { font-family: var(--display); font-weight: 700; font-size: 1.9rem; line-height: 1; color: var(--ink); }
.specstrip .k { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-top: 8px; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-fig { order: -1; }
}
@media (max-width: 520px) { .specstrip { grid-template-columns: 1fr; } .specstrip .cell { border-right: none; border-bottom: 1px solid var(--line); } .specstrip .cell:last-child { border-bottom: none; } }

/* ============ TWO WAYS (ready vs custom) ============ */
.ways { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.way { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px,3.4vw,38px); position: relative; overflow: hidden; }
.way::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--blue); }
.way.b::before { background: var(--gold); }
.way .tag { font-family: var(--mono); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-ink); }
.way.b .tag { color: #9a6a00; }
.way h3 { font-size: 1.5rem; margin: 10px 0 10px; }
.way p { color: var(--ink-2); margin-bottom: 18px; }
.way ul { list-style: none; }
.way li { display: flex; gap: 11px; padding: 9px 0; border-top: 1px solid var(--line-2); font-size: .97rem; color: var(--ink); }
.way li:first-child { border-top: none; }
.way li svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 3px; color: var(--blue); }
.way.b li svg { color: var(--gold); }
.way .go { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-family: var(--display); font-weight: 600; color: var(--ink); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
@media (max-width: 760px) { .ways { grid-template-columns: 1fr; } }

/* ============ CATEGORY GRID (hub → sub-pages) ============ */
.catgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat {
  display: flex; flex-direction: column; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, border-color .25s;
}
.cat:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--ink); }
.cat .thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--paper-3); position: relative; }
.cat .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cat:hover .thumb img { transform: scale(1.05); }
.cat .accent { position: absolute; top: 12px; left: 12px; font-family: var(--mono); font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--blue); padding: 5px 10px; border-radius: 100px; }
.cat .body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.cat h3 { font-size: 1.28rem; margin-bottom: 8px; }
.cat p { color: var(--ink-2); font-size: .93rem; flex: 1; }
.cat .foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.cat .from { font-family: var(--mono); font-size: .8rem; color: var(--ink); font-weight: 700; }
.cat .arrow { display: inline-flex; align-items: center; gap: 6px; font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--blue-ink); }
/* per-category accent color driven by --c */
.cat[style] .accent { background: var(--c, var(--blue)); }
.cat[style]:hover { border-color: var(--c, var(--ink)); }
@media (max-width: 900px) { .catgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .catgrid { grid-template-columns: 1fr; } }

/* ============ PROCESS STEPS ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
.step { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; position: relative; }
.step .num { font-family: var(--mono); font-weight: 700; font-size: .82rem; color: var(--blue-ink); }
.step h3 { font-size: 1.18rem; margin: 12px 0 8px; }
.step p { color: var(--ink-2); font-size: .95rem; }
.step .ic { position: absolute; top: 22px; right: 22px; color: var(--line); }
.step .ic svg { width: 30px; height: 30px; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }

/* ============ PRODUCT GRID (sub-pages) ============ */
.subhero { padding: clamp(40px,6vw,72px) 0 clamp(26px,3vw,40px); }
.crumb { font-family: var(--mono); font-size: .76rem; color: var(--ink-3); margin-bottom: 18px; }
.crumb a { color: var(--blue-ink); }
.crumb a:hover { text-decoration: underline; }
.subhero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px,4vw,52px); align-items: center; }
.subhero h1 { font-size: clamp(2.3rem,5.2vw,3.9rem); }
.subhero .lede { color: var(--ink-2); font-size: 1.1rem; max-width: 44ch; margin-top: 18px; }
.subhero .fig { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 4/3; background: var(--paper-3); }
.subhero .fig img { width: 100%; height: 100%; object-fit: cover; }
.accent-bar { display: inline-block; height: 6px; width: 60px; border-radius: 4px; background: var(--blue); margin-bottom: 16px; }
@media (max-width: 820px) { .subhero-grid { grid-template-columns: 1fr; gap: 28px; } .subhero .fig { order: -1; } }

.prodgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prod { display: flex; flex-direction: column; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.prod:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.prod .pic { aspect-ratio: 1/1; overflow: hidden; background: var(--paper-3); }
.prod .pic img { width: 100%; height: 100%; object-fit: cover; }
.prod .info { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.prod .top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.prod h3 { font-size: 1.14rem; letter-spacing: -0.01em; }
.prod .price { font-family: var(--mono); font-weight: 700; font-size: .96rem; color: var(--ink); background: var(--paper-3); padding: 4px 10px; border-radius: 8px; white-space: nowrap; }
.prod .blurb { color: var(--ink-2); font-size: .93rem; margin: 10px 0 14px; flex: 1; }
.prod .specline { font-family: var(--mono); font-size: .7rem; letter-spacing: .04em; color: var(--ink-3); text-transform: uppercase; border-top: 1px dashed var(--line); padding-top: 12px; display: grid; gap: 4px; }
.prod .specline b { color: var(--blue-ink); font-weight: 700; }
.prod .note { font-size: .78rem; color: var(--ink-3); margin-top: 10px; font-style: italic; }
@media (max-width: 900px) { .prodgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .prodgrid { grid-template-columns: 1fr; } }

/* order-info callout */
.callout { display: flex; gap: 16px; align-items: flex-start; background: var(--blue-soft); border: 1px solid rgba(42,95,214,.2); border-left: 4px solid var(--blue); border-radius: 14px; padding: 20px 24px; color: var(--ink); }
.callout svg { width: 24px; height: 24px; flex: 0 0 auto; color: var(--blue); margin-top: 2px; }
.callout b { font-weight: 700; }

/* other-categories strip */
.otherlinks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.otherlinks a { font-family: var(--display); font-weight: 500; font-size: .9rem; padding: 9px 16px; border-radius: 100px; border: 1px solid var(--line); color: var(--ink-2); transition: .2s; }
.otherlinks a:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }

/* ============ CTA band ============ */
.cta { background: var(--ink); color: var(--paper); text-align: center; border-radius: 24px; padding: clamp(40px,6vw,72px) 24px; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px); background-size: 22px 22px; }
.cta > * { position: relative; }
.cta .spec { color: var(--gold); }
.cta h2 { color: #fff; font-size: clamp(1.9rem,4.4vw,3rem); margin: 12px 0 12px; }
.cta p { color: rgba(245,242,234,.8); max-width: 52ch; margin: 0 auto 26px; }
.cta .btn-blue { background: var(--gold); color: var(--ink); }
.cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.cta .btn-ghost:hover { border-color: #fff; }
.cta-btns { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
footer.tb3 { background: var(--paper-2); border-top: 1px solid var(--line); padding: 54px 0 28px; margin-top: 8px; }
.tb3-fgrid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.tb3-fgrid h4 { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.tb3-fgrid a { display: block; color: var(--ink-2); font-size: .92rem; margin-bottom: 9px; transition: color .2s; }
.tb3-fgrid a:hover { color: var(--blue-ink); }
.tb3-fbrand .bn { font-family: var(--display); font-weight: 700; font-size: 1.1rem; }
.tb3-fbrand p { color: var(--ink-2); font-size: .9rem; margin-top: 12px; max-width: 34ch; }
.tb3-fbot { border-top: 1px solid var(--line); margin-top: 34px; padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-family: var(--mono); font-size: .74rem; color: var(--ink-3); }
.tb3-fbot a { color: var(--blue-ink); }
@media (max-width: 820px) { .tb3-fgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .tb3-fgrid { grid-template-columns: 1fr; } }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .cat:hover .thumb img { transform: none; }
}

/* ============ CART + CHECKOUT ============ */
.prod .add-cart, .prod .quote-link { margin-top: 16px; width: 100%; justify-content: center; padding: 12px 20px; font-size: .95rem; }
.prod .add-cart.added { background: var(--mint); }
.tb3-cartbtn {
  position: fixed; right: 20px; bottom: 20px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--ink); color: var(--paper); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(23,21,27,.55); transition: transform .2s, background .2s;
}
.tb3-cartbtn:hover { transform: translateY(-3px); }
.tb3-cartbtn svg { width: 24px; height: 24px; }
.tb3-cartbtn.has-items { background: var(--blue); }
.tb3-cartcount { position: absolute; top: -4px; right: -4px; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 11px; background: var(--gold); color: var(--ink); font-family: var(--mono); font-weight: 700; font-size: .74rem; display: flex; align-items: center; justify-content: center; }
.tb3-cartoverlay { position: fixed; inset: 0; z-index: 400; background: rgba(23,21,27,.5); opacity: 0; visibility: hidden; transition: .25s; }
.tb3-cartoverlay.on { opacity: 1; visibility: visible; }
.tb3-cartdrawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 401; width: min(420px, 92vw);
  background: var(--paper); border-left: 1px solid var(--line); box-shadow: -30px 0 60px -30px rgba(0,0,0,.4);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column;
}
.tb3-cartdrawer.on { transform: none; }
.tb3-carthead { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.tb3-carthead h3 { font-size: 1.25rem; }
.tb3-cartclose { background: none; border: none; font-size: 1.9rem; line-height: 1; cursor: pointer; color: var(--ink-2); }
.tb3-cartclose:hover { color: var(--ink); }
.tb3-cartbody { flex: 1; overflow-y: auto; padding: 14px 24px; }
.tb3-cartempty { color: var(--ink-3); text-align: center; margin-top: 40px; font-size: .96rem; }
.tb3-item { padding: 16px 0; border-bottom: 1px solid var(--line-2); }
.tb3-item-top { display: flex; justify-content: space-between; gap: 10px; }
.tb3-item-name { font-family: var(--display); font-weight: 600; font-size: 1rem; }
.tb3-item-rm { background: none; border: none; font-size: 1.3rem; line-height: 1; cursor: pointer; color: var(--ink-3); }
.tb3-item-rm:hover { color: var(--coral); }
.tb3-item-mid { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.tb3-qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 100px; overflow: hidden; }
.tb3-qty button { width: 32px; height: 32px; border: none; background: var(--paper-2); cursor: pointer; font-size: 1rem; color: var(--ink); }
.tb3-qty button:hover { background: var(--paper-3); }
.tb3-qty span { min-width: 34px; text-align: center; font-family: var(--mono); font-weight: 700; font-size: .9rem; }
.tb3-item-price { font-family: var(--mono); font-weight: 700; }
.tb3-item-min { font-family: var(--mono); font-size: .68rem; color: var(--ink-3); margin-top: 6px; }
.tb3-item-note { width: 100%; margin-top: 10px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 10px; font-family: var(--body); font-size: .85rem; background: var(--paper-2); }
.tb3-cartfoot { border-top: 1px solid var(--line); padding: 18px 24px 24px; }
.tb3-cartmsg { background: rgba(255,106,61,.12); border: 1px solid rgba(255,106,61,.3); color: #b3401d; border-radius: 10px; padding: 10px 14px; font-size: .85rem; margin-bottom: 14px; }
.tb3-cartrow { display: flex; justify-content: space-between; align-items: baseline; }
.tb3-cartrow strong { font-family: var(--display); font-size: 1.4rem; }
.tb3-cartnote { font-size: .76rem; color: var(--ink-3); margin: 8px 0 16px; }
.tb3-checkout { width: 100%; justify-content: center; padding: 15px; }
.tb3-checkout:disabled { opacity: .5; cursor: not-allowed; transform: none; }
@media (max-width: 520px) { .tb3-cartbtn { width: 52px; height: 52px; right: 14px; bottom: 14px; } }
