/* 国内站模板 · 基础与公共部件（顶栏、导航条、商品卡、页脚、弹窗）。 */
:root {
  --nx-ink: #1f1f1f;
  --nx-body: #3f3f3f;
  --nx-muted: #6a6a6a;
  --nx-muted-soft: #999999;
  --nx-line: #e3e3e3;
  --nx-line-soft: #eeeeee;
  --nx-line-strong: #c9c9c9;
  --nx-canvas: #ffffff;
  --nx-page: #f4f5f7;
  --nx-soft: #f7f8fa;
  --nx-strong: #f0f1f3;
  --nx-error: #c13515;
  --nx-price: #e2231a;
  /* 品牌色由 tone.js 按店铺主题色覆盖 */
  --nx-brand: #2C7BE5;
  --nx-fill: #2C7BE5;
  --nx-fill-press: #266AC5;
  --nx-fill-soft: #D5E5FA;
  --nx-on-fill: #ffffff;
  --nx-brand-text: #1F63BF;
  --nx-halo: #F4F8FE;
  --nx-shadow: rgba(0, 0, 0, .04) 0 1px 3px, rgba(0, 0, 0, .04) 0 4px 12px;
  --nx-shadow-lift: rgba(0, 0, 0, .1) 0 8px 24px;
  --nx-r-btn: 8px;
  --nx-r-card: 10px;
  --nx-gutter: 20px;
  --nx-top-h: 0px; /* 顶栏不吸顶，吸顶元素只留页面间距 */
  --nx-font: -apple-system, BlinkMacSystemFont, "PingFang SC", "HarmonyOS Sans SC", "MiSans", "Microsoft YaHei", "Hiragino Sans GB", "Noto Sans CJK SC", "Source Han Sans SC", "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 16px; }
body {
  margin: 0; min-height: 100vh; display: flex; flex-direction: column;
  background: var(--nx-page); color: var(--nx-body);
  font: 400 14px/1.5 var(--nx-font); -webkit-font-smoothing: antialiased;
}
body.nx-lock { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; }
h1, h2, h3, p, dl, dd, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--nx-fill); outline-offset: 2px; }
[hidden] { display: none !important; }

.nx-wrap { width: 100%; max-width: calc(1200px + var(--nx-gutter) * 2); margin-inline: auto; padding-inline: var(--nx-gutter); }
.nx-main { flex: 1 0 auto; padding-bottom: 56px; outline: none; }
.nx-muted { color: var(--nx-muted); }
.nx-skip { position: absolute; left: 16px; top: -60px; z-index: 100; padding: 10px 16px; border-radius: var(--nx-r-btn); background: var(--nx-ink); color: #fff; }
.nx-skip:focus { top: 12px; }
.nx-ic { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- 按钮 ---------- */
.nx-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 44px; padding: 0 22px; border-radius: var(--nx-r-btn); border: 1px solid transparent;
  font-size: 15px; font-weight: 600; line-height: 1.2; white-space: nowrap;
  transition: background-color .15s, border-color .15s, color .15s, transform .1s;
}
.nx-btn:active:not(:disabled) { transform: scale(.98); }
.nx-btn:disabled { opacity: .45; }
.nx-btn--fill { background: var(--nx-fill); color: var(--nx-on-fill); }
.nx-btn--fill:hover:not(:disabled) { background: var(--nx-fill-press); }
.nx-btn--line { background: var(--nx-canvas); border-color: var(--nx-line-strong); color: var(--nx-ink); }
.nx-btn--line:hover:not(:disabled) { border-color: var(--nx-fill); color: var(--nx-brand-text); }
.nx-btn--soft { background: var(--nx-halo); border-color: var(--nx-fill-soft); color: var(--nx-brand-text); }
.nx-btn--soft:hover:not(:disabled) { background: var(--nx-fill-soft); }
.nx-btn--block { display: flex; width: 100%; }
.nx-round { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 40px; height: 40px; border-radius: 50%; border: 0; background: transparent; color: var(--nx-ink); }
.nx-round:hover { background: var(--nx-strong); }
.nx-round--soft { width: 32px; height: 32px; background: var(--nx-canvas); box-shadow: var(--nx-shadow); }
.nx-round--soft .nx-ic, .nx-round--plain .nx-ic { width: 16px; height: 16px; stroke-width: 2.2; }
.nx-linkbtn { display: inline-flex; align-items: center; gap: 4px; padding: 0; border: 0; background: none; font-size: 13px; color: var(--nx-muted); }
.nx-linkbtn:hover { color: var(--nx-price); }
.nx-linkbtn .nx-ic { width: 15px; height: 15px; }
.nx-more { display: inline-flex; align-items: center; gap: 2px; flex: none; font-size: 13px; color: var(--nx-muted); }
.nx-more .nx-ic { width: 14px; height: 14px; stroke-width: 2.2; }
.nx-more:hover { color: var(--nx-brand-text); }

/* ---------- 顶部通栏 ---------- */
.nx-top { position: relative; z-index: 40; background: var(--nx-canvas); }
.nx-strap { background: var(--nx-strong); border-bottom: 1px solid var(--nx-line-soft); font-size: 12px; color: var(--nx-muted); }
.nx-strap__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 34px; }
.nx-strap__hello { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nx-strap__hello button { padding: 0 0 0 12px; border: 0; background: none; font-size: 12px; color: var(--nx-brand-text); }
.nx-strap__hello button + button { color: var(--nx-muted); }
.nx-strap__hello button:hover, .nx-strap__hello a:hover { color: var(--nx-price); }
.nx-strap__hello a { color: var(--nx-brand-text); }
.nx-strap__links { display: flex; align-items: center; white-space: nowrap; }
.nx-strap__links > * { padding: 0 12px; line-height: 12px; }
.nx-strap__links > * + * { border-left: 1px solid var(--nx-line-strong); }
.nx-strap__links > :last-child { padding-right: 0; }
.nx-strap__links a:hover { color: var(--nx-price); }

.nx-top__bar { display: grid; grid-template-columns: max-content minmax(280px, 540px) max-content; justify-content: space-between; align-items: center; gap: 28px; padding-block: 24px 20px; }
.nx-brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.nx-brand__logo { height: 56px; width: auto; max-width: 180px; object-fit: contain; }
.nx-brand__mono { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 52px; height: 52px; border-radius: 12px; background: var(--nx-fill); color: var(--nx-on-fill); font-size: 24px; font-weight: 800; }
.nx-brand__text { display: flex; flex-direction: column; min-width: 0; }
.nx-brand__name { font-size: 24px; font-weight: 800; line-height: 1.25; letter-spacing: .04em; color: var(--nx-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nx-brand__tag { margin-top: 3px; font-size: 12px; letter-spacing: .12em; color: var(--nx-muted); white-space: nowrap; }

.nx-find { min-width: 0; }
.nx-find__form { display: flex; height: 42px; overflow: hidden; border: 2px solid var(--nx-fill); border-radius: var(--nx-r-btn); background: var(--nx-canvas); }
.nx-find__form input { flex: 1; min-width: 0; padding: 0 14px; border: 0; background: transparent; font-size: 14px; color: var(--nx-ink); outline: none; }
.nx-find__form input::placeholder { color: var(--nx-muted-soft); }
.nx-find__form input::-webkit-search-cancel-button { display: none; }
.nx-find__form button { display: inline-flex; align-items: center; gap: 6px; flex: none; padding: 0 26px; border: 0; background: var(--nx-fill); color: var(--nx-on-fill); font-size: 15px; font-weight: 600; }
.nx-find__form button:hover { background: var(--nx-fill-press); }
.nx-find__form button .nx-ic { width: 17px; height: 17px; stroke-width: 2.4; }
.nx-find__hot { display: flex; gap: 14px; margin-top: 7px; overflow: hidden; white-space: nowrap; font-size: 12px; color: var(--nx-muted-soft); }
.nx-find__hot a:hover { color: var(--nx-price); }

.nx-util { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.nx-hotline { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.nx-hotline > .nx-ic { width: 38px; height: 38px; padding: 9px; border-radius: 50%; background: var(--nx-halo); color: var(--nx-brand-text); }
.nx-hotline span { display: flex; flex-direction: column; }
.nx-hotline small { font-size: 12px; color: var(--nx-muted); }
.nx-hotline b { font-size: 18px; font-weight: 700; color: var(--nx-ink); letter-spacing: .02em; }
.nx-bagbtn { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 16px; border: 1px solid var(--nx-line); border-radius: var(--nx-r-btn); background: var(--nx-soft); color: var(--nx-ink); white-space: nowrap; }
.nx-bagbtn .nx-ic { color: var(--nx-brand-text); }
.nx-bagbtn:hover { border-color: var(--nx-fill); color: var(--nx-brand-text); }

/* ---------- 导航条 ---------- */
.nx-top__nav { background: var(--nx-fill); }
.nx-top__navin { display: flex; align-items: stretch; height: 46px; }
.nx-cats { position: relative; flex: none; width: 220px; }
.nx-cats__btn { display: flex; align-items: center; gap: 10px; width: 100%; height: 100%; padding: 0 20px; border: 0; background: var(--nx-fill-press); color: var(--nx-on-fill); font-size: 15px; font-weight: 700; }
.nx-cats__btn .nx-ic { width: 18px; height: 18px; stroke-width: 2.2; }
.nx-cats__panel { position: absolute; left: 0; top: 100%; z-index: 50; width: min(660px, calc(100vw - 40px)); padding: 16px; border-radius: 0 0 10px 10px; background: var(--nx-canvas); box-shadow: var(--nx-shadow-lift); }
.nx-cats__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px; }
.nx-cats__item { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; padding: 10px 12px; border-radius: 6px; }
.nx-cats__item b { font-weight: 600; color: var(--nx-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nx-cats__item small { font-size: 12px; color: var(--nx-muted-soft); }
.nx-cats__item:hover { background: var(--nx-halo); }
.nx-cats__item:hover b { color: var(--nx-brand-text); }
.nx-cats__all { display: flex; align-items: center; justify-content: flex-end; gap: 2px; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--nx-line-soft); font-size: 13px; color: var(--nx-brand-text); }
.nx-cats__all .nx-ic { width: 14px; height: 14px; }
.nx-navrow { display: flex; flex: 1; min-width: 0; overflow-x: auto; scrollbar-width: none; }
.nx-navrow::-webkit-scrollbar { display: none; }
.nx-navrow__link { position: relative; display: flex; align-items: center; flex: none; padding: 0 18px; color: rgba(255, 255, 255, .9); font-size: 15px; font-weight: 600; white-space: nowrap; transition: background-color .15s; }
.nx-navrow__link:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.nx-navrow__link.is-on { background: var(--nx-fill-press); color: #fff; }
.nx-navrow__link.is-on::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 18px; height: 3px; margin-left: -9px; border-radius: 3px 3px 0 0; background: #fff; }
.nx-dock { display: none; }

/* ---------- 商品卡 ---------- */
.nx-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.nx-card { position: relative; min-width: 0; overflow: hidden; border-radius: var(--nx-r-card); background: var(--nx-canvas); transition: box-shadow .2s, transform .2s; }
.nx-card:hover { box-shadow: var(--nx-shadow-lift); transform: translateY(-2px); }
.nx-card__photo { position: relative; display: block; aspect-ratio: 1 / 1; max-width: 100%; overflow: hidden; background: var(--nx-soft); }
.nx-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.nx-card:hover .nx-card__photo img { transform: scale(1.04); }
.nx-card__photo img.is-missing { object-fit: fill; }
.nx-chip { position: absolute; left: 0; top: 10px; padding: 3px 8px 3px 7px; border-radius: 0 4px 4px 0; background: var(--nx-fill); color: var(--nx-on-fill); font-size: 12px; font-weight: 600; line-height: 1.3; }
.nx-heart { position: absolute; right: 6px; top: 6px; z-index: 2; display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; padding: 0; border: 0; background: none; color: #fff; }
.nx-heart .nx-ic { width: 22px; height: 22px; fill: rgba(0, 0, 0, .3); stroke: #fff; stroke-width: 1.8; transition: transform .15s; }
.nx-heart:hover .nx-ic { transform: scale(1.1); }
.nx-heart.is-on .nx-ic { fill: var(--nx-price); stroke: var(--nx-price); }
.nx-card__meta { display: block; padding: 10px 12px 12px; }
.nx-card__title { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; min-height: 42px; font-size: 14px; font-weight: 400; line-height: 1.5; color: var(--nx-ink); }
.nx-card:hover .nx-card__title { color: var(--nx-brand-text); }
.nx-card__sub { margin-top: 4px; font-size: 12px; color: var(--nx-muted-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nx-card__price { margin-top: 6px; color: var(--nx-price); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nx-card__price b { font-size: 18px; font-weight: 700; }
.nx-card__price s, .nx-buy__price s { margin-left: 6px; font-size: 12px; color: var(--nx-muted-soft); }
.nx-card--ghost { padding-bottom: 12px; }
.nx-card--ghost:hover { box-shadow: none; transform: none; }
.nx-card--ghost .nx-card__photo, .nx-card--ghost i { background: linear-gradient(90deg, var(--nx-strong) 25%, var(--nx-soft) 50%, var(--nx-strong) 75%); background-size: 200% 100%; animation: nx-shimmer 1.4s infinite linear; }
.nx-card--ghost i { display: block; height: 12px; margin: 12px 12px 0; border-radius: 4px; }
.nx-card--ghost i.short { width: 40%; margin-top: 8px; }
@keyframes nx-shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* ---------- 页脚 ---------- */
.nx-foot { flex: none; background: var(--nx-canvas); border-top: 1px solid var(--nx-line); }
.nx-foot__perks { border-bottom: 1px solid var(--nx-line-soft); }
.nx-foot__perksin { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; padding-block: 28px; }
.nx-foot__perksin a { display: flex; align-items: center; gap: 14px; min-width: 0; }
.nx-foot__perksin .nx-ic { width: 46px; height: 46px; padding: 11px; border-radius: 50%; background: var(--nx-halo); color: var(--nx-brand-text); stroke-width: 1.6; }
.nx-foot__perksin span { display: flex; flex-direction: column; min-width: 0; }
.nx-foot__perksin b { font-size: 16px; font-weight: 700; color: var(--nx-ink); }
.nx-foot__perksin small { font-size: 12px; color: var(--nx-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nx-foot__perksin a:hover b { color: var(--nx-brand-text); }
.nx-foot__cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; padding-block: 32px; }
.nx-foot__cols section { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; min-width: 0; }
.nx-foot__cols h2 { margin-bottom: 4px; font-size: 15px; font-weight: 700; color: var(--nx-ink); }
.nx-foot__cols a { font-size: 13px; color: var(--nx-muted); }
.nx-foot__cols a:hover { color: var(--nx-price); }
.nx-foot__row { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--nx-muted); word-break: break-all; }
.nx-foot__row .nx-ic { width: 16px; height: 16px; margin-top: 2px; }
.nx-foot__legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; padding-block: 18px; border-top: 1px solid var(--nx-line-soft); font-size: 12px; color: var(--nx-muted-soft); }
.nx-foot__legal a:hover { color: var(--nx-ink); }
.nx-foot__links { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 6px 18px; padding-block: 14px; border-top: 1px solid var(--nx-line-soft); font-size: 12px; color: var(--nx-muted); }
.nx-foot__links b { font-weight: 600; color: var(--nx-body); }
.nx-foot__links a:hover { color: var(--nx-price); }

/* ---------- 提示与弹窗 ---------- */
.nx-toast { position: fixed; left: 50%; bottom: 40px; z-index: 90; max-width: calc(100% - 32px); padding: 12px 20px; border-radius: var(--nx-r-btn); background: rgba(31, 31, 31, .92); color: #fff; font-size: 14px; transform: translateX(-50%); animation: nx-rise .2s ease-out; }
@keyframes nx-rise { from { opacity: 0; transform: translate(-50%, 8px); } }
.nx-scrim { position: fixed; inset: 0; z-index: 80; display: flex; align-items: center; justify-content: center; padding: 16px; background: rgba(0, 0, 0, .5); animation: nx-fade .15s ease-out; }
@keyframes nx-fade { from { opacity: 0; } }
.nx-dialog { width: 100%; max-width: 440px; max-height: calc(100vh - 32px); overflow: auto; border-radius: 12px; background: var(--nx-canvas); box-shadow: rgba(0, 0, 0, .28) 0 8px 28px; }
.nx-dialog__head { display: grid; grid-template-columns: 40px 1fr 40px; align-items: center; height: 56px; padding: 0 8px; border-bottom: 1px solid var(--nx-line-soft); }
.nx-dialog__head h2 { text-align: center; font-size: 16px; font-weight: 700; color: var(--nx-ink); }
.nx-dialog__body { display: flex; flex-direction: column; gap: 14px; padding: 24px; }
.nx-dialog__lead { font-size: 20px; font-weight: 700; color: var(--nx-ink); }
.nx-fields { display: flex; flex-direction: column; gap: 10px; }
.nx-field { display: block; padding: 8px 12px; border: 1px solid var(--nx-line-strong); border-radius: var(--nx-r-btn); }
.nx-field:focus-within { border-color: var(--nx-fill); box-shadow: 0 0 0 3px var(--nx-halo); }
.nx-field span { display: block; font-size: 12px; color: var(--nx-muted); }
.nx-field input { width: 100%; padding: 2px 0 0; border: 0; background: transparent; font-size: 16px; color: var(--nx-ink); outline: none; }
.nx-form-error { font-size: 13px; color: var(--nx-error); }
.nx-or { display: flex; align-items: center; gap: 16px; font-size: 12px; color: var(--nx-muted); }
.nx-or::before, .nx-or::after { content: ""; flex: 1; height: 1px; background: var(--nx-line); }

/* ---------- 响应式 ---------- */
@media (max-width: 1127px) {
  .nx-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .nx-hotline { display: none; }
  .nx-top__bar { gap: 20px; grid-template-columns: minmax(0, max-content) minmax(220px, 1fr) max-content; }
  .nx-brand__name { font-size: 20px; }
  .nx-cats { width: auto; }
  .nx-foot__perksin { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .nx-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .nx-strap__links > :nth-child(n+3) { display: none; }
}
@media (max-width: 743px) {
  :root { --nx-gutter: 12px; }
  .nx-main { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
  .nx-strap { display: none; }
  .nx-top__bar { grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "brand util" "find find"; gap: 10px 12px; padding-block: 10px; }
  .nx-brand { grid-area: brand; gap: 8px; }
  .nx-util { grid-area: util; }
  .nx-find { grid-area: find; }
  .nx-brand__logo { height: 34px; max-width: 110px; }
  .nx-brand__mono { width: 34px; height: 34px; border-radius: 8px; font-size: 16px; }
  .nx-brand__name { font-size: 17px; letter-spacing: .02em; }
  .nx-brand__tag, .nx-find__hot { display: none; }
  .nx-bagbtn { width: 40px; padding: 0; justify-content: center; }
  .nx-bagbtn span { display: none; }
  .nx-find__form { height: 38px; border-radius: 999px; }
  .nx-find__form input { padding: 0 14px; }
  .nx-find__form button { padding: 0 16px; border-radius: 999px; margin: 2px; }
  .nx-find__form button span { display: none; }
  .nx-top__navin { height: 40px; padding-inline: 0; }
  .nx-cats { display: none; }
  .nx-navrow__link { padding: 0 13px; font-size: 14px; }
  .nx-dock {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; display: grid; grid-template-columns: repeat(5, 1fr);
    padding: 5px 4px calc(5px + env(safe-area-inset-bottom)); border-top: 1px solid var(--nx-line-soft); background: var(--nx-canvas);
  }
  .nx-dock__item { display: flex; flex-direction: column; align-items: center; gap: 1px; padding: 3px 0; font-size: 11px; color: var(--nx-muted); }
  .nx-dock__item .nx-ic { width: 23px; height: 23px; stroke-width: 1.7; }
  .nx-dock__item.is-on { color: var(--nx-brand-text); font-weight: 600; }
  body[data-page="item"] .nx-dock { display: none; }
  .nx-foot { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
  body[data-page="item"] .nx-foot { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }

  .nx-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .nx-card { border-radius: 8px; }
  .nx-card:hover { box-shadow: none; transform: none; }
  .nx-card__meta { padding: 8px 10px 10px; }
  .nx-card__title { font-size: 13px; min-height: 39px; }
  .nx-card__price b { font-size: 16px; }
  .nx-chip { top: 8px; font-size: 11px; }

  .nx-foot__perksin { gap: 12px; padding-block: 18px; }
  .nx-foot__perksin .nx-ic { width: 38px; height: 38px; padding: 9px; }
  .nx-foot__perksin b { font-size: 14px; }
  .nx-foot__cols { grid-template-columns: 1fr; gap: 0; padding-block: 12px; }
  .nx-foot__cols section { padding-block: 14px; }
  .nx-foot__cols section + section { border-top: 1px solid var(--nx-line-soft); }
  .nx-toast { bottom: calc(80px + env(safe-area-inset-bottom)); }
  .nx-scrim { align-items: flex-end; padding: 0; }
  .nx-dialog { max-width: none; max-height: 92vh; border-radius: 16px 16px 0 0; animation: nx-sheet .22s ease-out; }
  @keyframes nx-sheet { from { transform: translateY(40px); opacity: .5; } }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
