/* ============================================================
   Assorted Arts — shared styles (V2c color-field system)
   Loaded by every page. Page-specific styles stay in each
   page's own <style> block. Tokens, header, footer, runners,
   breadcrumb, status pill, cursor ring, and responsive base
   all live here.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --paper:  #ffffff;
  --ink:    #0a0a0a;
  --red:    #e63946;
  --blue:   #1d4ed8;
  --yellow: #fbbf24;
  --green:  #15803d;
  --pink:   #f472b6;
  --rule:   #0a0a0a;
  --rule-w: 3px;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ---------- Typography utilities ---------- */
.display {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- HEADER ---------- */
header.top {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--paper);
  border-bottom: var(--rule-w) solid var(--ink);
}
.top .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.03em;
}
.brand .mark {
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.brand .mark::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  background: var(--yellow);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
}
nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
}
nav a:hover  { background: var(--ink); color: var(--paper); }
nav a.active { background: var(--ink); color: var(--paper); }
nav a.cta    { background: var(--red); color: var(--paper); }
nav a.cta:hover { background: var(--ink); }

/* ---------- BREADCRUMB ---------- */
.crumb {
  padding: 16px 32px;
  border-bottom: 1px solid #ddd;
  font-size: 13px;
  letter-spacing: 0.04em;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #555;
}
.crumb a:hover { color: var(--red); }
.crumb .sep { opacity: 0.4; }
.crumb .now { color: var(--ink); font-weight: 600; }

/* ---------- RUNNER (color-block section dividers) ---------- */
.runner {
  padding: 22px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 36px);
  border-bottom: var(--rule-w) solid var(--ink);
  letter-spacing: -0.02em;
}
.runner.red    { background: var(--red);    color: var(--paper); }
.runner.blue   { background: var(--blue);   color: var(--paper); }
.runner.yellow { background: var(--yellow); color: var(--ink); }
.runner.green  { background: var(--green);  color: var(--paper); }
.runner .num   { font-weight: 800; font-size: clamp(30px, 5vw, 56px); }
.runner .arrow { font-size: 1.4em; }

/* ---------- FOOTER ---------- */
footer {
  padding: 56px 32px 32px;
  background: var(--paper);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  font-size: 14px;
}
footer .colophon { max-width: 36ch; }
footer .colophon .brand-foot {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
footer h5 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
footer a {
  display: block;
  padding: 4px 0;
  color: #444;
}
footer a:hover { color: var(--red); }
footer .strip {
  grid-column: 1 / -1;
  padding-top: 32px;
  margin-top: 24px;
  border-top: var(--rule-w) solid var(--ink);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- STATUS PILL (live studio indicator) ---------- */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.status-pill .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0.7); }
  50%      { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* ---------- READING PROGRESS BAR (long-form pages only) ---------- */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--red);
  width: 0%;
  z-index: 99;
  transition: width 80ms linear;
}

/* ---------- RESPONSIVE BASE ---------- */
@media (max-width: 900px) {
  footer { grid-template-columns: 1fr 1fr; }
  .top .row { padding: 14px 20px; }
  .runner   { padding: 18px 20px; }
  footer    { padding: 40px 20px 24px; }
}

/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
  .status-pill .dot { animation: none; }
  html { scroll-behavior: auto; }
  header.top nav { transition: none; }
  .scroll-top { transition: opacity 0ms, transform 0ms; }
  .mobile-nav-toggle .bars span { transition: none; }
}

/* Hide scroll-to-top when the mobile overlay is open */
body.nav-open .scroll-top { display: none; }

/* ============================================================
   MOBILE NAV (overlay) — injected hamburger toggles body.nav-open
   ============================================================ */

/* Hide the toggle on desktop */
.mobile-nav-toggle { display: none; }

@media (max-width: 900px) {
  /* The hamburger pill */
  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 14px;
    background: var(--ink);
    color: var(--paper);
    border: 0;
    border-radius: 999px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.01em;
    cursor: pointer;
    z-index: 101;
    position: relative;
  }
  .mobile-nav-toggle .bars {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    width: 18px;
  }
  .mobile-nav-toggle .bars span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--paper);
    transition: transform 220ms cubic-bezier(.4,.1,.2,1), opacity 160ms ease;
    transform-origin: center;
  }
  body.nav-open .mobile-nav-toggle .bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  body.nav-open .mobile-nav-toggle .bars span:nth-child(2) { opacity: 0; }
  body.nav-open .mobile-nav-toggle .bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

  /* The nav becomes a full-screen overlay */
  header.top nav {
    position: fixed;
    inset: 0;
    background: var(--yellow);
    z-index: 100;
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(.2,.7,.3,1);
    padding: 88px 24px 32px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
  }
  body.nav-open header.top nav {
    transform: translateX(0);
  }
  body.nav-open { overflow: hidden; }

  header.top nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 520px;
    list-style: none;
    display: flex;
  }
  header.top nav li { width: 100%; }
  header.top nav a {
    display: block;
    padding: 22px 24px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 7vw, 44px);
    line-height: 1;
    letter-spacing: -0.02em;
    border-radius: 0;
    border: 3px solid var(--ink);
    border-top: 0;
    background: transparent;
    text-align: left;
    transition: background 180ms ease, color 180ms ease, padding-left 180ms ease;
  }
  header.top nav li:first-child a { border-top: 3px solid var(--ink); }
  header.top nav li:nth-child(1) a:hover,
  header.top nav li:nth-child(1) a:focus-visible { background: var(--red); color: var(--paper); padding-left: 36px; }
  header.top nav li:nth-child(2) a:hover,
  header.top nav li:nth-child(2) a:focus-visible { background: var(--blue); color: var(--paper); padding-left: 36px; }
  header.top nav li:nth-child(3) a:hover,
  header.top nav li:nth-child(3) a:focus-visible { background: var(--green); color: var(--paper); padding-left: 36px; }
  header.top nav li:nth-child(4) a:hover,
  header.top nav li:nth-child(4) a:focus-visible { background: var(--pink); color: var(--ink); padding-left: 36px; }
  header.top nav li:nth-child(5) a {
    background: var(--ink);
    color: var(--paper);
    margin-top: 16px;
    border: 3px solid var(--ink);
    border-radius: 999px;
    text-align: center;
  }
  header.top nav li:nth-child(5) a:hover,
  header.top nav li:nth-child(5) a:focus-visible {
    background: var(--red);
    border-color: var(--red);
    padding-left: 24px;
  }

  /* Hide the cursor ring on mobile (already hidden via hover:none but be explicit) */
}

/* ============================================================
   SCROLL-TO-TOP — floating pill, appears after scrolling 600px
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease, background 160ms ease, border-color 160ms ease;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ============================================================
   FOCUS STYLES — visible outline for keyboard navigation only
   ============================================================ */
*:focus { outline: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Inputs already have their own focus style on commission page — let that win */
.inquiry input:focus-visible,
.inquiry select:focus-visible,
.inquiry textarea:focus-visible {
  outline-offset: 2px;
}

/* ============================================================
   QUIET LAYER — small, calm enhancements only.
   ============================================================ */

/* Text selection in brand yellow */
::selection { background: var(--yellow); color: var(--ink); }

/* Soft page entrance (opacity only — layout-safe) */
body { animation: page-in 0.35s ease both; }
@keyframes page-in { from { opacity: 0; } }

/* Gentle scroll reveal */
.rvl {
  opacity: 0;
  transform: translateY(12px);
}
.rvl.in {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.45s ease var(--rd, 0ms),
    transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1) var(--rd, 0ms);
}

/* Palette remix button */
.top .row { justify-content: flex-start; gap: 16px; }
.top .row nav { margin-left: auto; }
.remix-btn {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  cursor: pointer;
  padding: 0;
  background: conic-gradient(var(--red) 0 20%, var(--yellow) 0 40%, var(--blue) 0 60%, var(--green) 0 80%, var(--pink) 0);
  transition: transform 0.35s ease;
}
.remix-btn:hover { transform: rotate(72deg); }
/* Momentary global colour transition while a new palette lands */
:root.theming *,
:root.theming *::before,
:root.theming *::after {
  transition: background-color 0.5s ease, color 0.35s ease, border-color 0.5s ease, box-shadow 0.5s ease, fill 0.5s ease !important;
}
@media (max-width: 900px) {
  /* nav is position-fixed (out of flow) on mobile, so the remix button
     carries the auto margin that pushes it + the hamburger right */
  .remix-btn { margin-left: auto; }
}

/* Hero triangle follows the live palette */
.hero .shapes .s-tri svg polygon { fill: var(--yellow); stroke: var(--ink); }

/* Reduced motion: no entrances at all */
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  .rvl { opacity: 1 !important; transform: none !important; }
  .remix-btn { transition: none; }
}

/* ============================================================
   LIGHTBOX — used by the galleries. Click any .lb to open the
   work large with a caption + enquire button. Keyboard + swipe
   friendly. Injected overlay lives at end of <body>.
   ============================================================ */
.lb-open { overflow: hidden; }
.lightbox {
  position: fixed; inset: 0; z-index: 9990;
  background: rgba(10, 10, 10, 0.92);
  display: none;
  grid-template-rows: 1fr auto;
  padding: clamp(16px, 3vw, 48px);
}
.lightbox.on { display: grid; }
.lightbox .stage {
  display: flex; align-items: center; justify-content: center;
  min-height: 0; position: relative;
}
.lightbox .stage img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  border: 3px solid var(--paper);
  background: var(--paper);
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.7);
}
.lightbox .cap {
  color: var(--paper);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding-top: 20px;
  max-width: 1100px; margin: 0 auto; width: 100%;
}
.lightbox .cap .txt h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800; font-size: clamp(20px, 3vw, 30px);
  letter-spacing: -0.02em; line-height: 1;
}
.lightbox .cap .txt .med {
  font-size: 13px; letter-spacing: 0.02em; opacity: 0.7; margin-top: 6px;
}
.lightbox .cap .txt .note {
  font-size: 13px; opacity: 0.6; margin-top: 4px; max-width: 52ch;
}
.lightbox .cap .enq {
  flex: none;
  background: var(--yellow); color: var(--ink);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800; font-size: 13px; letter-spacing: 0.02em;
  padding: 12px 20px; border-radius: 999px;
  white-space: nowrap;
}
.lightbox .enq:hover { background: var(--paper); }
.lightbox .x, .lightbox .nav {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--paper);
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; cursor: pointer; z-index: 2;
  transition: background 160ms ease, border-color 160ms ease;
  font-family: "Bricolage Grotesque", sans-serif;
}
.lightbox .x:hover, .lightbox .nav:hover { background: var(--red); border-color: var(--red); }
.lightbox .x { top: clamp(16px,3vw,48px); right: clamp(16px,3vw,48px); }
.lightbox .nav.prev { left: clamp(8px,2vw,28px); top: 50%; transform: translateY(-50%); }
.lightbox .nav.next { right: clamp(8px,2vw,28px); top: 50%; transform: translateY(-50%); }
.lightbox .count {
  position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%);
  color: var(--paper); opacity: 0.55; font-size: 12px; letter-spacing: 0.16em;
}
@media (max-width: 640px) {
  .lightbox .nav { width: 40px; height: 40px; }
  .lightbox .cap .enq { width: 100%; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox .x, .lightbox .nav { transition: none; }
}

/* ============================================================
   SHOP / CART — global (button, badge, drawer, toast)
   Injected by site.js; present on every page.
   ============================================================ */

/* Cart button in the header */
.cart-btn {
  flex: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.01em;
  transition: background 160ms ease, color 160ms ease;
}
.cart-btn:hover { background: var(--ink); color: var(--paper); }
.cart-btn .bag { font-size: 15px; line-height: 1; }
.cart-btn .cart-count {
  min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 999px;
  background: var(--red); color: var(--paper);
  border: 2px solid var(--ink);
  display: none; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; line-height: 1;
}
.cart-btn.has-items .cart-count { display: inline-flex; }
.cart-btn.bump { animation: cart-bump 0.4s cubic-bezier(.3,1.4,.4,1); }
@keyframes cart-bump { 30% { transform: scale(1.14); } }

/* Overlay + drawer */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.42);
  opacity: 0; pointer-events: none;
  transition: opacity 260ms ease;
  z-index: 9997;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw);
  background: var(--paper);
  border-left: var(--rule-w) solid var(--ink);
  z-index: 9998;
  transform: translateX(102%);
  transition: transform 320ms cubic-bezier(.2,.7,.3,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: none; }
.cart-drawer .cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: var(--rule-w) solid var(--ink);
}
.cart-drawer .cart-head h2 {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800;
  font-size: 24px; letter-spacing: -0.03em;
}
.cart-drawer .cart-close {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--ink); background: var(--paper); cursor: pointer;
  font-size: 18px; line-height: 1; font-weight: 800;
}
.cart-drawer .cart-close:hover { background: var(--ink); color: var(--paper); }
.cart-drawer .cart-body { flex: 1; overflow-y: auto; padding: 8px 24px; }

.cart-empty { text-align: center; color: #777; padding: 60px 20px; }
.cart-empty .big {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800;
  font-size: 22px; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 8px;
}
.cart-empty a {
  display: inline-block; margin-top: 18px; padding: 12px 20px; border-radius: 999px;
  background: var(--ink); color: var(--paper);
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 14px;
}

.cart-line {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 14px;
  padding: 18px 0; border-bottom: 2px solid #eee; align-items: start;
}
.cart-line .ln-thumb {
  width: 64px; height: 64px; border: 2px solid var(--ink); overflow: hidden; background: #f3f3f3;
}
.cart-line .ln-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-line .ln-title {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800;
  font-size: 15px; letter-spacing: -0.01em; line-height: 1.1;
}
.cart-line .ln-variant { font-size: 12px; color: #666; margin-top: 3px; }
.cart-line .ln-qty { display: inline-flex; align-items: center; margin-top: 10px; border: 2px solid var(--ink); border-radius: 999px; overflow: hidden; }
.cart-line .ln-qty button { width: 28px; height: 26px; border: 0; background: var(--paper); cursor: pointer; font-weight: 800; font-size: 14px; }
.cart-line .ln-qty button:hover { background: var(--yellow); }
.cart-line .ln-qty .q { width: 30px; text-align: center; font-weight: 800; font-size: 13px; border-left: 2px solid var(--ink); border-right: 2px solid var(--ink); line-height: 26px; }
.cart-line .ln-right { text-align: right; }
.cart-line .ln-price { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 15px; }
.cart-line .ln-remove { display: block; margin-top: 8px; font-size: 11px; color: #999; text-decoration: underline; cursor: pointer; background: none; border: 0; letter-spacing: 0.04em; }
.cart-line .ln-remove:hover { color: var(--red); }

.cart-foot { border-top: var(--rule-w) solid var(--ink); padding: 20px 24px 24px; }
.cart-foot .sub { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.cart-foot .sub .l { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 16px; }
.cart-foot .sub .v { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.cart-foot .ship-note { font-size: 12px; color: #777; margin-bottom: 16px; }
.cart-foot .checkout {
  display: block; width: 100%; text-align: center; cursor: pointer;
  background: var(--ink); color: var(--paper); border: var(--rule-w) solid var(--ink);
  border-radius: 999px; padding: 16px;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 15px;
  letter-spacing: 0.02em; transition: background 160ms ease;
}
.cart-foot .checkout:hover { background: var(--red); border-color: var(--red); }
.cart-foot .checkout[disabled] { opacity: 0.4; cursor: not-allowed; }
.cart-foot .cart-msg { margin-top: 12px; font-size: 12.5px; line-height: 1.5; color: #444; display: none; }
.cart-foot .cart-msg.show { display: block; }
.cart-foot .cart-msg a { color: var(--red); text-decoration: underline; }
.cart-foot .secure { text-align: center; margin-top: 12px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #999; }

/* Add-to-bag toast */
.cart-toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 20px);
  background: var(--ink); color: var(--paper);
  border-radius: 999px; padding: 13px 22px;
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 14px;
  z-index: 9999; opacity: 0; pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  display: flex; align-items: center; gap: 10px; box-shadow: 4px 4px 0 var(--red);
}
.cart-toast .dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; }
.cart-toast.show { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }

@media (prefers-reduced-motion: reduce) {
  .cart-overlay, .cart-drawer, .cart-toast, .cart-btn.bump { transition: none; animation: none; }
}
