/* Облик товарной страницы /product/<слаг>-<sku>.
   Направление «витрина цеха»: сцена с товаром → тёмный шильдик с ключевыми
   показаниями → один длинный лист-паспорт → плитки соседей. Референсы (Refero):
   DJI c6fe2881 (сцена под товар + единственный насыщенный акцент),
   Peak Design 374af946 (заголовки-микролейблы, плитки без внутреннего поля у фото),
   teenage engineering 2055406e (волосяные линейки, моноширинные коды),
   экраны: Apple AirPods Max be23d431 (спецлист двумя колонками без коробок),
   Nothing 59d6638e (отрицания свёрнуты в раскрывашку),
   Instacart PDP c5d37b07 (липкий блок покупки, кроссфейд при смене фото).
   Шапка, подвал и токены — те же, что на статической странице блога.
   Отдельным файлом, а не инлайном: на 6000+ страниц инлайн стоил бы ~50 МБ
   трафика и убивал бы кэш между карточками. */

* { box-sizing: border-box; }
html { color-scheme: light; -webkit-font-smoothing: antialiased; }
html[data-theme="dark"] { color-scheme: dark; }
:root {
  --bg: #ececed; --ink: #111111; --ink-2: #4a4a4a; --ink-3: #767676; --ink-4: #9b9b9b;
  --panel: rgba(255,255,255,.58); --panel-solid: #ffffff; --panel-nb: rgba(255,255,255,.86);
  --edge: rgba(255,255,255,.5); --hairline: #e3e3e3; --rule: rgba(17,17,17,.09); --soft: #f4f4f4;
  --accent-text: #dd0a0a;
  --photo-plate: #ffffff; --ok: #0f7a3d; --wait: #9a6200;
  /* Шильдик: плита, которая на любой теме темнее полотна страницы. Тот же
     приём, что у принятой владельцем шапки блога. */
  --slab: #131316; --slab-ink: #ffffff; --slab-ink-2: rgba(255,255,255,.56); --slab-rule: rgba(255,255,255,.13);
  --lift: 0 1px 2px rgba(17,17,17,.05), 0 10px 26px rgba(17,17,17,.07);
}
[data-theme="dark"] {
  --bg: #0e0e10; --ink: #f4f4f5; --ink-2: #c2c2c6; --ink-3: #8e8e94; --ink-4: #6e6e74;
  --panel: rgba(30,30,33,.72); --panel-solid: #17171a; --panel-nb: rgba(30,30,33,.92);
  --edge: rgba(255,255,255,.1); --hairline: rgba(255,255,255,.12); --rule: rgba(255,255,255,.09); --soft: rgba(255,255,255,.06);
  --accent-text: #ff7a68;
  /* Фото поставщика — JPEG с белой подложкой; на тёмной плите он светит рваным
     прямоугольником. Светлая подложка сливает фото с плитой (то же решение,
     что в product.html). */
  --photo-plate: #ffffff; --ok: #4ec27e; --wait: #e0a33a;
  --slab: #050506; --slab-ink: #f4f4f5; --slab-ink-2: rgba(255,255,255,.5); --slab-rule: rgba(255,255,255,.1);
  --lift: 0 0 0 1px rgba(255,255,255,.05);
}
body { margin: 0; background: var(--bg); color: var(--ink); font-family: "Manrope", system-ui, sans-serif; transition: background-color .25s, color .25s; }
body::before { content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none; background-image: radial-gradient(70% 55% at 12% 0%, rgba(255,255,255,.95) 0%, transparent 60%), radial-gradient(50% 45% at 88% 8%, rgba(221,10,10,.07) 0%, transparent 65%); }
[data-theme="dark"] body::before { background-image: radial-gradient(70% 55% at 12% 0%, rgba(255,255,255,.06) 0%, transparent 60%), radial-gradient(50% 45% at 88% 8%, rgba(221,10,10,.16) 0%, transparent 65%); }
a { color: var(--accent-text); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--accent-text); outline-offset: 2px; border-radius: 6px; }
/* Web Interface Guidelines: убрать 300-мс задержку тапа и серую вспышку на
   мобильных; sticky-шапка не должна накрывать элемент, на который увели фокус. */
button, a, summary, .p-shot { touch-action: manipulation; -webkit-tap-highlight-color: rgba(221,10,10,.14); }
[id] { scroll-margin-top: 96px; }

/* ─── общий каркас: шапка и подвал витрины ─────────────────────────────── */
.btc-wrap { max-width: 1320px; margin: 0 auto; padding: 14px 22px 60px; }
/* ─── шапка ────────────────────────────────────────────────────────────
   Каноническая шапка приехала на прод 12.09 06:14 и живёт инлайн-стилями на
   data-атрибутах. Своих правил .btc-hdr* здесь больше нет намеренно: иначе
   товарные страницы разъедутся с остальным сайтом. Переносим с прода только
   медиазапрос, который в инлайн не положишь. */
/* BTC-HDR-NARROW: поиск в шапке отдельной строкой на узком экране */
@media (max-width: 767px) {
  [data-btc-hdr] [data-btc-hdr-tools] { flex-wrap: wrap !important; }
  [data-btc-hdr] [data-btc-hdr-tools] input[type="search"] { order: -1; flex: 1 0 100% !important; max-width: none !important; }
}

/* ─── подвал витрины ───────────────────────────────────────────────────── */
.btc-cta { background: var(--panel-nb); border: 1px solid var(--edge); box-shadow: var(--lift); border-radius: 22px; padding: 24px; margin-top: 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.btc-cta-title { font-size: 22px; font-weight: 800; letter-spacing: -.03em; }
.btc-cta-sub { font-size: 14px; color: var(--ink-3); margin-top: 6px; }
.btc-cta-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.btc-btn-primary { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; font-family: inherit; font-size: 15px; font-weight: 700; padding: 14px 20px; border-radius: 13px; background: linear-gradient(180deg, rgba(255,58,40,.95), rgba(196,8,8,.95)); border: 1px solid rgba(255,255,255,.28); color: #fff !important; cursor: pointer; transition: transform .12s cubic-bezier(.23,1,.32,1), filter .18s, box-shadow .18s; }
.btc-btn-primary:hover { filter: brightness(1.07); box-shadow: 0 6px 18px rgba(196,8,8,.26); text-decoration: none; }
.btc-btn-primary:active { transform: scale(.97); }
.btc-btn-primary[disabled] { opacity: .6; cursor: default; }
.btc-btn-outline { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; font-family: inherit; font-size: 15px; font-weight: 700; padding: 14px 18px; border-radius: 13px; border: 1px solid var(--hairline); background: transparent; color: var(--ink) !important; cursor: pointer; transition: background .18s, transform .12s cubic-bezier(.23,1,.32,1); }
.btc-btn-outline:hover { background: var(--soft); text-decoration: none; }
.btc-btn-outline:active { transform: scale(.97); }
.btc-ftr-cols { display: grid; grid-template-columns: repeat(3, minmax(140px, 1fr)); gap: 22px; padding: 18px 6px 0; font-size: 13px; }
.btc-ftr-h { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 10px; }
.btc-ftr-cols a { display: block; color: var(--ink-2); padding: 5px 0; }
.btc-ftr-cols a:hover { color: var(--ink); text-decoration: none; }
.btc-ftr-legal { padding: 22px 6px 0; font-size: 13px; color: var(--ink-3); }
.btc-ftr-legal a { color: var(--ink-3); }
.btc-ftr-copy { padding: 10px 6px 0; font-size: 12px; color: var(--ink-4); line-height: 1.5; }

/* ─── хлебные крошки ───────────────────────────────────────────────────── */
.p-crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 8px; font-size: 12px; color: var(--ink-3); padding: 20px 6px 0; }
.p-crumbs a { color: var(--ink-3); }
.p-crumbs a:hover { color: var(--ink); }
.p-crumbs span { color: var(--ink-4); }

/* ─── общая плита и микролейбл секции ──────────────────────────────────── */
.p-plate { background: var(--panel-nb); border: 1px solid var(--edge); box-shadow: var(--lift); border-radius: 22px; }
.p-h { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 14px; display: flex; align-items: baseline; gap: 8px; }
.p-count { font-size: 11px; font-weight: 700; color: var(--ink-4); letter-spacing: .04em; }

/* ─── герой: сцена с товаром + ценник ──────────────────────────────────── */
.p-main { margin-top: 12px; }
.p-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, 400px); gap: 16px; align-items: start; }
/* Без фото делить экран на две колонки не на что: под правой колонкой зияла бы
   пустая треть страницы. Одна колонка — плашка полосой, дальше ценник. */
.p-hero.is-nophoto { grid-template-columns: minmax(0, 1fr); }
.p-hero.is-nophoto .p-buy { max-width: 560px; }

/* Сцена. Фото — главный аргумент карточки: во всю ширину колонки, без рамки
   вокруг снимка, поле сцены и есть рамка. */
.p-stage { position: relative; padding: 10px; }
.p-stage-main { position: relative; display: flex; align-items: center; justify-content: center; background: var(--photo-plate); border-radius: 14px; aspect-ratio: 4 / 3; max-height: 560px; overflow: hidden; }
.p-stage-main img { max-width: 92%; max-height: 92%; width: auto; height: auto; object-fit: contain; transition: transform .35s cubic-bezier(.23,1,.32,1), opacity .18s; }
.p-stage-main:hover img { transform: scale(1.035); }
.p-stage-main img.is-swap { opacity: 0; }
/* Без фото квадрат в полэкрана читается как «картинка не загрузилась».
   Плашке хватает низкой полосы: она сообщение, а не место под снимок. */
.p-stage-none { color: var(--ink-3); font-size: 14px; background: var(--soft); aspect-ratio: auto; min-height: 180px; max-height: 180px; letter-spacing: .01em; }
/* Пронумерованные образцы — тот же приём, что в принятом владельцем блоге. */
.p-shots { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.p-shot { position: relative; width: 74px; height: 74px; padding: 6px; border-radius: 12px; border: 1px solid var(--hairline); background: var(--photo-plate); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color .16s, transform .12s cubic-bezier(.23,1,.32,1); }
.p-shot img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.p-shot::after { content: attr(data-n); position: absolute; left: 5px; top: 4px; font-size: 9px; font-weight: 800; letter-spacing: .06em; color: var(--ink-4); font-variant-numeric: tabular-nums; }
.p-shot:hover { border-color: var(--ink-3); }
.p-shot:active { transform: scale(.95); }
.p-shot.is-on { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.p-shot.is-on::after { color: var(--ink); }
.p-zoom { position: absolute; right: 18px; bottom: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; padding: 7px 11px; border-radius: 999px; background: rgba(17,17,17,.72); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; pointer-events: none; opacity: 0; transition: opacity .18s; }
.p-stage-main:hover ~ .p-zoom, .p-stage:hover .p-zoom { opacity: 1; }

/* Ценник. Едет с читателем по десктопу: характеристики длинные, цена и
   «Купить» не должны уезжать из поля зрения (Instacart PDP c5d37b07). */
.p-buy { padding: 22px; position: sticky; top: 92px; }
.p-brand { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); min-height: 14px; }
.p-buy h1 { font-size: clamp(21px, 2.1vw, 29px); font-weight: 800; letter-spacing: -.032em; line-height: 1.14; margin: 9px 0 0; overflow-wrap: anywhere; text-wrap: balance; }
/* Полное наименование поставщика: строкой под крупным заголовком. Ничего не
   теряется, а H1 остаётся читаемым и не рвёт вёрстку. */
.p-fullname { margin: 8px 0 0; font-size: 12px; line-height: 1.45; color: var(--ink-3); overflow-wrap: anywhere; text-wrap: pretty; }
.p-stock { display: inline-flex; align-items: center; gap: 7px; margin: 16px 0 0; font-size: 12px; font-weight: 700; letter-spacing: .01em; padding: 7px 12px 7px 10px; border-radius: 999px; border: 1px solid var(--hairline); background: var(--soft); color: var(--ink); }
.p-stock i { width: 7px; height: 7px; border-radius: 50%; flex: 0 0 auto; }
.p-stock.is-in i { background: var(--ok); box-shadow: 0 0 0 3px color-mix(in srgb, var(--ok) 20%, transparent); }
.p-stock.is-order i { background: var(--wait); box-shadow: 0 0 0 3px color-mix(in srgb, var(--wait) 20%, transparent); }
.p-price { font-size: clamp(34px, 3.6vw, 46px); font-weight: 800; letter-spacing: -.042em; line-height: 1; margin: 16px 0 0; font-variant-numeric: tabular-nums; }
.p-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.p-actions .p-add { flex: 1 1 100%; }
.p-actions .p-one { flex: 1 1 140px; }
.p-actions .p-fav { flex: 0 0 auto; width: 48px; min-height: 48px; border-radius: 13px; }
/* Снятие возражений строкой под кнопкой: дословно те же условия, что в блоке
   «Доставка, оплата, гарантия» ниже, новых обещаний здесь нет. */
.p-assure { margin: 12px 0 0; padding: 12px 0 0; border-top: 1px solid var(--rule); display: flex; flex-wrap: wrap; gap: 4px 18px; font-size: 11.5px; color: var(--ink-3); }
.p-stockmini { margin: 16px 0 0; padding: 14px 0 0; border-top: 1px solid var(--rule); }
.p-stockmini .p-h { margin-bottom: 6px; }
.p-stockmini .p-terms { font-size: 12.5px; }
.p-stockmini .p-terms > div { padding: 6px 0; }
.p-stockmini .p-terms > div:last-child { border-bottom: 0; }
.p-ids { margin: 12px 0 0; padding: 12px 0 0; border-top: 1px solid var(--rule); display: flex; flex-wrap: wrap; gap: 4px 18px; font-size: 11px; color: var(--ink-4); }
.p-ids b { font-weight: 600; color: var(--ink-3); }
.p-ids code { font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; font-size: 11px; color: var(--ink-2); letter-spacing: -.01em; }
.p-build { margin: 14px 0 0; font-size: 13px; font-weight: 700; }

/* ─── шильдик: ключевые показания ──────────────────────────────────────── */
.p-keys { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; margin: 16px 0 0; padding: 0; background: var(--slab-rule); border-radius: 18px; overflow: hidden; }
.p-keys > div { background: var(--slab); padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.p-keys dt { order: 2; font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--slab-ink-2); }
.p-keys dd { order: 1; margin: 0; font-size: clamp(17px, 1.7vw, 22px); font-weight: 800; letter-spacing: -.03em; color: var(--slab-ink); font-variant-numeric: tabular-nums; overflow-wrap: anywhere; }

/* ─── лист-паспорт: описание, характеристики, наличие, условия ─────────── */
.p-doc { margin-top: 16px; padding: 26px 28px; }
.p-doc > section + section { margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--rule); }
/* Врезка, а не абзац в углу плиты. Текст мерой 68 символов оставлял справа
   пустое поле во всю высоту секции — глаз читал это как незагрузившийся блок.
   Растянуть абзац во всю ширину нельзя: мера ушла бы за 140 символов. Поэтому
   длинный текст (>300 символов, класс is-wide) течёт двумя колонками по ~58
   символов — приём Apple specs be23d431 и врезок блога витрины. */
.p-desc { font-size: 15px; line-height: 1.62; color: var(--ink-2); text-wrap: pretty; background: var(--soft); border-radius: 14px; padding: 18px 20px; }
.p-desc p { margin: 0 0 12px; }
.p-desc p:last-child { margin-bottom: 0; }
@media (min-width: 1000px) {
  .p-desc { max-width: none; }
  .p-desc.is-wide { column-count: 2; column-gap: 44px; }
  .p-desc:not(.is-wide) { max-width: 68ch; }
}

/* Спецлист: метка слева, значение справа, волосяная линейка между строками.
   Коробок вокруг строк нет — иерархию держат вес и цвет (Apple be23d431). */
.p-specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 44px; margin: 0; font-size: 13.5px; }
.p-specs > div { display: flex; gap: 12px; justify-content: space-between; align-items: baseline; padding: 9px 0; border-bottom: 1px solid var(--rule); }
.p-specs dt { color: var(--ink-3); font-weight: 500; flex: 0 1 auto; }
.p-specs dd { margin: 0; text-align: right; color: var(--ink); font-weight: 600; overflow-wrap: anywhere; font-variant-numeric: tabular-nums; }
.p-absent { margin-top: 16px; }
.p-absent summary { cursor: pointer; font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-3); list-style-position: outside; padding: 8px 0; transition: color .16s; }
.p-absent summary:hover { color: var(--ink); }
.p-absent[open] summary { color: var(--ink); }
.p-absent .p-specs { margin-top: 6px; }

/* Наличие и условия рядом: две короткие таблицы подряд во всю ширину читались
   как ещё две одинаковые серые карточки. */
.p-duo { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 26px 44px; }
.p-terms { margin: 0; font-size: 13.5px; }
.p-terms--2col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 44px; }
.p-terms > div { display: flex; gap: 12px; justify-content: space-between; align-items: baseline; padding: 9px 0; border-bottom: 1px solid var(--rule); }
.p-terms dt { flex: 0 0 auto; font-weight: 600; color: var(--ink-2); }
.p-terms dt a { color: var(--ink-2); }
.p-terms dt a:hover { color: var(--accent-text); }
.p-terms dd { margin: 0; text-align: right; color: var(--ink-3); }
.p-terms dd.is-strong { color: var(--ink); font-weight: 800; font-variant-numeric: tabular-nums; }
.p-empty { margin: 0; font-size: 14px; color: var(--ink-3); line-height: 1.55; }

/* ─── избранное ────────────────────────────────────────────────────────── */
/* Те же ключи localStorage btcFav/btcCompare, что у каталога и мобилки. */
.p-fav { display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--hairline); background: transparent; color: var(--ink-3); font-size: 18px; line-height: 1; cursor: pointer; font-family: inherit; transition: color .16s, border-color .16s, transform .12s cubic-bezier(.23,1,.32,1); }
.p-fav:hover { color: var(--accent-text); border-color: var(--accent-text); }
.p-fav:active { transform: scale(.92); }
.p-fav[aria-pressed="true"] { color: var(--accent-text); border-color: var(--accent-text); }
.p-fav--sm { position: absolute; top: 8px; right: 8px; z-index: 2; width: 32px; height: 32px; font-size: 14px; border-radius: 10px; background: var(--panel-solid); }

/* ─── соседи по категории ──────────────────────────────────────────────── */
/* Четыре в ряд, а не восемь: у мелкой плитки название обрезалось на середине
   и фото было с ноготь (Peak Design 374af946 — плитка ведётся фотографией). */
.p-more { margin-top: 16px; padding: 26px 28px; }
.p-sib { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.p-sib-c { position: relative; display: flex; flex-direction: column; gap: 10px; padding: 10px 10px 12px; border: 1px solid var(--hairline); border-radius: 16px; color: var(--ink); transition: border-color .18s, transform .18s cubic-bezier(.23,1,.32,1), box-shadow .18s; }
.p-sib-c:hover { border-color: var(--ink-4); transform: translateY(-2px); box-shadow: var(--lift); }
.p-sib-l { display: flex; flex-direction: column; gap: 10px; color: var(--ink) !important; }
.p-sib-l:hover { text-decoration: none; }
.p-sib-c img, .p-sib-nopic { display: block; width: 100%; height: 168px; object-fit: contain; background: var(--photo-plate); border-radius: 11px; }
.p-sib-n { font-size: 13px; line-height: 1.38; overflow-wrap: anywhere; color: var(--ink-2); min-height: 2.76em; }
.p-sib-p { font-size: 19px; font-weight: 800; letter-spacing: -.03em; margin-top: auto; font-variant-numeric: tabular-nums; }
.p-sib-act { display: flex; gap: 6px; }
.p-sib-add { flex: 1 1 auto; min-height: 38px; font-family: inherit; font-size: 12px; font-weight: 700; padding: 8px 6px; border-radius: 11px; border: 1px solid var(--hairline); background: transparent; color: var(--ink); cursor: pointer; transition: background .16s, border-color .16s, transform .12s cubic-bezier(.23,1,.32,1); }
.p-sib-add:hover { background: var(--soft); border-color: var(--ink-4); }
.p-sib-add:active { transform: scale(.97); }
.p-sib-cmp { width: 38px; min-height: 38px; border-radius: 11px; border: 1px solid var(--hairline); background: transparent; color: var(--ink-3); font-size: 14px; cursor: pointer; transition: color .16s, border-color .16s, transform .12s cubic-bezier(.23,1,.32,1); }
.p-sib-cmp:hover { color: var(--ink); border-color: var(--ink-4); }
.p-sib-cmp:active { transform: scale(.94); }
.p-sib-cmp[aria-pressed="true"] { color: var(--accent-text); border-color: var(--accent-text); }
.p-sib-all { margin: 18px 0 0; font-size: 13px; }

@media (max-width: 1060px) {
  .p-hero { grid-template-columns: minmax(0, 1fr); }
  .p-buy { position: static; }
  .p-sib { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .p-sib-c img, .p-sib-nopic { height: 150px; }
}
@media (max-width: 860px) {
  .p-specs, .p-terms--2col { grid-template-columns: minmax(0, 1fr); gap: 0; }
}
@media (max-width: 700px) {
  .btc-wrap { padding: 10px 14px 40px; }
  .btc-ftr-cols { grid-template-columns: 1fr 1fr; }
  .p-stage, .p-buy { padding: 10px; }
  .p-buy { padding: 18px 16px; }
  .p-doc, .p-more { padding: 20px 16px; border-radius: 20px; }
  .p-plate { border-radius: 20px; }
  .p-keys { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 16px; }
  .p-keys > div { padding: 14px 15px; }
  .p-stage-main { aspect-ratio: 1 / 1; max-height: 78vw; }
  .p-shot { width: 60px; height: 60px; }
  .p-sib { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .p-sib-c img, .p-sib-nopic { height: 112px; }
  .p-sib-n { font-size: 12px; }
  .p-terms > div { flex-direction: column; gap: 2px; align-items: stretch; }
  .p-terms dd { text-align: left; }
  .p-stockmini .p-terms > div { flex-direction: row; justify-content: space-between; align-items: baseline; gap: 12px; }
  .p-stockmini .p-terms dd { text-align: right; }
  .p-specs > div { flex-direction: column; gap: 2px; align-items: stretch; }
  .p-specs dd { text-align: left; }
}
@media (max-width: 380px) {
  .p-sib { grid-template-columns: minmax(0, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .p-stage-main:hover img { transform: none; }
}
