/* Üst şerit kategori önizleme penceresi (public/menu.js → openPeek).
   Masaüstünde bir kategorinin üzerinde durunca açılır: alt kategoriler + görselli öne çıkan ürünler.
   Yalnızca styles.css token'ları kullanılır; açık/koyu tema token'larla kendiliğinden gelir.
   Ürün görseli beyaz zeminde durur (marka kuralı; .cm-thumb ile aynı bilinçli sabit). */

.catpeek {
  position: fixed;
  z-index: 32;
  width: min(600px, calc(100vw - 32px));
  padding: 16px 18px 18px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 22px 50px -22px rgba(0, 0, 0, 0.45);
  animation: drop 0.14s ease;
}
.catpeek[hidden] { display: none; }
/* Linkin ortasını gösteren küçük ok */
.catpeek::before {
  content: '';
  position: absolute;
  top: -7px;
  left: calc(var(--peek-x, 40px) - 6px);
  width: 12px;
  height: 12px;
  background: var(--surface);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
}
/* Link ile pencere arasındaki boşluk: fare buradan geçerken pencere kapanmasın */
.catpeek::after { content: ''; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }

.peek-head { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--text); }
.peek-ico { width: 24px; height: 24px; flex-shrink: 0; }
.peek-title { flex: 1; min-width: 0; margin: 0; display: flex; align-items: baseline; gap: 10px; }
.peek-name { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; line-height: 1.1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.peek-title .num { font-family: var(--mono); font-size: 12px; color: var(--muted); white-space: nowrap; }
.peek-all { flex-shrink: 0; font-weight: 600; font-size: 14px; color: var(--text); text-underline-offset: 3px; white-space: nowrap; }

.peek-body { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 18px; padding-top: 12px; }
.peek-body.no-subs { grid-template-columns: minmax(0, 1fr); }

.peek-subs { list-style: none; margin: 0; padding: 0 14px 0 0; border-right: 1px solid var(--line-soft); }
.peek-subs a { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin: 0 -8px; padding: 7px 8px; border-radius: 8px; text-decoration: none; font-size: 14px; line-height: 1.3; color: var(--text-2); }
.peek-subs a:hover, .peek-subs a:focus-visible { background: var(--line-soft); color: var(--text); }
.peek-subs .num { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.peek-more a { font-size: 13px; color: var(--muted); }

.peek-prods { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 12px; align-content: start; }
.no-subs .peek-prods { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.peek-prod { display: grid; gap: 1px; min-width: 0; text-decoration: none; color: var(--text); border-radius: 8px; }
.peek-thumb { display: block; aspect-ratio: 4 / 3; margin-bottom: 6px; border-radius: 8px; overflow: hidden; background: #fff; border: 1px solid var(--line); }
.peek-thumb img { width: 100%; height: 100%; object-fit: contain; }
.peek-thumb .ph { border-radius: 0; }
/* Görsel yüklenemezse gelen kare yer tutucu (/img/<id>.svg) kendi zeminiyle (--surface) aynı renkte dursun */
.peek-thumb:has(img[src*='/img/']) { background: var(--surface); }
.peek-thumb .ph-brand { display: none; }
.peek-prod.is-loading .peek-thumb { background: var(--line-soft); border-color: var(--line-soft); }
.peek-prod-name { font-size: 13px; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.peek-prod-price { font-family: var(--display); font-weight: 700; font-size: 16px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
/* Önce aylık ödeme (fiyat satırı), altında taksit sayısı ve toplam: toplam kesilmez, gerekirse iki satır */
.peek-prod-plan { font-size: 12px; line-height: 1.3; color: var(--text-2); }
.peek-prod-plan b, .dw-prod-plan b { font-weight: 600; }
.peek-prod:hover .peek-prod-name, .peek-prod:focus-visible .peek-prod-name { text-decoration: underline; text-underline-offset: 3px; }
.peek-empty { grid-column: 1 / -1; margin: 0; font-size: 14px; color: var(--muted); }

.catpeek a:focus-visible { outline: 2px solid var(--text); outline-offset: 2px; }

/* Önizlemesi açık kategori şeritte de seçili görünür (sayfanın kendi kategorisi koyu kalır) */
.catbar-links a[aria-expanded='true']:not([aria-current='true']) { color: var(--text); background: var(--line-soft); }

/* Dokunmatik ve dar ekranlarda önizleme yok (menu.js de açmaz; bu yalnızca güvenlik) */
@media not ((hover: hover) and (min-width: 981px)) {
  .catpeek { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .catpeek { animation: none; }
}

/* === Masaüstü geniş panel: grubun kategorileri sütun sütun (public/menu.js showDetail) ============ */
.cm-cols { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 16px 28px; padding-top: 14px; }
.cm-col { min-width: 0; }
.cm-col-head { display: flex; align-items: center; gap: 8px; margin: 0; padding-bottom: 6px; border-bottom: 1px solid var(--line-soft); font-weight: 600; font-size: 15px; color: var(--text); text-decoration: none; }
.cm-col-head .ico { width: 20px; height: 20px; flex-shrink: 0; }
.cm-col-head span:not(.num) { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cm-col-head .num { margin-left: auto; font-family: var(--mono); font-size: 12px; font-weight: 400; color: var(--muted); }
a.cm-col-head:hover span:not(.num) { text-decoration: underline; text-underline-offset: 3px; }
.cm-col-note { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); padding-top: 3px; }
.cm-col ul { list-style: none; margin: 0; padding: 4px 0 0; }
.cm-col li a { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; padding: 4px 0; font-size: 14px; line-height: 1.3; color: var(--text-2); text-decoration: none; }
.cm-col li a:hover { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.cm-col li .num { font-family: var(--mono); font-size: 11.5px; color: var(--muted); }
.cm-col .cm-more a { color: var(--muted); font-size: 13px; }
/* Tek kategorili grup: alt kategoriler ikonlu liste */
.cm-subs a { display: grid; grid-template-columns: 20px minmax(0, 1fr) auto; gap: 10px; align-items: center; }
.cm-subs a .ico { width: 20px; height: 20px; }
.catmenu.is-mega .cm-feat-title { margin: 18px 0 8px; }
.catmenu.is-mega .cm-thumb { aspect-ratio: 16 / 10; margin-bottom: 6px; }
.catmenu.is-mega .catmenu-item { padding: 7px 10px; }
/* Sol sütun: 9 grup tek satırda (uzun adlar 1440 px'te sığar, dar ekranda üç noktayla kısalır) */
.catmenu.is-mega .catmenu-inner { grid-template-columns: 340px minmax(0, 1fr); gap: 36px; }
.catmenu.is-mega .cm-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 1100px) {
  .catmenu.is-mega .catmenu-inner { grid-template-columns: 260px minmax(0, 1fr); gap: 24px; }
  .catmenu.is-mega .cm-name { white-space: normal; }
}
/* Dar masaüstünde şerit sıkışır; sığmayanlar gizlenir, hepsi "Kategoriler" panelinde */
@media (max-width: 1180px) { .catbar-links a { padding-left: 7px; padding-right: 7px; font-size: 13.5px; } }
/* Üst şeritte 9 grup: 1440 px'te hepsi sığsın diye biraz daha sıkı */
.catbar-links a { padding-left: 9px; padding-right: 9px; }
.catbar .catbar-guide { padding-left: 10px; padding-right: 10px; }

/* === Telefon çekmecesi: iki seviye (public/menu.js drawerHtml) ====================================
   1. seviye: logo + kapat, 2×2 kısayol kutusu, "Kategoriler" başlığı ve 9 grup satırı, hesap kartı.
   2. seviye: "‹ Menü", başlık, koyu "Tüm … ürünleri" satırı, kategori satırları ya da alt kategori kartları.
   Lime yalnızca "peşin fiyatına" hapında (marka kuralı); kart kampanyası krem. */
.catmenu.is-drawer .catmenu-panel { width: min(92vw, 400px); }
.dw-view { display: flex; flex-direction: column; height: 100%; min-height: 0; }
.dw-view.is-in { animation: dw-in 0.2s ease; }
.dw-view.is-back { animation: dw-back 0.2s ease; }
@keyframes dw-in { from { transform: translateX(28px); opacity: 0; } }
@keyframes dw-back { from { transform: translateX(-28px); opacity: 0; } }
.dw-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 12px 8px 16px; flex-shrink: 0; }
.dw-head .logo { font-size: 22px; }
.dw-back { display: inline-flex; align-items: center; gap: 4px; min-height: 40px; margin-left: -6px; padding: 8px 12px 8px 4px; border: 0; border-radius: 999px; background: none; font-weight: 600; font-size: 15px; color: var(--text); cursor: pointer; }
.dw-back:hover { background: var(--line-soft); }
.dw-back-ico { width: 18px; height: 18px; transform: rotate(180deg); }
.dw-title { margin: 2px 16px 10px; font-family: var(--display); font-weight: 800; font-size: 30px; letter-spacing: -0.035em; line-height: 1.02; outline: none; flex-shrink: 0; }
.dw-scroll { flex: 1; min-height: 0; overflow: auto; overscroll-behavior: contain; padding: 0 12px calc(18px + env(safe-area-inset-bottom)); }
.dw-label { margin: 18px 4px 6px; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* Kısayol kutuları */
.dw-tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 4px; }
.dw-tile { display: grid; gap: 2px; align-content: start; min-width: 0; min-height: 104px; padding: 11px 12px 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); color: var(--text); text-decoration: none; }
.dw-tile:hover { border-color: var(--text); }
.dw-tile b { margin-top: 6px; font-family: var(--display); font-weight: 700; font-size: 16px; letter-spacing: -0.02em; line-height: 1.15; }
.t-top { display: flex; align-items: center; justify-content: space-between; gap: 6px; height: 22px; }
.t-ico { width: 22px; height: 22px; }
.t-count { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.t-desc { font-size: 12.5px; line-height: 1.3; color: var(--text-2); }
.t-night { background: var(--night); color: var(--night-text); border-color: color-mix(in srgb, var(--night-text) 14%, var(--night)); }
.t-night:hover { border-color: var(--night-muted); }
.t-night .t-desc, .t-night .t-count { color: var(--night-muted); }
.t-pill { justify-self: start; margin-top: 6px; padding: 2px 7px; border-radius: 6px; background: var(--lime); color: #0f100d; font-size: 11px; font-weight: 700; }
.t-krem { background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 65%, var(--line)); }
.t-krem .t-desc { color: var(--accent-text); }
.t-strip { width: 96px; height: 12px; }

/* Grup, kategori ve Kategori paneli satırları: 40 px nötr ikon kutusu, ad, gri tek satır özet, sayı */
.dw-rows { list-style: none; margin: 0; padding: 0; }
.mi-row { width: 100%; display: grid; grid-template-columns: 40px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 7px 4px; border: 0; border-radius: 10px; background: none; color: var(--text); font: inherit; text-align: left; text-decoration: none; cursor: pointer; }
.dw-rows li + li .mi-row { border-top: 1px solid var(--line-soft); border-radius: 0; }
@media (hover: hover) { .mi-row:hover { background: var(--line-soft); } }
.mi-ico { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line-soft); border-radius: 10px; background: var(--paper); color: var(--text); }
.mi-ico .ico { width: 22px; height: 22px; }
.mi-txt { display: grid; min-width: 0; }
.mi-txt b { font-weight: 600; font-size: 15.5px; line-height: 1.25; }
.mi-txt span { font-size: 12.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mi-end { display: inline-flex; align-items: center; gap: 4px; font-family: var(--mono); font-size: 12px; color: var(--muted); }
.mi-end .ico { width: 16px; height: 16px; }

/* Hesap kartı ve küçük linkler */
.dw-acct { display: grid; grid-template-columns: 36px minmax(0, 1fr) auto; gap: 10px; align-items: center; margin-top: 16px; padding: 12px; border: 1px dashed var(--line); border-radius: 12px; color: var(--text); text-decoration: none; }
.dw-acct:hover { border-color: var(--text); }
.dw-acct-ico { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--text); color: var(--paper); }
.dw-acct-ico svg { width: 18px; height: 18px; }
.dw-avatar { font-weight: 700; font-size: 13px; }
.dw-acct-txt { display: grid; min-width: 0; }
.dw-acct-txt b { font-size: 14px; line-height: 1.3; }
.dw-acct-txt span { font-size: 12px; color: var(--muted); }
.dw-btn { padding: 7px 12px; border-radius: 999px; background: var(--text); color: var(--paper); font-weight: 600; font-size: 13px; white-space: nowrap; }
.dw-mini { display: flex; flex-wrap: wrap; gap: 0 16px; padding: 10px 4px 0; font-size: 13px; }
.dw-mini a { padding: 6px 0; color: var(--muted); text-decoration: none; }
.dw-mini a:hover { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }

/* 2. seviye */
.dw-all { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; padding: 12px 14px; border-radius: 12px; background: var(--night); color: var(--night-text); font-weight: 600; text-decoration: none; }
.dw-all span:first-child { flex: 1; min-width: 0; }
.dw-all .num { font-family: var(--mono); font-size: 12px; font-weight: 400; color: var(--night-muted); }
.dw-all .ico { width: 16px; height: 16px; }
.dw-quick { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 10px; align-items: center; margin-top: 10px; padding: 11px 12px; border-radius: 12px; background: var(--lime-soft); color: var(--lime-text); font-weight: 600; font-size: 14px; text-decoration: none; }
.dw-quick .t-strip i { background: color-mix(in srgb, var(--lime-text) 22%, transparent); }
.dw-quick .t-strip i.on { background: var(--lime-text); }
.dw-quick .num { font-family: var(--mono); font-size: 12px; }
.dw-feat { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.dw-prod { display: grid; gap: 1px; min-width: 0; color: var(--text); text-decoration: none; }
.dw-thumb { display: block; aspect-ratio: 1; margin-bottom: 5px; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: var(--media-bg); }
.dw-thumb img { width: 100%; height: 100%; object-fit: contain; }
.dw-thumb .ph { border-radius: 0; }
.dw-thumb .ph-brand { display: none; }
.dw-prod.is-loading .dw-thumb { background: var(--line-soft); border-color: var(--line-soft); }
.dw-prod-name { font-size: 12px; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dw-prod-price { font-family: var(--display); font-weight: 700; font-size: 14px; letter-spacing: -0.02em; }
.dw-prod-plan { font-size: 12px; line-height: 1.3; color: var(--text-2); }
.dw-prod:hover .dw-prod-name { text-decoration: underline; text-underline-offset: 3px; }
/* Tek kategorili grup: alt kategoriler iki sütun */
.dw-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.dw-card { height: 100%; display: grid; gap: 6px; align-content: start; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); color: var(--text); text-decoration: none; }
.dw-card:hover { border-color: var(--text); }
.dw-card .mi-ico { background: var(--surface); }
.dw-card b { font-weight: 600; font-size: 14.5px; line-height: 1.25; }
.dw-card .num { font-family: var(--mono); font-size: 12px; color: var(--muted); }
/* Alt kategori kartında ürün görseli (ürünler gelince ikonun yerine; görsel beyaz zeminde, .dw-thumb gibi) */
.dw-card-media.has-img { width: 56px; height: 56px; overflow: hidden; border-color: var(--line); background: var(--media-bg); }
.dw-card-media.has-img img { width: 100%; height: 100%; object-fit: contain; }
.dw-card-media.has-img .ph { border-radius: 0; }
.dw-card-media.has-img .ph-brand { display: none; }

/* === Liste sayfası: kategori çubuğu ve Kategori paneli (public/parts.js catnavHtml) =================
   Telefon ve tablette tek yapışkan blok; masaüstünde gizli. Bu blok varken yinelenen parçalar (sayfa yolu,
   alt kategori hapları, seçili kategori hapı, araç çubuğundaki "Filtreler") gizlenir. */
.catnav, .catsheet { display: none; }
@media (max-width: 980px) {
  .catnav { --cn-gut: 20px; display: block; position: sticky; top: var(--topbar-h, 0px); z-index: 20; margin: 0 calc(-1 * var(--cn-gut)); padding: 10px var(--cn-gut) 0; background: var(--paper); border-bottom: 1px solid var(--line-soft); }
  .cn-row { display: flex; align-items: center; gap: 8px; padding-bottom: 10px; }
  .cn-crumb { flex: 1; min-width: 0; height: 44px; display: flex; align-items: center; gap: 6px; padding: 0 12px 0 14px; border: 1px solid var(--text); border-radius: 12px; background: var(--surface); color: var(--text); font-size: 15px; text-align: left; cursor: pointer; }
  .cn-parent { min-width: 0; max-width: 45%; flex-shrink: 1; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .cn-crumb b { flex: 1; min-width: 0; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .cn-sep { width: 14px; height: 14px; flex-shrink: 0; color: var(--muted); }
  .cn-down { width: 16px; height: 16px; flex-shrink: 0; transform: rotate(90deg); }
  .cn-filter { height: 44px; flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px; padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--text); font-weight: 600; font-size: 14px; cursor: pointer; }
  .cn-filter .ico { width: 16px; height: 16px; }
  .cn-n { padding: 1px 6px; border-radius: 999px; background: var(--text); color: var(--paper); font-family: var(--mono); font-size: 11px; }
  /* Alt kategori hapları: yatay kayar, sağ kenar solarak devamı olduğunu gösterir */
  .cn-chips { display: flex; gap: 6px; margin: -2px calc(-1 * var(--cn-gut)) 0; padding: 0 48px 10px var(--cn-gut); overflow-x: auto; scrollbar-width: none; -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 44px), transparent); mask-image: linear-gradient(90deg, #000 calc(100% - 44px), transparent); }
  .cn-chips::-webkit-scrollbar { display: none; }
  .cn-chip { flex-shrink: 0; height: 36px; display: inline-flex; align-items: center; gap: 6px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--text); font-size: 14px; white-space: nowrap; text-decoration: none; }
  .cn-chip .ico { width: 17px; height: 17px; }
  .cn-chip .num { font-family: var(--mono); font-size: 11.5px; color: var(--muted); }
  .cn-chip[aria-current] { background: var(--text); border-color: var(--text); color: var(--paper); }
  .cn-chip[aria-current] .num { color: inherit; opacity: 0.7; }
  .cn-chip.is-ghost { border-style: dashed; color: var(--text-2); }
  .catnav ~ .crumbs, .catnav ~ .subchips, .catnav ~ .catalog .af-path, .catnav ~ .catalog .filter-toggle { display: none; }
  .catnav ~ .list-head { margin-top: 18px; }

  /* Kategori paneli: alttan açılır */
  .catsheet:not([hidden]) { display: block; position: fixed; inset: 0; z-index: 72; }
  .cs-scrim { position: absolute; inset: 0; background: rgba(15, 16, 13, 0.45); animation: fade 0.2s ease; }
  .cs-panel { position: absolute; left: 0; right: 0; bottom: 0; max-height: 86vh; max-height: 86dvh; overflow: auto; overscroll-behavior: contain; padding: 8px 16px calc(18px + env(safe-area-inset-bottom)); border-radius: 18px 18px 0 0; background: var(--surface); box-shadow: 0 -20px 50px -20px rgba(0, 0, 0, 0.4); animation: cs-up 0.25s cubic-bezier(0.3, 0.7, 0.4, 1); }
  @keyframes cs-up { from { transform: translateY(100%); } }
  .cs-grab { display: block; width: 40px; height: 4px; margin: 0 auto 8px; border-radius: 4px; background: var(--line); }
  .cs-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  .cs-head h2 { margin: 0; font-family: var(--display); font-weight: 800; font-size: 24px; letter-spacing: -0.03em; }
  .cs-path { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; margin: 8px 0; font-size: 13.5px; color: var(--muted); }
  .cs-path a { color: var(--text-2); text-underline-offset: 3px; }
  .cs-path b { color: var(--text); font-weight: 600; }
  .cs-path .ico { width: 14px; height: 14px; }
  .cs-list { list-style: none; margin: 0; padding: 0; }
  .cs-row { display: grid; grid-template-columns: 40px minmax(0, 1fr) auto 20px; gap: 12px; align-items: center; padding: 6px 4px; border-radius: 10px; color: var(--text); text-decoration: none; }
  .cs-list li + li .cs-row { border-top: 1px solid var(--line-soft); border-radius: 0; }
  @media (hover: hover) { .cs-row:hover { background: var(--line-soft); } }
  .cs-name { min-width: 0; font-size: 15px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .cs-row .num { font-family: var(--mono); font-size: 12px; color: var(--muted); }
  .cs-row.is-on .cs-name { font-weight: 700; }
  .cs-row.is-on .mi-ico { background: var(--text); border-color: var(--text); color: var(--paper); }
  .cs-ok { width: 18px; height: 18px; }
  .cs-other { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 12px; padding: 12px; border: 1px solid var(--line-soft); border-radius: 12px; background: var(--paper); color: var(--text); font-weight: 600; font-size: 14px; text-align: left; cursor: pointer; }
  .cs-other span { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .cs-other .ico { width: 16px; height: 16px; flex-shrink: 0; }
  body.catsheet-open { overflow: hidden; }
}
@media (max-width: 640px) {
  .catnav { --cn-gut: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .dw-view.is-in, .dw-view.is-back, .cs-panel, .cs-scrim { animation: none; }
}
