/* ============================================================
   DIY Autodarts Linksammlung – Public Styles
   Modernes, ruhiges Design · Dark + Light
   ============================================================ */

:root {
  --accent: #22d3ee;
  --radius: 16px;
  --radius-sm: 11px;
  --maxw: 1180px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .25);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, .18);
}

/* ---------- Dark (Standard) ---------- */
html[data-theme="dark"] {
  --bg: #0b0f15;
  --bg-2: #0e141d;
  --surface: #131b26;
  --surface-2: #18222f;
  --border: rgba(255, 255, 255, .09);
  --border-strong: rgba(255, 255, 255, .16);
  --text: #e9eef7;
  --muted: #93a1b8;
  --muted-2: #6f7d93;
  --chip: rgba(255, 255, 255, .05);
  --accent-soft: color-mix(in srgb, var(--accent) 16%, transparent);
  --accent-line: color-mix(in srgb, var(--accent) 40%, transparent);
  color-scheme: dark;
}

/* ---------- Light ---------- */
html[data-theme="light"] {
  --bg: #f4f6fb;
  --bg-2: #eef1f7;
  --surface: #ffffff;
  --surface-2: #f7f9fc;
  --border: rgba(12, 22, 40, .10);
  --border-strong: rgba(12, 22, 40, .18);
  --text: #0e1726;
  --muted: #51607a;
  --muted-2: #74819a;
  --chip: rgba(12, 22, 40, .04);
  --accent-soft: color-mix(in srgb, var(--accent) 14%, transparent);
  --accent-line: color-mix(in srgb, var(--accent) 45%, transparent);
  color-scheme: light;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 520px at 12% -8%, var(--accent-soft), transparent 60%),
    radial-gradient(900px 480px at 100% 0%, color-mix(in srgb, var(--accent) 7%, transparent), transparent 55%),
    var(--bg);
  background-attachment: fixed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 12px 18px; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo {
  width: 40px; height: 40px; border-radius: 12px; flex: 0 0 auto;
  display: grid; place-items: center; font-size: 20px; color: #04121a;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 55%, #7c3aed));
  box-shadow: var(--shadow-sm);
}
.brand-text { min-width: 0; }
.brand-text b { display: block; font-size: 16px; line-height: 1.15; letter-spacing: .2px; }
.brand-text span { display: block; font-size: 12px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.header-actions { display: flex; align-items: center; gap: 8px; }

.icon-btn, .ghost-btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  border: 1px solid var(--border); background: var(--chip); color: var(--text);
  border-radius: 999px; padding: 9px 13px; font-size: 13px; font-weight: 700;
  transition: border-color .15s, background .15s, transform .05s;
}
.icon-btn:hover, .ghost-btn:hover { border-color: var(--accent-line); }
.icon-btn:active, .ghost-btn:active { transform: translateY(1px); }
.icon-btn i { font-size: 14px; }

/* ---------- Hero / Tools ---------- */
.hero { padding: 26px 0 6px; }
.hero h1 { margin: 0 0 6px; font-size: clamp(22px, 3vw, 30px); letter-spacing: .2px; }
.hero p { margin: 0; color: var(--muted); max-width: 70ch; font-size: 14.5px; }

.toolbar { margin: 18px 0 8px; display: grid; gap: 10px; }
.search-box { position: relative; }
.search-box i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--muted-2); }
.search-box input {
  width: 100%; padding: 13px 14px 13px 42px; font-size: 15px;
  color: var(--text); background: var(--surface); border: 1px solid var(--border);
  border-radius: 13px; outline: none; transition: border-color .15s, box-shadow .15s;
}
.search-box input::placeholder { color: var(--muted-2); }
.search-box input:focus { border-color: var(--accent-line); box-shadow: 0 0 0 4px var(--accent-soft); }
.search-clear {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  border: none; background: transparent; color: var(--muted-2); cursor: pointer;
  padding: 8px; font-size: 15px; display: none;
}
.search-box.has-value .search-clear { display: block; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  border: 1px solid var(--border); background: var(--chip); color: var(--text);
  border-radius: 999px; padding: 8px 13px; font-size: 12.5px; font-weight: 700;
  transition: all .15s;
}
.chip:hover { border-color: var(--accent-line); }
.chip.active { border-color: var(--accent); background: var(--accent-soft); }
.chip i { font-size: 12px; }
.chip .cnt { color: var(--muted-2); font-weight: 700; }

/* ---------- Layout ---------- */
.layout { display: grid; grid-template-columns: 232px 1fr; gap: 22px; align-items: start; padding: 14px 0 60px; }

.rail { position: sticky; top: 74px; align-self: start; }
.rail-inner {
  border: 1px solid var(--border); background: var(--surface);
  border-radius: var(--radius); padding: 8px; box-shadow: var(--shadow-sm);
}
.rail-title { font-size: 11px; text-transform: uppercase; letter-spacing: .8px; color: var(--muted-2); padding: 8px 10px 4px; font-weight: 800; }
.rail a {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  padding: 9px 10px; border-radius: 10px; color: var(--muted); font-size: 13.5px; font-weight: 600;
  transition: background .12s, color .12s;
}
.rail a .ri { width: 20px; text-align: center; color: var(--muted-2); font-size: 13px; }
.rail a .rc { margin-left: auto; font-size: 11px; color: var(--muted-2);
  background: var(--chip); border-radius: 999px; padding: 1px 8px; min-width: 22px; text-align: center; }
.rail a:hover { background: var(--chip); color: var(--text); }
.rail a.active { background: var(--accent-soft); color: var(--text); }
.rail a.active .ri { color: var(--accent); }

/* ---------- Sections ---------- */
.content { min-width: 0; }
.category { scroll-margin-top: 78px; margin-bottom: 30px; }
.cat-head { display: flex; align-items: center; gap: 12px; margin: 4px 0 4px; }
.cat-icon {
  width: 38px; height: 38px; border-radius: 11px; flex: 0 0 auto; display: grid; place-items: center;
  font-size: 16px; color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-line);
}
.cat-head h2 { margin: 0; font-size: 19px; letter-spacing: .2px; }
.cat-desc { color: var(--muted); font-size: 13.5px; margin: 0 0 14px; }

.group { margin-bottom: 16px; }
.group-head { display: flex; align-items: baseline; gap: 8px; margin: 0 2px 9px; }
.group-head h3 { margin: 0; font-size: 14px; font-weight: 800; color: var(--text); }
.group-head .gc { font-size: 11.5px; color: var(--muted-2); }
.group-head::after { content: ""; flex: 1; height: 1px; background: var(--border); margin-left: 4px; }

.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(285px, 1fr)); gap: 11px; }

/* ---------- Card ---------- */
.card {
  position: relative; border: 1px solid var(--border); background: var(--surface);
  border-radius: var(--radius-sm); padding: 13px 13px 11px; overflow: hidden;
  transition: border-color .15s, transform .08s, box-shadow .15s;
}
.card:hover { border-color: var(--accent-line); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.card.is-soldout { opacity: .72; }

.card-top { display: flex; gap: 11px; align-items: flex-start; }
.link-ic {
  width: 34px; height: 34px; flex: 0 0 auto; border-radius: 10px; display: grid; place-items: center;
  font-size: 15px; color: var(--text); background: var(--surface-2); border: 1px solid var(--border);
}
.tag-amazon .link-ic { color: #ff9900; }
.tag-aliexpress .link-ic { color: #ff4747; }
.tag-youtube .link-ic { color: #ff3b3b; }
.tag-github .link-ic { color: var(--text); }
.tag-discord .link-ic { color: #5865f2; }
.tag-tiktok .link-ic { color: #25f4ee; }
.tag-facebook .link-ic { color: #1877f2; }
.tag-shop .link-ic { color: var(--accent); }

.card-body { min-width: 0; flex: 1; }
.card-title {
  font-weight: 800; font-size: 14.5px; line-height: 1.28; text-decoration: none; color: var(--text);
  display: inline-block;
}
.card-title:hover { text-decoration: underline; text-decoration-color: var(--accent-line); text-underline-offset: 2px; }
.card-title .fa-arrow-up-right-from-square { font-size: 10px; color: var(--muted-2); margin-left: 5px; }

.meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700;
  border: 1px solid var(--border); background: var(--chip); color: var(--muted);
  border-radius: 999px; padding: 3px 8px;
}
.badge.badge-aff { color: color-mix(in srgb, var(--accent) 75%, var(--text)); border-color: var(--accent-line); }
.flag { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 800; border-radius: 999px; padding: 3px 8px; border: 1px solid transparent; }
.flag-rec { color: #06141a; background: var(--accent); }
.flag-chk { color: #fff; background: #7c5cff; }
.flag-out { color: #fff; background: #ef4444; }
.flag-new { color: #06141a; background: #34d399; }

.note { color: var(--muted); font-size: 12.5px; line-height: 1.4; margin-top: 8px; }

.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 10px; }
.short {
  font-size: 11.5px; color: var(--muted-2); font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.copy-btn {
  border: 1px solid var(--border); background: var(--chip); color: var(--muted); cursor: pointer;
  border-radius: 8px; padding: 5px 9px; font-size: 11.5px; font-weight: 700; flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 6px; transition: all .15s;
}
.copy-btn:hover { border-color: var(--accent-line); color: var(--text); }
.copy-btn.copied { color: #06141a; background: var(--accent); border-color: var(--accent); }

/* ---------- Empty / no results ---------- */
.empty { color: var(--muted); font-size: 14px; text-align: center; padding: 40px 0; }
.cat-empty { color: var(--muted-2); font-size: 13px; padding: 6px 2px 14px; }
.hidden { display: none !important; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); margin-top: 20px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 22px 18px 40px; color: var(--muted); font-size: 13px; }
.affiliate-note { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 13px 15px; margin-bottom: 16px; font-size: 12.5px; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); text-decoration: underline; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text); cursor: pointer; box-shadow: var(--shadow);
  display: grid; place-items: center; font-size: 16px; opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { border-color: var(--accent-line); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(20px);
  background: var(--text); color: var(--bg); padding: 10px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 700; box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s; z-index: 80;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .layout { grid-template-columns: 1fr; gap: 12px; }
  .rail { position: sticky; top: 64px; z-index: 40; margin: 0 -18px; }
  .rail-inner {
    border-radius: 0; border-left: none; border-right: none; padding: 8px 12px;
    display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none;
    background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(8px);
  }
  .rail-inner::-webkit-scrollbar { display: none; }
  .rail-title { display: none; }
  .rail a { white-space: nowrap; padding: 7px 11px; }
  .rail a .rc { display: none; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .brand-text span { display: none; }
  .hero { padding: 18px 0 4px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* ===== Update: klarere Abgrenzung der Kategorien (Inhaltsbereich) ===== */
.category{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px 12px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.category > .cat-head{ margin: 2px 0 6px; }
.category > .cat-desc{ margin-bottom: 12px; }
.category .card{ background: var(--surface-2); }
.category .link-ic{ background: var(--chip); }
.rail a.active{ box-shadow: inset 3px 0 0 var(--accent); }
@media (max-width:560px){ .category{ padding: 14px 14px 10px; border-radius: 14px; } }

/* ===== Update: Logo-Header, SVG-Icons, Affiliate-Stern, Cookie-Banner, Rechtsseiten ===== */
.ic{ width:18px; height:18px; fill:currentColor; display:block; }
.icon-btn .ic{ width:16px; height:16px; }
.icon-only{ padding:9px 11px; }

/* Logo / Marke */
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text); min-width:0; }
.brand-logo-img{ height:76px; width:auto; max-width:min(80vw,600px); display:block; object-fit:contain; }
@media (max-width:560px){ .brand-logo-img{ height:50px; } }
.brand-word{ display:flex; align-items:center; gap:8px; font-size:18px; font-weight:900; color:var(--text); }
.brand-mark{ width:40px; height:40px; flex:0 0 auto; }
.brand-type{ display:flex; flex-direction:column; line-height:1.02; }
.brand-type b{ font-size:19px; font-weight:900; letter-spacing:.4px; color:var(--text); }
.brand-type b .rd{ color:#e11d2a; }
.brand-type small{ font-size:10px; font-weight:800; letter-spacing:3px; color:var(--muted); margin-top:3px; }

/* Theme-Umschalter: passendes Icon je Modus */
html[data-theme="light"] .ic-sun{ display:none; }
html[data-theme="dark"]  .ic-moon{ display:none; }

/* Affiliate-Stern statt Wort */
.aff-star{ color:#f5b301; font-size:13px; line-height:1; vertical-align:1px; }
.card-title .aff-star{ margin-right:2px; }

/* Footer-Navigation */
.footer-nav{ display:flex; gap:16px; align-items:center; flex-wrap:wrap; }
.footer-nav a{ display:inline-flex; align-items:center; gap:6px; }

/* Cookie-/Speicher-Banner */
.cookie-banner{ position:fixed; left:12px; right:12px; bottom:12px; z-index:80;
  background:var(--surface); border:1px solid var(--border-strong); border-radius:14px; box-shadow:var(--shadow); }
.cookie-inner{ max-width:var(--maxw); margin:0 auto; padding:12px 16px; display:flex; gap:14px;
  align-items:center; justify-content:space-between; flex-wrap:wrap; font-size:13px; color:var(--muted); line-height:1.45; }
.cookie-inner span{ flex:1 1 300px; }
.cookie-inner a{ color:var(--accent); }
.btn-cookie{ background:var(--accent); color:#04121a; border:none; border-radius:999px; padding:10px 20px;
  font-weight:800; cursor:pointer; font-size:13px; flex:0 0 auto; }
.btn-cookie:hover{ filter:brightness(1.06); }

/* Rechtsseiten (Datenschutz / Impressum) */
.legal{ max-width:840px; margin:24px auto 70px; background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius); padding:26px 30px; box-shadow:var(--shadow-sm); }
.legal h1{ margin:0 0 4px; font-size:25px; }
.legal h2{ font-size:17px; margin:22px 0 6px; }
.legal p, .legal li{ color:var(--muted); font-size:14px; line-height:1.65; }
.legal a{ color:var(--accent); }
.legal .updated{ color:var(--muted-2); font-size:12.5px; margin-top:2px; }
.back-link{ display:inline-flex; align-items:center; gap:7px; color:var(--muted); text-decoration:none; font-size:13px; font-weight:700; margin:6px 0 0; }
.back-link:hover{ color:var(--text); }

/* ===== Update: Hauptüberschriften farblich absetzen (Markenrot) ===== */
html[data-theme="light"]{ --heading:#c81e2c; }
html[data-theme="dark"]{  --heading:#ff6b6b; }
.hero h1{ color:var(--heading); }
.cat-head h2{ color:var(--heading); }
.legal h1{ color:var(--heading); }

/* ===== Update: Mobile/Tablet – Sticky-Leisten, kein Querscroll, Karten ===== */
:root{ --headerH:100px; --barH:96px; }
html, body{ overflow-x: clip; }
.rail{ top: calc(var(--headerH) + 14px); }
.category{ scroll-margin-top: calc(var(--headerH) + 18px); }
/* Karten: Kurzlink schrumpfbar, lange Wörter umbrechen */
.short{ min-width:0; flex:1 1 auto; }
.card-title, .note{ overflow-wrap:anywhere; word-break:break-word; }

@media (max-width: 980px){
  /* Logo-Header darf wegscrollen, dafür bleiben Suche + Kategorien oben */
  .site-header{ position: static; }
  .toolbar{
    position: sticky; top: 0; z-index: 46; margin: 8px -18px 0; padding: 9px 14px;
    background: color-mix(in srgb, var(--bg) 93%, transparent); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
  }
  .filters{ flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-bottom: 1px; }
  .filters::-webkit-scrollbar{ display: none; }
  .chip{ flex: 0 0 auto; }
  .rail{ top: var(--barH); z-index: 45; }
  .category{ scroll-margin-top: calc(var(--barH) + 60px); }
}
@media (max-width: 560px){
  .cards{ grid-template-columns: 1fr; }
  .hero{ padding: 14px 0 2px; }
  .hero h1{ font-size: 22px; }
  .hero p{ font-size: 13.5px; }
  .card-foot{ flex-wrap: wrap; }
  .copy-btn{ width: 100%; justify-content: center; }
  .short{ flex: 1 1 100%; }
}

/* ===== Update 2: Linkboxen niemals breiter als der Bildschirm ===== */
.cards{ grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); }
.card{ max-width: 100%; }
.card-foot{ flex-wrap: wrap; }
.short{ min-width: 0; flex: 1 1 auto; max-width: 100%; }
.copy-btn{ flex: 0 0 auto; max-width: 100%; }
@media (max-width: 560px){
  .copy-btn{ width: 100%; justify-content: center; }
  .short{ flex: 1 1 100%; }
}

/* ===== Update 3: Original-Logo (heller Hintergrund) + Spalten je Geraet ===== */
/* Logo im Dunkel-Theme auf hellem Chip, damit es nicht im Dunkeln verschwindet */
html[data-theme="dark"] .brand-logo-img{ background:#fff; border-radius:10px; padding:4px 10px; }

/* Desktop: mehrspaltig automatisch (>=1025px) */
@media (min-width: 1025px){
  .cards{ grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}
/* Tablet: genau 2 Links pro Zeile */
@media (min-width: 601px) and (max-width: 1024px){
  .cards{ grid-template-columns: 1fr 1fr; }
}
/* Mobil: 1 Link pro Zeile + Kategorie-Box ueber volle Bildschirmbreite */
@media (max-width: 600px){
  .cards{ grid-template-columns: 1fr; }
  .category{ margin-left: -18px; margin-right: -18px; border-radius: 0; border-left: 0; border-right: 0; padding-left: 14px; padding-right: 14px; }
}

/* ===== Update 4: Grid-Blowout verhindern (Kategorie-Leiste zwang Inhalt zu breit) ===== */
.layout{ min-width: 0; }
.layout > *{ min-width: 0; }
.rail, .rail-inner{ min-width: 0; }
.content{ min-width: 0; max-width: 100%; }

/* ===== Update 5: Burger-Kategoriemenue ===== */
.toolbar-top{ display:flex; gap:8px; align-items:stretch; }
.toolbar-top .search-box{ flex:1; min-width:0; }
.cat-burger{ flex:0 0 auto; width:48px; border:1px solid var(--border); background:var(--surface);
  border-radius:13px; color:var(--text); display:grid; place-items:center; cursor:pointer; transition:border-color .15s,background .15s; }
.cat-burger:hover{ border-color:var(--accent-line); }
.cat-burger .ic{ width:22px; height:22px; }

.cat-menu-backdrop{ position:fixed; inset:0; background:rgba(0,0,0,.45); z-index:85; }
.cat-menu{ position:fixed; top:0; left:0; right:0; z-index:86; background:var(--surface);
  border-bottom:1px solid var(--border-strong); box-shadow:var(--shadow); max-height:86vh; overflow:auto;
  border-radius:0 0 18px 18px; margin:0 auto; max-width:760px; }
.cat-menu-head{ position:sticky; top:0; background:var(--surface); display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px; border-bottom:1px solid var(--border); font-size:16px; }
.cat-menu-head b{ display:flex; align-items:center; gap:9px; }
.cat-menu-head b i{ color:var(--accent); }
.cat-menu-x{ border:none; background:var(--chip); width:36px; height:36px; border-radius:9px; font-size:22px; line-height:1; cursor:pointer; color:var(--text); }
.cat-menu-list{ padding:8px; display:grid; gap:4px; }
@media (min-width:560px){ .cat-menu-list{ grid-template-columns:1fr 1fr; } }
.cat-menu-list a{ display:flex; align-items:center; gap:12px; padding:11px 12px; border-radius:11px; text-decoration:none; color:var(--text); font-weight:600; }
.cat-menu-list a:hover{ background:var(--chip); }
.cat-menu-list .cm-ic{ width:32px; height:32px; border-radius:9px; display:grid; place-items:center; color:var(--accent); background:var(--accent-soft); border:1px solid var(--accent-line); flex:0 0 auto; font-size:14px; }
.cat-menu-list .cm-t{ flex:1; min-width:0; }
.cat-menu-list .cm-c{ color:var(--muted-2); font-size:12px; background:var(--chip); border-radius:999px; padding:2px 9px; }
.cat-menu[hidden], .cat-menu-backdrop[hidden]{ display:none; }

/* ===== Update 6: nativen Such-X ausblenden (nur eigener Button) + Burger ab Desktop aus ===== */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration{ -webkit-appearance: none; appearance: none; display: none; }
input[type="search"]{ appearance: none; }
@media (min-width: 981px){ .cat-burger{ display: none; } }
