/* ==========================================================================
   Chaffery — shopper app
   ========================================================================== */

#view { display: block; min-height: 70vh; outline: none; }

/* Only a slow first load ever shows this (see app.js). */
.boot { display: grid; place-items: center; min-height: 60vh; animation: fade-in var(--t-4) var(--ease-out) both; }

/* ── Site banner (announcement from the admin) ──────────────────────────── */

.site-banner { background: var(--bg-2); box-shadow: inset 0 -1px 0 var(--line); }
.site-banner__inner { display: flex; align-items: center; gap: 12px; min-height: 40px; padding-block: 8px; }
.site-banner__text { flex: 1; text-align: center; font: 400 13.5px/1.4 var(--font-text); color: var(--ink-2); }
.site-banner__close { flex: none; color: var(--ink-3); }
.site-banner__close:hover { color: var(--ink); }

/* ── Navigation ─────────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--overlay);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 transparent;
  transition: box-shadow var(--t-3) var(--ease-out), background-color var(--t-3);
}
.nav.is-scrolled { box-shadow: 0 1px 0 var(--line); }
.nav__inner { display: flex; align-items: center; gap: 32px; height: 100%; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 600 19px/1 var(--font-display);
  letter-spacing: -0.03em;
  color: var(--ink);
}
.brand svg { flex: none; }
/* Test and development sites: a quiet label next to the brand, never on live. */
.nav__env { flex: none; height: 20px; margin-left: -20px; padding: 0 8px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); cursor: default; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 8px 12px;
  border-radius: var(--r-pill);
  font: 400 14.5px/1 var(--font-text);
  color: var(--ink-2);
  white-space: nowrap;
  transition: color var(--t-2), background-color var(--t-2);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a[aria-current="page"] { color: var(--ink); font-weight: 500; }

.nav__tools { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 224px;
  height: 36px;
  margin-right: 8px;
  padding: 0 8px 0 12px;
  border-radius: var(--r-pill);
  background: var(--bg-3);
  color: var(--ink-3);
  font: 400 14px/1 var(--font-text);
  transition: background-color var(--t-2), color var(--t-2);
}
.nav__search:hover { background: var(--bg-4); color: var(--ink-2); }
.nav__search span { flex: 1; text-align: left; }
.nav__search .kbd { box-shadow: none; background: var(--bg); font-size: 11px; }
.nav__only-mobile { display: none; }
.nav__avatar { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; transition: transform var(--t-2) var(--ease-out); }
.nav__avatar:active { transform: scale(0.94); }
.nav__avatar .avatar { --size: 30px; background: var(--ink); color: var(--bg); }
.nav__badge {
  position: absolute;
  top: 5px;
  right: 4px;
  display: grid;
  place-items: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--on-accent);
  font: 600 10.5px/1 var(--font-text);
  font-style: normal;
  box-shadow: 0 0 0 2px var(--bg);
}

.tabbar { display: none; }

@media (max-width: 1120px) {
  .nav__search { width: 40px; padding: 0; justify-content: center; background: none; margin: 0; }
  .nav__search span, .nav__search .kbd { display: none; }
  .nav__search svg { width: 20px; height: 20px; color: var(--ink); }
  .nav__inner { gap: 16px; }
  .nav__env { margin-left: -8px; }
}

@media (max-width: 880px) {
  .nav__links, .nav__hide-mobile, .nav__search { display: none; }
  .nav__only-mobile { display: inline-grid; }
  .tabbar {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 200;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
    background: var(--overlay);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 -1px 0 var(--line);
  }
  .tabbar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 2px;
    border-radius: 12px;
    font: 500 10.5px/1.2 var(--font-text);
    color: var(--ink-3);
    transition: color var(--t-2), transform var(--t-2) var(--ease-out);
  }
  .tabbar__item:active { transform: scale(0.94); }
  .tabbar__item[aria-current="page"] { color: var(--ink); }
  .tabbar__icon { position: relative; display: grid; }
  .tabbar__icon .nav__badge { top: -4px; right: -8px; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .toasts { top: auto; bottom: calc(84px + env(safe-area-inset-bottom)); }
  .toast { transform: translateY(14px) scale(0.96); }
}

/* ── Footer ─────────────────────────────────────────────────────────────── */

.footer { margin-top: var(--s-24); padding: var(--s-16) 0 var(--s-12); background: var(--bg-2); }
.footer__top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.footer__brand p { max-width: 30ch; margin-top: 14px; font: 400 14.5px/1.5 var(--font-text); color: var(--ink-3); }
.footer__col h3 { font: 600 13px/1.3 var(--font-text); color: var(--ink); }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.footer__col a { font: 400 14px/1.3 var(--font-text); color: var(--ink-2); transition: color var(--t-2); }
.footer__col a:hover { color: var(--ink); }
.footer__bottom { margin-top: 48px; padding-top: 24px; box-shadow: inset 0 1px 0 var(--line); }
.footer__bottom p { max-width: 78ch; font: 400 13px/1.5 var(--font-text); color: var(--ink-3); }
.footer__meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 20px; font: 400 13px/1 var(--font-text); color: var(--ink-3); }
.footer__meta .select { height: 36px; background: transparent; font-size: 13.5px; }
@media (max-width: 760px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ── Sections & heads ───────────────────────────────────────────────────── */

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section + .section { padding-top: 0; }
.section--tint { background: var(--bg-2); padding-top: clamp(56px, 8vw, 104px) !important; }
.section--tint + .section { padding-top: clamp(56px, 8vw, 104px); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(24px, 3vw, 40px); }
.section-head .link-arrow { flex: none; padding-bottom: 4px; }

.page { padding: clamp(28px, 4vw, 56px) 0 0; }
.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(24px, 3vw, 40px); }
.page-head--stack { flex-direction: column; align-items: flex-start; gap: 12px; }
.page-head--stack .t-lead { max-width: 56ch; }

.crumbs { display: flex; align-items: center; gap: 6px; margin-bottom: 24px; font: 400 13.5px/1 var(--font-text); color: var(--ink-3); }
.crumbs a { transition: color var(--t-2); }
.crumbs a:hover { color: var(--ink); }
.crumbs svg { color: var(--ink-4); }

.live-dot { position: relative; flex: none; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--ink-4); }
.live-dot.is-on { background: var(--accent-vivid); }

/* ── Hero ───────────────────────────────────────────────────────────────── */

.hero { padding: clamp(48px, 8vw, 112px) 0 0; overflow: hidden; }
.hero__lead { max-width: 34em; margin: 22px auto 0; }
.hero__cta { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: 36px; flex-wrap: wrap; }

.hd {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(40px, 6vw, 72px);
  padding: clamp(18px, 2.4vw, 32px);
  border-radius: var(--r-2xl);
  background: var(--bg-2);
}
.hd__product { display: flex; flex-direction: column; gap: 18px; }
.hd__tile { aspect-ratio: 1 / 1; border-radius: var(--r-xl); }
.hd__info { display: flex; flex-direction: column; gap: 2px; padding: 0 4px; }
.hd__name { font: 500 16px/1.3 var(--font-text); letter-spacing: -0.014em; }
.hd__price { display: flex; align-items: baseline; gap: 8px; margin-top: 6px; }
.hd__price b { font: 600 26px/1.1 var(--font-display); letter-spacing: -0.025em; font-variant-numeric: tabular-nums; }
.hd__price span { font-size: 13px; color: var(--ink-3); }
.hd__stage { display: flex; flex-direction: column; min-width: 0; }
.hd__chart { position: relative; flex: 1; min-height: 300px; }
.hd__chart > svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.hd__tick { font: 400 11.5px/1 var(--font-text); fill: var(--ink-3); font-variant-numeric: tabular-nums; }
.hd__pulse { animation: pulse-ring 1.8s var(--ease-out) infinite; }

.hd__target {
  position: absolute;
  left: 0;
  right: 0;
  height: 44px;
  margin-top: -22px;
  display: flex;
  align-items: center;
  cursor: ns-resize;
  touch-action: none;
  transition: top var(--t-2) var(--ease-out);
}
.hd.is-dragging .hd__target { transition: none; }
.hd__rule { flex: 1; height: 0; border-top: 2px dashed var(--accent-vivid); opacity: 0.9; }
.hd__label {
  position: absolute;
  left: 0;
  bottom: 30px;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  font: 500 12.5px/1 var(--font-text);
  color: var(--accent);
  white-space: nowrap;
  pointer-events: none;
}
.hd__label b { font: 600 14px/1 var(--font-text); font-variant-numeric: tabular-nums; }
.hd__handle {
  flex: none;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--surface-raised);
  color: var(--accent);
  box-shadow: var(--shadow-knob);
  cursor: ns-resize;
  transition: transform var(--t-2) var(--ease-out);
}
.hd__target:hover .hd__handle { transform: scale(1.08); }
.hd.is-dragging .hd__handle { transform: scale(1.18); }

.hd__notice {
  position: absolute;
  top: 0;
  right: 56px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: min(300px, calc(100% - 64px));
  padding: 12px 14px 13px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-raised) 88%, transparent);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--shadow-3);
  font: 400 13px/1.4 var(--font-text);
  color: var(--ink-2);
  opacity: 0;
  transform: translateY(-12px) scale(0.96);
  transform-origin: top right;
  transition: opacity var(--t-3) var(--ease-out), transform var(--t-4) var(--ease-spring);
  pointer-events: none;
}
.hd__notice.is-in { opacity: 1; transform: none; }
.hd__notice strong { font: 600 14px/1.3 var(--font-text); color: var(--ink); }
.hd__notice-app { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; font: 500 11.5px/1 var(--font-text); color: var(--ink-3); }
.hd__notice-app time { margin-left: auto; font-weight: 400; }

.hd__foot { display: flex; align-items: center; gap: 16px; margin-top: 14px; min-height: 36px; font: 400 13px/1.3 var(--font-text); color: var(--ink-3); }
.hd__legend { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.hd__key { display: inline-block; width: 16px; height: 0; border-top: 2.5px solid var(--ink); border-radius: 2px; }
.hd__key--target { margin-left: 10px; border-top: 2px dashed var(--accent-vivid); }
.hd__hint { flex: 1; text-align: right; color: var(--ink-2); }
.hd.is-met .hd__hint { color: var(--accent); font-weight: 500; }

@media (max-width: 860px) {
  .hd { grid-template-columns: 1fr; }
  .hd__product { flex-direction: row; align-items: center; }
  .hd__tile { width: 96px; border-radius: 20px; }
  .hd__chart { min-height: 260px; }
  .hd__foot { flex-wrap: wrap; }
  .hd__legend { display: none; }
  .hd__hint { text-align: left; }
}

/* ── Grids ──────────────────────────────────────────────────────────────── */

.pgrid { display: grid; gap: clamp(28px, 3vw, 44px) clamp(14px, 2vw, 28px); }
.pgrid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1040px) { .pgrid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 720px) { .pgrid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .pcard__tile { border-radius: 20px; } .pcard__title { font-size: 15px; } }

.pcard__tile > .photo { transition: transform 900ms var(--ease-out); }
.pcard:hover .pcard__tile > .photo { transform: scale(1.045); }

.watch-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.watch {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: var(--r-xl);
  background: var(--bg-2);
  transition: background-color var(--t-2), transform var(--t-3) var(--ease-out);
}
.watch:hover { background: var(--bg-3); }
.watch:active { transform: scale(0.985); }
.watch.is-met { background: var(--accent-soft); }
.watch__tile { flex: none; width: 92px; height: 92px; border-radius: 20px; }
.watch__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.watch__title { font: 500 15px/1.3 var(--font-text); letter-spacing: -0.012em; }
.watch__line { font: 400 13.5px/1.3 var(--font-text); color: var(--ink-2); display: flex; align-items: center; gap: 4px; }
.watch__line span { display: inline-flex; align-items: center; gap: 4px; }
.watch__ends { display: flex; justify-content: space-between; font: 400 12px/1 var(--font-text); color: var(--ink-3); font-variant-numeric: tabular-nums; }
@media (max-width: 960px) { .watch-grid { grid-template-columns: 1fr; } }

.cat-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 14px; }
.cat { display: flex; flex-direction: column; gap: 12px; text-align: center; }
.cat__tile { aspect-ratio: 1 / 1; border-radius: 24px; background: var(--bg); }
:root[data-theme="dark"] .cat__tile { background: var(--bg-3); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .cat__tile { background: var(--bg-3); } }
.cat__tile svg, .cat__tile .photo { transition: transform 700ms var(--ease-out); }
.cat:hover .cat__tile svg, .cat:hover .cat__tile .photo { transform: scale(1.07); }
.cat__name { font: 500 14px/1.3 var(--font-text); }
@media (max-width: 960px) {
  .cat-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scrollbar-width: none; }
  .cat-grid::-webkit-scrollbar { display: none; }
  .cat { flex: none; width: 128px; scroll-snap-align: start; }
}

.drop-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; }
.drop { display: flex; align-items: center; gap: 16px; padding: 14px 0; box-shadow: inset 0 -1px 0 var(--line); transition: opacity var(--t-2); }
.drop:hover .drop__title { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-3); }
.drop__tile { flex: none; width: 64px; height: 64px; border-radius: 16px; }
.drop__title { display: block; font: 500 15px/1.3 var(--font-text); }
.drop__meta { display: block; margin-top: 2px; font: 400 13px/1.3 var(--font-text); color: var(--ink-3); }
.drop__price { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; font: 400 15px/1.2 var(--font-text); }
@media (max-width: 860px) { .drop-list { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .drop .pill { display: none; } }

.how-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.how-card { position: relative; display: flex; flex-direction: column; gap: 10px; padding: 20px 24px 28px; border-radius: var(--r-xl); background: var(--bg); }
:root[data-theme="dark"] .how-card { background: var(--bg-3); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .how-card { background: var(--bg-3); } }
.how-card__n { margin-top: 12px; font: 600 13px/1 var(--font-text); color: var(--ink-3); }
.how-art { display: grid; place-items: center; height: 168px; margin: 0 -4px; border-radius: 20px; background: var(--bg-2); }
.how-art--pick { grid-template-columns: repeat(3, 72px); gap: 10px; place-content: center; }
.how-art--pick .tile { width: 72px; height: 72px; border-radius: 18px; }
.how-art--pick .tile:nth-child(2) { transform: translateY(-10px) scale(1.12); box-shadow: var(--shadow-2); z-index: 1; }
.how-art--price { grid-template-rows: auto auto auto; gap: 10px; place-content: center; text-align: center; }
.how-art--price b { font: 600 34px/1 var(--font-display); letter-spacing: -0.03em; }
.how-art__track { position: relative; display: block; width: 168px; height: 4px; border-radius: 2px; background: var(--bg-4); }
.how-art__track::before { content: ""; position: absolute; inset: 0 40% 0 0; border-radius: inherit; background: var(--ink); }
.how-art__track i { position: absolute; left: 60%; top: 50%; width: 22px; height: 22px; margin: -11px 0 0 -11px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-knob); }
.how-art--price small { font: 500 12.5px/1 var(--font-text); color: var(--ink-3); }
.how-alert { display: flex; flex-direction: column; gap: 3px; width: min(250px, 84%); padding: 14px 16px; border-radius: 18px; background: var(--surface-raised); box-shadow: var(--shadow-2); text-align: left; }
.how-art__app { display: inline-flex; align-items: center; gap: 5px; font: 500 11.5px/1 var(--font-text); color: var(--ink-3); margin-bottom: 4px; }
.how-alert b { font: 600 14px/1.3 var(--font-text); }
.how-alert small { font: 400 13px/1.35 var(--font-text); color: var(--ink-2); }
@media (max-width: 860px) { .how-grid { grid-template-columns: 1fr; } }

.store-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.store-card { display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: var(--r-lg); box-shadow: inset 0 0 0 1px var(--line); transition: box-shadow var(--t-2), background-color var(--t-2); }
.store-card:hover { box-shadow: inset 0 0 0 1px var(--line-2); background: var(--bg-2); }
.store-card__name { display: block; font: 500 15.5px/1.3 var(--font-text); }
.store-card__meta { display: block; font: 400 13px/1.3 var(--font-text); color: var(--ink-3); }
@media (max-width: 860px) { .store-grid { grid-template-columns: 1fr; } }

.seller-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(32px, 5vw, 64px);
  border-radius: var(--r-2xl);
  background: var(--ink);
  color: var(--bg);
}
.seller-cta .t-lead { color: color-mix(in srgb, var(--bg) 66%, transparent); max-width: 40ch; }
.seller-cta__btn { flex: none; background: var(--bg); color: var(--ink); }
.seller-cta__btn:hover { background: color-mix(in srgb, var(--bg) 88%, var(--ink)); }
@media (max-width: 860px) { .seller-cta { flex-direction: column; align-items: flex-start; } }

/* ── Browse ─────────────────────────────────────────────────────────────── */

.browse__search { width: min(360px, 100%); }
.browse__search .input { height: 44px; border-radius: var(--r-pill); background: var(--bg-3); box-shadow: none; }
.browse__search .input:focus { box-shadow: inset 0 0 0 2px var(--ink); background: var(--bg); }
.filters {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 calc(var(--gutter) * -1);
  padding: 12px var(--gutter);
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--overlay);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.filters::-webkit-scrollbar { display: none; }
.filters .chip { flex: none; }
.browse__count { display: flex; align-items: center; justify-content: space-between; margin: 12px 0 24px; font: 400 14px/1.3 var(--font-text); color: var(--ink-3); }
.price-pop { width: 280px; }
.price-pop__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.popover--flush { padding: 0; }

/* ── Product page ───────────────────────────────────────────────────────── */

.product__grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.product__gallery { position: sticky; top: calc(var(--nav-h) + 24px); }
.product__stage { aspect-ratio: 1 / 1; border-radius: var(--r-2xl); }
.product__stage > svg, .product__stage > .photo { transition: opacity 140ms var(--ease-out), transform 420ms var(--ease-out); }
.product__stage.is-swapping > svg, .product__stage.is-swapping > .photo { opacity: 0; transform: scale(0.97); }
/* Up to eight photos: the strip scrolls sideways; the padding keeps the selection ring from being clipped. */
.product__thumbs { display: flex; gap: 10px; margin: 8px -4px 0; padding: 4px; overflow-x: auto; scrollbar-width: none; }
.product__thumbs::-webkit-scrollbar { display: none; }
.product__thumb { flex: none; width: 72px; height: 72px; border-radius: 18px; opacity: 0.6; transition: opacity var(--t-2), box-shadow var(--t-2), transform var(--t-2) var(--ease-out); }
.product__thumb:hover, .product__thumb:focus-visible { opacity: 1; }
.product__thumb:active { transform: scale(0.95); }
.product__thumb[aria-current="true"] { opacity: 1; box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--ink); }

.product__store { display: inline-flex; align-items: center; gap: 9px; font: 500 14.5px/1 var(--font-text); color: var(--ink-2); transition: color var(--t-2); }
.product__store:hover { color: var(--ink); }
.verified { display: inline-grid; color: var(--accent); }
.product__title { margin-top: 14px; font: 600 clamp(30px, 3.4vw, 44px) / 1.08 var(--font-display); letter-spacing: -0.03em; }
.product__price-row { display: flex; align-items: center; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.product__price { font: 500 28px/1.1 var(--font-display); letter-spacing: -0.02em; }
.product__verified { display: flex; align-items: center; gap: 8px; margin-top: 8px; font: 400 13px/1.3 var(--font-text); color: var(--ink-3); }
.product__options { margin-top: 28px; }
.product__option-label { font: 400 14.5px/1 var(--font-text); }
.swatches { display: flex; gap: 10px; margin-top: 12px; }
.swatch { position: relative; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; transition: box-shadow var(--t-2) var(--ease-out), transform var(--t-2) var(--ease-out); }
.swatch:active { transform: scale(0.92); }
.swatch__dot { width: 30px; height: 30px; border-radius: 50%; background: var(--swatch); box-shadow: inset 0 0 0 1px var(--line-2); }
.swatch[aria-checked="true"] { box-shadow: inset 0 0 0 2px var(--ink); }
.swatch.is-out .swatch__dot { opacity: 0.35; }
.swatch.is-out::after { content: ""; position: absolute; width: 34px; height: 1.5px; background: var(--ink-3); transform: rotate(-45deg); }
.swatch__mark { position: absolute; top: 1px; right: 1px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent-vivid); box-shadow: 0 0 0 2px var(--bg); }
/* Options without a colour (sizes, bundles, "Red / Large"…) are named chips; long lists become a menu. */
.options { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.option { position: relative; max-width: 100%; }
.option > span { overflow: hidden; text-overflow: ellipsis; }
.option.is-out:not(.is-active) { color: var(--ink-3); text-decoration: line-through; text-decoration-color: var(--line-3); }
.option__mark { position: absolute; top: -2px; right: -2px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent-vivid); box-shadow: 0 0 0 2px var(--bg); }
.product__option-menu { width: 100%; height: 44px; margin-top: 12px; }

.seller-note { margin-top: 24px; padding: 16px 18px; border-radius: var(--r-md); background: var(--bg-2); }
.seller-note blockquote { font: 500 16px/1.4 var(--font-text); letter-spacing: -0.012em; }
.seller-note figcaption { display: flex; align-items: center; gap: 8px; margin-top: 10px; font: 400 13px/1.3 var(--font-text); color: var(--ink-3); }

.product__module { margin-top: 24px; border-radius: var(--r-xl); box-shadow: inset 0 0 0 1px var(--line-2); overflow: hidden; transition: height 420ms var(--ease-sheet); }
.product__module--bare { margin: 0; box-shadow: none; border-radius: 0; overflow: visible; }
.product__module--bare .tm { padding: 0; }
.product__module.is-morphing .tm { animation: fade-in 360ms var(--ease-out) both; }
#buy-block { margin-top: 12px; }
.product__meta { display: flex; justify-content: center; margin-top: 16px; }
.waiting { display: inline-flex; align-items: center; gap: 8px; font: 400 13.5px/1 var(--font-text); color: var(--ink-3); }

/* target module */
.tm { display: flex; flex-direction: column; padding: 24px; }
.tm__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 34px; }
.tm__amount { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; }
.tm__field { flex: 1; display: flex; align-items: baseline; justify-content: center; gap: 4px; min-width: 0; cursor: text; }
.tm__symbol { font: 500 28px/1 var(--font-display); color: var(--ink-3); }
.tm__amount.is-suffix .tm__symbol { order: 2; }
.tm__input {
  width: 3ch;
  min-width: 1ch;
  max-width: 100%;
  padding: 0;
  font: 600 56px/1.05 var(--font-display);
  letter-spacing: -0.04em;
  text-align: center;
  font-variant-numeric: tabular-nums;
  caret-color: var(--accent-vivid);
  border-radius: 8px;
}
.tm__delta { margin-top: 6px; text-align: center; font: 400 14px/1.3 var(--font-text); color: var(--ink-3); font-variant-numeric: tabular-nums; }
.tm .slider { margin-top: 14px; }
.tm__scale { display: flex; justify-content: space-between; font: 400 12px/1 var(--font-text); color: var(--ink-3); font-variant-numeric: tabular-nums; }
.tm__chips { display: flex; gap: 6px; margin-top: 18px; flex-wrap: wrap; }
.tm__chips .chip { flex: 1; justify-content: center; font-variant-numeric: tabular-nums; }
.tm__insight { display: flex; align-items: center; gap: 8px; min-height: 40px; margin: 16px 0; padding: 10px 14px; border-radius: 12px; background: var(--bg-2); font: 400 13.5px/1.4 var(--font-text); color: var(--ink-2); }
.tm__insight::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--ink-4); transition: background-color var(--t-3); }
.tm__insight[data-tone="good"]::before { background: var(--accent-vivid); }
.tm__insight[data-tone="ok"]::before { background: var(--warn-vivid); }
.tm__fine { display: flex; align-items: flex-start; justify-content: center; gap: 8px; margin-top: 14px; font: 400 12.5px/1.45 var(--font-text); color: var(--ink-3); text-align: left; }
.tm__fine svg { flex: none; margin-top: 1px; }

.tm__big { margin-top: 6px; font: 600 52px/1.05 var(--font-display); letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.tm__gap { margin: 4px 0 18px; font: 400 15px/1.3 var(--font-text); color: var(--ink-2); }
.tm__ends { display: flex; justify-content: space-between; margin-top: 8px; font: 400 12.5px/1 var(--font-text); color: var(--ink-3); font-variant-numeric: tabular-nums; }
.tm__rows { margin-top: 18px; box-shadow: inset 0 1px 0 var(--line); }
.tm__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 52px; box-shadow: inset 0 -1px 0 var(--line); font: 400 14.5px/1.3 var(--font-text); cursor: default; }
label.tm__row { cursor: pointer; }
.tm__row > span:first-child { display: inline-flex; align-items: center; gap: 10px; }
.tm__row svg { color: var(--ink-3); }
.tm__actions { display: flex; gap: 8px; margin-top: 18px; }

.tm--met { align-items: center; gap: 10px; text-align: center; background: var(--accent-soft); }
.tm__check { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--accent-vivid); color: #fff; animation: pop 520ms var(--ease-spring) both; }
.tm--met .btn { margin-top: 10px; }
.tm__after { display: flex; gap: 20px; margin-top: 6px; color: var(--ink-2); }
@keyframes pop { from { transform: scale(0.4); opacity: 0; } }
.tm--expired .t-callout { margin: 8px 0 0; }
.tm--paused { align-items: flex-start; gap: 8px; color: var(--ink-3); }
.tm--paused h2 { color: var(--ink); }
.tm__paused-action { margin-top: 8px; }

.product__lower { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); margin-top: clamp(56px, 8vw, 104px); align-items: start; }
.product__lower--single { grid-template-columns: minmax(0, 1fr); max-width: 720px; }
/* The store's own words: line breaks are theirs too. Long texts fold to a few lines. */
.product__desc { white-space: pre-line; overflow-wrap: anywhere; }
.product__desc.is-clamped { display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }
.product__more { margin-top: 12px; }
.product__report { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; font: 400 13.5px/1 var(--font-text); color: var(--ink-3); transition: color var(--t-2); }
.product__report:hover { color: var(--ink); }
.product__history { padding: 24px; }
.history-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0 8px; }
.history-stats dt { font: 400 12.5px/1.3 var(--font-text); color: var(--ink-3); }
.history-stats dd { margin-top: 4px; font: 600 19px/1.2 var(--font-display); letter-spacing: -0.018em; }
.history-skeleton { height: 220px; border-radius: var(--r-md); }
.history-quiet { display: grid; place-items: center; height: 220px; padding: 0 24px; text-align: center; font: 400 14px/1.45 var(--font-text); color: var(--ink-3); }

@media (max-width: 900px) {
  .product__grid, .product__lower { grid-template-columns: 1fr; }
  .product__gallery { position: static; }
  .product__stage { border-radius: var(--r-xl); }
  .tm__input { font-size: 48px; }
}

.buy-sheet__url { display: flex; align-items: center; gap: 10px; height: 44px; padding: 0 14px; border-radius: 12px; background: var(--bg-2); font: 400 14px/1 var(--font-mono); color: var(--ink-2); }
.buy-sheet__url svg { flex: none; color: var(--accent); }
.buy-sheet__list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.buy-sheet__list li { display: flex; gap: 12px; font: 400 14.5px/1.45 var(--font-text); color: var(--ink-2); }
.buy-sheet__list svg { flex: none; color: var(--ink-3); }

.report-done { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 0 8px; text-align: center; }
.report-done__check { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 8px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); animation: pop 520ms var(--ease-spring) both; }

/* ── Auth ───────────────────────────────────────────────────────────────── */

.auth__fine { display: flex; align-items: flex-start; gap: 8px; margin-top: 16px; font: 400 12.5px/1.45 var(--font-text); color: var(--ink-3); }
.auth__fine svg { flex: none; margin-top: 1px; }
.auth__status { min-height: 22px; margin-top: 16px; text-align: center; font: 400 13.5px/1.4 var(--font-text); color: var(--ink-3); }
.auth__note { margin-top: 16px; padding: 12px 14px; border-radius: 12px; background: var(--bg-2); font: 400 13.5px/1.45 var(--font-text); color: var(--ink-2); }
.auth__checking { display: inline-flex; align-items: center; gap: 8px; }
.auth__links { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 20px; }
.auth__links .link[disabled] { color: var(--ink-3); text-decoration: none; cursor: default; font-variant-numeric: tabular-nums; }
/* One field for all six digits: typing, pasting and the phone's code suggestion all land here. */
.code-input {
  height: 64px;
  padding-left: calc(16px + 0.4em); /* the tracking after the last digit would otherwise pull the code off-centre */
  font: 600 28px/1 var(--font-display);
  letter-spacing: 0.4em;
  text-align: center;
  font-variant-numeric: tabular-nums;
  caret-color: var(--accent-vivid);
}
.code-input::placeholder { color: var(--ink-4); }
.code-input:read-only { color: var(--ink-3); }

/* ── Targets ────────────────────────────────────────────────────────────── */

.tgroup { margin-top: 36px; }
.tgroup__title { display: flex; align-items: center; gap: 8px; margin: 36px 0 6px; font: 600 15px/1.3 var(--font-text); }
.tgroup .tgroup__title { margin-top: 0; }
.tgroup__title span { font-weight: 400; color: var(--ink-3); }
.tgroup__hint { margin-bottom: 4px; }
.tlist { display: flex; flex-direction: column; }
.trow { display: grid; grid-template-columns: 84px minmax(0, 1.1fr) minmax(0, 1.2fr) auto; gap: 20px; align-items: center; padding: 18px 0; box-shadow: inset 0 -1px 0 var(--line); }
.trow__tile { width: 84px; height: 84px; border-radius: 20px; }
.trow__main { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.trow__title { font: 500 16px/1.3 var(--font-text); letter-spacing: -0.012em; }
.trow__title:hover { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-3); }
.trow__sub { display: inline-flex; align-items: center; gap: 4px; font: 400 13.5px/1.35 var(--font-text); color: var(--ink-3); }
.trow__price { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.trow__figures { display: flex; align-items: flex-end; gap: 12px; }
.trow__figures span { display: flex; flex-direction: column; gap: 3px; }
.trow__figures small { font: 400 11.5px/1 var(--font-text); color: var(--ink-3); }
.trow__figures b { font: 600 16px/1 var(--font-text); }
.trow__figures svg { margin-bottom: 1px; }
.trow__meta { font: 400 13px/1.3 var(--font-text); color: var(--ink-2); }
.trow__side { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.trow.is-closed .trow__tile, .trow.is-closed .trow__figures { opacity: 0.55; }
.targets__fine { display: flex; align-items: flex-start; gap: 8px; margin-top: 32px; font: 400 13px/1.5 var(--font-text); color: var(--ink-3); }
.targets__fine svg { flex: none; margin-top: 2px; }
@media (max-width: 820px) {
  .trow { grid-template-columns: 72px minmax(0, 1fr); gap: 12px 16px; }
  .trow__tile { width: 72px; height: 72px; border-radius: 18px; }
  .trow__price, .trow__side { grid-column: 1 / -1; }
  .trow__side { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ── Notifications ──────────────────────────────────────────────────────── */

.nlist { display: flex; flex-direction: column; }
.nrow { position: relative; display: flex; align-items: center; gap: 16px; padding: 16px 12px; margin: 0 -12px; border-radius: var(--r-md); transition: background-color var(--t-1); }
.nrow:hover { background: var(--bg-2); }
.nrow + .nrow::before { content: ""; position: absolute; inset: 0 12px auto 84px; height: 1px; background: var(--line); }
.nrow:hover::before, .nrow:hover + .nrow::before { opacity: 0; }
.nrow__art { flex: none; width: 56px; height: 56px; border-radius: 14px; }
.nrow__art--icon { display: grid; place-items: center; background: var(--bg-3); color: var(--ink-2); }
.nrow__title { display: flex; align-items: center; gap: 6px; font: 500 15px/1.35 var(--font-text); }
.nrow.is-unread .nrow__title { font-weight: 600; }
.nrow__text { display: block; margin-top: 2px; font: 400 14px/1.45 var(--font-text); color: var(--ink-2); }
.nrow__time { display: block; margin-top: 4px; font: 400 12.5px/1 var(--font-text); color: var(--ink-3); }
.nrow__dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-vivid); }
.nrow--compact { padding: 12px; margin: 0; gap: 12px; }
.nrow--compact .nrow__art { width: 44px; height: 44px; border-radius: 12px; }
.nrow--compact .nrow__title { font-size: 14px; }
.nrow--compact .nrow__text { font-size: 13px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nrow--compact + .nrow--compact::before { inset: 0 12px auto 68px; }

.peek { width: min(384px, calc(100vw - 24px)); }
.peek__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px 8px; }
.peek__list { padding: 0 6px; }
.peek__all { display: flex; justify-content: center; padding: 14px; margin-top: 4px; box-shadow: inset 0 1px 0 var(--line); }
.peek .empty { padding: 28px 24px; }
.peek .empty__art { width: 72px; height: 72px; }
.peek .empty__title { font-size: 16px; }
.peek .empty__text { font-size: 13.5px; }

/* ── Settings ───────────────────────────────────────────────────────────── */

.settings { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 56px; align-items: start; }
.settings__nav { position: sticky; top: calc(var(--nav-h) + 24px); display: flex; flex-direction: column; gap: 2px; }
.settings__nav a { padding: 9px 12px; border-radius: 10px; font: 400 14.5px/1.2 var(--font-text); color: var(--ink-2); transition: background-color var(--t-1), color var(--t-1); }
.settings__nav a:hover { color: var(--ink); }
.settings__nav a.is-active { background: var(--bg-3); color: var(--ink); font-weight: 500; }
.settings__section { scroll-margin-top: calc(var(--nav-h) + 24px); }
.settings__section + .settings__section { margin-top: 56px; }
.settings__label { margin: 24px 0 10px; font: 500 13px/1.3 var(--font-text); color: var(--ink-3); }
.settings__input { width: min(260px, 50%); text-align: right; box-shadow: none; background: transparent; }
.settings__input:hover { box-shadow: inset 0 0 0 1px var(--line-2); }
.settings__input:focus { text-align: left; }
.list__row > .grow > span { display: block; }
.settings__fine { margin: 10px 4px 0; font: 400 13px/1.45 var(--font-text); color: var(--ink-3); }
.session-skeleton { display: block; width: min(240px, 60%); height: 16px; }
@media (max-width: 860px) {
  .settings { grid-template-columns: 1fr; gap: 24px; }
  .settings__nav { position: static; flex-direction: row; overflow-x: auto; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scrollbar-width: none; }
  .settings__nav::-webkit-scrollbar { display: none; }
  .settings__nav a { flex: none; white-space: nowrap; }
}

/* ── Stores ─────────────────────────────────────────────────────────────── */

.stores-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.store-row { display: flex; flex-direction: column; gap: 16px; padding: 24px; border-radius: var(--r-xl); background: var(--bg-2); transition: background-color var(--t-2), transform var(--t-3) var(--ease-out); }
.store-row:hover { background: var(--bg-3); }
.store-row__head { display: flex; align-items: center; gap: 16px; }
.store-row__go { color: var(--ink-3); transition: transform var(--t-3) var(--ease-out), color var(--t-2); }
.store-row:hover .store-row__go { transform: translateX(4px); color: var(--ink); }
.store-row__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.store-row__thumbs .tile { aspect-ratio: 1 / 1; border-radius: 16px; }
@media (max-width: 860px) { .stores-list { grid-template-columns: 1fr; } }

.store-head { display: flex; gap: 28px; align-items: flex-start; }
.store-facts { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 20px; font: 400 14.5px/1.3 var(--font-text); color: var(--ink-2); }
.store-facts li { display: inline-flex; align-items: center; gap: 8px; }
.store-facts svg { color: var(--ink-3); }
.store-facts li:first-child svg { color: var(--accent); }
@media (max-width: 640px) { .store-head { flex-direction: column; gap: 20px; } .store-head .mono { --size: 64px !important; } }

/* ── How it works & legal ───────────────────────────────────────────────── */

.how__lead { max-width: 36em; margin: 20px auto 0; }
.how__try { display: flex; align-items: center; justify-content: center; gap: 8px; font: 500 14px/1 var(--font-text); color: var(--ink-3); }
.how__try + .hd { margin-top: 20px; }
.how-steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 56px; margin-top: 40px; }
.how-step { display: flex; gap: 20px; }
.how-step__icon { flex: none; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: var(--bg-2); }
@media (max-width: 760px) { .how-steps { grid-template-columns: 1fr; } }
.promise-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 32px; }
.promise { display: flex; flex-direction: column; gap: 8px; padding: 28px; border-radius: var(--r-xl); background: var(--bg); }
.promise svg { margin-bottom: 8px; color: var(--accent); }
:root[data-theme="dark"] .promise { background: var(--bg-3); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .promise { background: var(--bg-3); } }
@media (max-width: 860px) { .promise-grid { grid-template-columns: 1fr; } }
.legal { display: flex; flex-direction: column; gap: 36px; margin-top: 48px; }
.legal section { display: flex; flex-direction: column; gap: 12px; scroll-margin-top: 96px; }
.legal__list { display: flex; flex-direction: column; gap: 8px; margin: 0; padding-left: 22px; color: var(--ink-2); list-style: disc; }
.legal__list li { padding-left: 4px; text-wrap: pretty; }
.legal__facts { display: flex; flex-direction: column; margin: 0; border-top: 1px solid var(--line); }
.legal__facts > div { display: grid; grid-template-columns: minmax(140px, 220px) 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.legal__facts dt { color: var(--ink-3); }
.legal__facts dd { margin: 0; overflow-wrap: anywhere; }
.legal__docs ul { display: flex; flex-wrap: wrap; gap: 8px 24px; margin: 12px 0 0; padding: 0; list-style: none; }
.legal__docs a[aria-current="page"] { color: var(--ink); text-decoration: none; font-weight: 600; }
@media (max-width: 560px) { .legal__facts > div { grid-template-columns: 1fr; gap: 2px; } }
.auth-consent { margin-top: 12px; font-size: 13px; line-height: 1.45; color: var(--ink-3); text-wrap: pretty; }
.auth-consent a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.auth-consent a:hover { color: var(--ink); }

/* ── Search overlay ─────────────────────────────────────────────────────── */

.spot { position: fixed; inset: 0; z-index: 480; display: flex; justify-content: center; align-items: flex-start; padding: min(14vh, 120px) 16px 16px; }
.spot__backdrop { position: absolute; inset: 0; background: var(--scrim); opacity: 0; transition: opacity var(--t-3) var(--ease-out); }
.spot__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(640px, 100%);
  max-height: min(76vh, 640px);
  border-radius: 24px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-4);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-12px) scale(0.98);
  transition: opacity var(--t-2) var(--ease-out), transform var(--t-3) var(--ease-sheet);
}
.spot.is-open .spot__backdrop { opacity: 1; }
.spot.is-open .spot__panel { opacity: 1; transform: none; }
.spot__field { flex: none; display: flex; align-items: center; gap: 14px; height: 64px; padding: 0 18px 0 22px; box-shadow: inset 0 -1px 0 var(--line); color: var(--ink-3); }
.spot__input { flex: 1; height: 100%; font: 400 19px/1 var(--font-text); letter-spacing: -0.014em; color: var(--ink); }
.spot__field .kbd { cursor: pointer; }
.spot__results { overflow-y: auto; padding: 8px 8px 12px; overscroll-behavior: contain; }
.spot__label { padding: 14px 14px 6px; font: 500 12.5px/1 var(--font-text); color: var(--ink-3); }
.spot__chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 4px 12px 6px; }
.spot__row { display: flex; align-items: center; gap: 14px; padding: 8px 12px; border-radius: 14px; transition: background-color var(--t-1); }
.spot__row:hover, .spot__row.is-active { background: var(--bg-3); }
.spot__art { flex: none; width: 44px; height: 44px; border-radius: 12px; }
.spot__title { display: block; font: 500 15px/1.3 var(--font-text); overflow: hidden; text-overflow: ellipsis; }
.spot__meta { display: block; font: 400 13px/1.3 var(--font-text); color: var(--ink-3); }
.spot__go { flex: none; color: var(--ink-4); opacity: 0; transition: opacity var(--t-1); }
.spot__row:hover .spot__go, .spot__row.is-active .spot__go { opacity: 1; }
.spot__all { display: flex; padding: 12px 14px 4px; font-size: 14px; }
.spot__empty { padding: 40px 24px; text-align: center; }
@media (max-width: 640px) { .spot { padding: 12px; } .spot__panel { max-height: calc(100vh - 24px); } }
