:root{color-scheme:light}body{margin:0;padding:0;font:14px -apple-system,BlinkMacSystemFont,sans-serif;background:#faf9f5;color:#141413}img{max-width:100%}[hidden]:not([hidden=until-found i]){display:none!important}

  @import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

  :root{
    --bg:#eef1f5; --surface:#ffffff; --surface-2:#f4f6f9; --surface-3:#eaeef3;
    --border:#dbe0e8; --border-strong:#c4cbd6; --text:#171b22; --muted:#5a6270; --muted-2:#838ba0;
    --accent:#0f6fb0; --accent-ink:#ffffff; --accent-soft:#e4f0fa;
    --link:#00265B; --link-soft:#e1e8f5; --node:#00265B; --node-soft:#dfe6f3; --ok:#1f8f5a;
    --shadow: 0 1px 2px rgba(20,23,28,.05), 0 10px 24px -14px rgba(20,23,28,.14);
    --grid-line: rgba(20,25,35,.05);
    color-scheme: light;
  }
  :root[data-theme="dark"]{ color-scheme: dark; }
  @media (prefers-color-scheme: dark){ :root:not([data-theme="light"]){ color-scheme: dark; } }
  @media (prefers-color-scheme: dark){
    :root:not([data-theme="light"]){
      --bg:#242424; --surface:#333333; --surface-2:#3a3a3a; --surface-3:#2c2c2c;
      --border:#474747; --border-strong:#5c5c5c; --text:#f8f8f6; --muted:#b8b8b3; --muted-2:#8c8c86;
      --accent:#6cb8ef; --accent-ink:#0c1e2b; --accent-soft:#1e3546;
      --link:#7FB6FF; --link-soft:#1b2b45; --node:#7FA8E8; --node-soft:#1b2b45; --ok:#3ecf8e;
      --shadow: 0 1px 2px rgba(0,0,0,.35), 0 14px 30px -16px rgba(0,0,0,.6);
      --grid-line: rgba(255,255,255,.05);
    }
  }
  :root[data-theme="dark"]{
    --bg:#242424; --surface:#333333; --surface-2:#3a3a3a; --surface-3:#2c2c2c;
    --border:#474747; --border-strong:#5c5c5c; --text:#f8f8f6; --muted:#b8b8b3; --muted-2:#8c8c86;
    --accent:#6cb8ef; --accent-ink:#0c1e2b; --accent-soft:#1e3546;
    --link:#7FB6FF; --link-soft:#1b2b45; --node:#7FA8E8; --node-soft:#1b2b45; --ok:#3ecf8e;
    --shadow: 0 1px 2px rgba(0,0,0,.35), 0 14px 30px -16px rgba(0,0,0,.6);
    --grid-line: rgba(255,255,255,.05);
  }

  *{ box-sizing:border-box; }
  body{ background:var(--bg); color:var(--text); font-family:'Manrope', ui-sans-serif, system-ui, sans-serif; -webkit-font-smoothing:antialiased; }
  h1,h2,h3{ font-family:'Rajdhani','Manrope',sans-serif; font-weight:700; letter-spacing:.005em; text-wrap:balance; margin:0; }
  .mono{ font-family:'JetBrains Mono', ui-monospace, monospace; }
  a{ color:inherit; text-decoration:none; }
  button{ font:inherit; }
  .wrap{ max-width:1280px; margin:0 auto; padding:0 22px; }

  .route-strip{ height:5px; position:relative; overflow:hidden; background:repeating-linear-gradient(90deg, var(--accent) 0 10px, transparent 10px 18px); }
  .route-strip .runner{ position:absolute; top:0; left:-6%; width:6%; height:100%; background:linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent); animation: run 5.5s linear infinite; }
  @media (prefers-reduced-motion: reduce){ .route-strip .runner{ animation:none; display:none; } }
  @keyframes run{ to{ left:106%; } }

  header.site{ background:var(--surface); border-bottom:1px solid var(--border); }
  .topbar{ display:flex; align-items:center; justify-content:space-between; padding:8px 0; font-size:.76rem; color:var(--muted-2); border-bottom:1px solid var(--border); }
  .topbar .ticker{ display:flex; gap:16px; align-items:center; }
  .topbar .ticker b{ color:var(--accent); font-weight:700; }
  .topbar .right-links{ display:flex; gap:14px; align-items:center; }
  .topbar .right-links a:hover{ color:var(--accent); }
  .topbar-divider{ width:1px; height:12px; background:var(--border-strong); }
  .auth-link{ font-weight:700; color:var(--text); }
  .auth-link.accent{ color:var(--accent); }
  .theme-toggle{ display:inline-flex; align-items:center; justify-content:center; width:25px; height:25px; border-radius:6px; border:1px solid var(--border); background:var(--surface-2); cursor:pointer; color:var(--muted); }
  .theme-toggle:hover{ color:var(--accent); border-color:var(--accent); }
  .theme-toggle svg{ width:13px; height:13px; }

  .mainbar{ display:flex; align-items:center; gap:26px; padding:15px 0; }
  .logo{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
  .logo-badge{ width:42px; height:42px; border-radius:8px; background:linear-gradient(160deg, var(--accent), #063f63); color:#fff; display:flex; align-items:center; justify-content:center; font-family:'Rajdhani',sans-serif; font-weight:700; font-size:1rem; box-shadow:var(--shadow); position:relative; }
  .logo-badge:after{ content:""; position:absolute; inset:-3px; border:1px solid var(--border-strong); border-radius:11px; opacity:.5; }
  .logo-text{ line-height:1.05; }
  .logo-text .name{ font-family:'Rajdhani',sans-serif; font-weight:700; font-size:1.28rem; }
  .logo-text .tag{ font-size:.66rem; color:var(--muted); letter-spacing:.09em; text-transform:uppercase; }
  .search{ flex:1; max-width:420px; display:flex; align-items:center; gap:8px; background:var(--surface-2); border:1px solid var(--border); border-radius:8px; padding:9px 14px; color:var(--muted); font-size:.85rem; }
  .search svg{ flex-shrink:0; opacity:.6; }
  .mainbar-actions{ display:flex; align-items:center; gap:9px; margin-left:auto; }
  .btn{ display:inline-flex; align-items:center; gap:7px; padding:9px 16px; border-radius:7px; font-weight:700; font-size:.83rem; border:1px solid transparent; cursor:pointer; font-family:'Rajdhani',sans-serif; letter-spacing:.02em; }
  .btn-accent{ background:var(--accent); color:var(--accent-ink); }
  .btn-ghost{ background:transparent; border-color:var(--border-strong); color:var(--text); }
  .avatar{ width:36px; height:36px; border-radius:7px; background:var(--node-soft); color:var(--node); display:flex; align-items:center; justify-content:center; font-weight:700; font-family:'Rajdhani',sans-serif; border:1px solid var(--border); }

  nav.crumbs{ display:flex; gap:1px; padding:0 0 13px; font-family:'Rajdhani',sans-serif; font-weight:600; font-size:.91rem; }
  nav.crumbs a{ padding:7px 13px; border-radius:6px; color:var(--muted); }
  nav.crumbs a.active{ background:var(--accent-soft); color:var(--accent); }
  nav.crumbs a:hover{ color:var(--text); }
  nav.crumbs a.crumb-highlight{ margin-left:auto; display:inline-flex; align-items:center; gap:6px; background:var(--node-soft); color:var(--node); font-weight:700; }
  nav.crumbs a.crumb-highlight:hover{ background:var(--node); color:#fff; }

  .breadcrumb{ display:flex; align-items:center; gap:6px; margin:16px 0 14px; font-size:.78rem; color:var(--muted-2); }
  .breadcrumb a:hover{ color:var(--accent); }
  .breadcrumb .sep{ opacity:.6; }
  .breadcrumb .here{ color:var(--text); font-weight:700; }

  /* ---- category hero ---- */
  .cat-hero{
    position:relative; border:1px solid var(--border); border-radius:6px; overflow:hidden;
    background: var(--surface);
    display:flex; align-items:center; gap:24px; padding:30px 30px 26px; flex-wrap:wrap;
    isolation:isolate;
  }
  /* Hareketli arka plan: logo mavisinden süzülen yumuşak ışık. Kareli ızgaranın yerine geçer. */
  .cat-hero::before{
    content:""; position:absolute; inset:-45%; z-index:-2; pointer-events:none;
    background:
      radial-gradient(40% 52% at 16% 34%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 70%),
      radial-gradient(34% 44% at 82% 62%, color-mix(in srgb, var(--node) 18%, transparent), transparent 72%);
    filter:blur(8px);
    animation:katHeroSuzul 30s ease-in-out infinite alternate;
  }
  .cat-hero::after{
    content:""; position:absolute; inset:0; z-index:-1; pointer-events:none;
    background-image:radial-gradient(var(--grid-line) 1px, transparent 1px);
    background-size:20px 20px; opacity:.7;
    animation:katHeroKaydir 46s linear infinite;
  }
  .cat-hero > *{ position:relative; z-index:1; }
  @keyframes katHeroSuzul{
    0%   { transform:translate3d(0,0,0) scale(1); }
    50%  { transform:translate3d(3%, -2.5%, 0) scale(1.07); }
    100% { transform:translate3d(-2.5%, 2%, 0) scale(1.04); }
  }
  @keyframes katHeroKaydir{
    from{ background-position:0 0; }
    to  { background-position:20px 20px; }
  }
  @media (prefers-reduced-motion: reduce){
    .cat-hero::before, .cat-hero::after{ animation:none; }
  }
  .cat-hero:before{ content:""; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg, var(--accent), var(--node), var(--ok)); }
  .cat-hero-icon{ width:72px; height:72px; border-radius:16px; flex-shrink:0; display:flex; align-items:center; justify-content:center; background:linear-gradient(155deg, var(--accent), #063f63); color:#fff; box-shadow:var(--shadow); }
  .cat-hero-copy{ flex:1; min-width:260px; }
  .cat-hero-copy .eyebrow{ font-family:'Rajdhani',sans-serif; font-weight:700; font-size:.7rem; text-transform:uppercase; letter-spacing:.12em; color:var(--muted-2); margin-bottom:6px; }
  .cat-hero-copy h1{ font-size:2.1rem; margin-bottom:7px; }
  .cat-hero-copy p{ color:var(--muted); font-size:.92rem; max-width:60ch; line-height:1.6; margin-bottom:11px; }
  .cat-hero-trend{ display:inline-flex; align-items:center; gap:6px; font-size:.72rem; font-weight:700; font-family:'Rajdhani',sans-serif; color:var(--ok); background:color-mix(in srgb, var(--ok) 14%, var(--surface)); border:1px solid color-mix(in srgb, var(--ok) 30%, var(--border)); border-radius:20px; padding:4px 11px 4px 8px; }
  .cat-hero-stats{ display:flex; gap:26px; flex-shrink:0; }
  .chs{ text-align:center; }
  .chs b{ display:block; font-family:'JetBrains Mono',monospace; font-size:1.32rem; color:var(--text); }
  .chs span{ font-size:.62rem; color:var(--muted-2); text-transform:uppercase; letter-spacing:.05em; }

  /* ---- shared node grid (kategoriler) ---- */
  .section-head{ display:flex; align-items:baseline; justify-content:space-between; margin:34px 0 14px; }
  .section-head h2{ font-size:1.24rem; }
  .section-head a{ font-size:.81rem; color:var(--link); font-weight:700; }
  .node-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); border:1px solid var(--border); border-radius:6px; overflow:hidden; }
  .node-card{ background:var(--surface); padding:17px 17px 15px; transition:background .15s ease, transform .15s ease; cursor:pointer; position:relative; border-left:3px solid transparent; }
  .node-card:hover{ background:var(--surface-2); border-left-color:var(--accent); }
  .node-card.seg-alt:hover{ border-left-color:var(--node); }
  .node-card.seg-ok:hover{ border-left-color:var(--ok); }
  .node-icon{ width:40px; height:40px; border-radius:9px; margin-bottom:11px; display:flex; align-items:center; justify-content:center; background:linear-gradient(155deg, var(--accent-soft), var(--surface-2)); color:var(--accent); box-shadow:inset 0 0 0 1px var(--border); }
  .node-icon.alt{ background:linear-gradient(155deg, var(--node-soft), var(--surface-2)); color:var(--node); }
  .node-icon.ok{ background:linear-gradient(155deg, color-mix(in srgb, var(--ok) 16%, var(--surface)), var(--surface-2)); color:var(--ok); }
  .node-card h3{ font-size:.96rem; margin-bottom:4px; }
  .node-card p{ font-size:.75rem; color:var(--muted); line-height:1.4; margin-bottom:10px; min-height:2.5em; }
  .node-foot{ display:flex; justify-content:space-between; align-items:center; border-top:1px solid var(--border); padding-top:9px; font-size:.68rem; color:var(--muted-2); }
  .node-foot .cnt{ font-family:'JetBrains Mono',monospace; font-weight:700; color:var(--text); font-size:.74rem; }

  /* ---- segment chip filter (üstteki hızlı filtre şeridi) ---- */
  .chip-filter{ display:flex; flex-wrap:wrap; gap:8px; margin:16px 0 18px; }
  .chip-seg{ display:inline-flex; align-items:center; gap:7px; padding:8px 15px; border-radius:20px; border:1.5px solid var(--border-strong); background:var(--surface); color:var(--text); font-family:'Rajdhani',sans-serif; font-weight:700; font-size:.82rem; cursor:pointer; transition:transform .12s ease, box-shadow .15s ease; }
  .chip-seg .dot{ width:8px; height:8px; border-radius:50%; flex-shrink:0; }
  .chip-seg:hover{ transform:translateY(-1px); }
  .chip-seg[aria-pressed="true"]{ color:#fff; border-color:transparent; box-shadow:var(--shadow); }
  .chip-seg[aria-pressed="true"] .dot{ background:#fff; }
  .chip-seg[data-seg="all"][aria-pressed="true"]{ background:linear-gradient(135deg, var(--text), var(--muted)); }
  .chip-seg[data-seg="motokurye"][aria-pressed="true"]{ background:linear-gradient(135deg, var(--accent), #00265B); }
  .chip-seg[data-seg="motosiklet"][aria-pressed="true"]{ background:linear-gradient(135deg, var(--node), #2f3aa8); }
  .chip-seg[data-seg="bisiklet-kurye"][aria-pressed="true"]{ background:linear-gradient(135deg, var(--ok), #0f5c3a); }
  .chip-seg[data-seg="atv-offroad"][aria-pressed="true"]{ background:linear-gradient(135deg, #b8570c, #6b3306); }
  .chip-seg[data-seg="motokurye"] .dot{ background:var(--accent); }
  .chip-seg[data-seg="motosiklet"] .dot{ background:var(--node); }
  .chip-seg[data-seg="bisiklet-kurye"] .dot{ background:var(--ok); }
  .chip-seg[data-seg="atv-offroad"] .dot{ background:#b8570c; }
  .chip-seg[data-seg="all"] .dot{ background:var(--muted-2); }

  /* ---- layout ---- */
  .panel{ background:var(--surface); border:1px solid var(--border); border-radius:5px; overflow:hidden; }

  /* ---- util strip (reklam + güvenli alışveriş + kategori dağılımı, üstte) ---- */
  .util-strip{ display:grid; grid-template-columns:1.05fr 1fr 1fr 1fr; gap:16px; margin:22px 0; align-items:stretch; }
  .util-strip .ad-slot{ display:flex; flex-direction:column; }
  .util-strip .ad-placeholder{ flex:1; margin:10px; height:auto; min-height:118px; }
  @media (max-width:1040px){ .util-strip{ grid-template-columns:1fr 1fr; } }
  @media (max-width:640px){ .util-strip{ grid-template-columns:1fr; } }

  .topic-filters{ display:flex; gap:8px; padding:11px 16px; border-bottom:1px solid var(--border); background:var(--surface-2); flex-wrap:wrap; }
  .filter-select{ font-family:'Manrope',sans-serif; font-size:.78rem; font-weight:600; color:var(--text); background:var(--surface); border:1px solid var(--border-strong); border-radius:6px; padding:7px 10px; cursor:pointer; }
  .filter-search{ flex:1; min-width:140px; display:flex; align-items:center; gap:6px; background:var(--surface); border:1px solid var(--border-strong); border-radius:6px; padding:7px 10px; color:var(--muted); }
  .filter-search input{ border:none; outline:none; background:transparent; font:inherit; font-size:.78rem; color:var(--text); width:100%; }
  .filter-search svg{ flex-shrink:0; opacity:.6; width:14px; height:14px; }
  .filter-count{ font-size:.72rem; color:var(--muted-2); align-self:center; margin-left:auto; white-space:nowrap; }
  .filter-clear{ display:none; font-size:.72rem; color:var(--link); font-weight:700; cursor:pointer; align-self:center; }
  .filter-clear.show{ display:inline; }

  /* ---- listing grid (classifieds cards) — geniş, sidebar'sız ana panel ---- */
  .listing-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--border); }
  .listing-card{ background:var(--surface); display:flex; flex-direction:column; transition:transform .15s ease, box-shadow .15s ease; position:relative; z-index:0; }
  .listing-card[hidden]{ display:none; }
  .listing-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow); z-index:1; }
  .listing-thumb{ height:140px; position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden; background:var(--surface-3); color:var(--muted-2); }
  .listing-thumb:before{ content:""; position:absolute; inset:0; background-image:linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px); background-size:14px 14px; }
  .listing-thumb svg{ position:relative; z-index:1; }
  .listing-cat-tag{ position:absolute; top:9px; left:9px; z-index:1; font-family:'Rajdhani',sans-serif; font-weight:700; font-size:.62rem; text-transform:uppercase; letter-spacing:.05em; padding:3px 8px; border-radius:4px; background:rgba(255,255,255,.92); border:1px solid var(--border); color:var(--text); }
  :root[data-theme="dark"] .listing-cat-tag{ background:rgba(40,40,40,.88); }
  .listing-fav{ position:absolute; top:9px; right:41px; z-index:2; width:26px; height:26px; border-radius:50%; border:1px solid var(--border-strong); background:rgba(255,255,255,.92); color:var(--text); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease; }
  :root[data-theme="dark"] .listing-fav{ background:rgba(40,40,40,.88); }
  .listing-fav:hover{ border-color:#e0263f; color:#e0263f; transform:scale(1.06); }
  .listing-fav[aria-pressed="true"]{ background:#e0263f; border-color:#e0263f; color:#fff; }
  .listing-fav svg{ width:14px; height:14px; }
  .listing-body{ padding:12px 14px 13px; display:flex; flex-direction:column; gap:5px; flex:1; }
  .listing-title{ font-size:.85rem; font-weight:700; line-height:1.32; min-height:2.3em; overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; }
  .listing-price{ font-family:'JetBrains Mono',monospace; font-weight:700; font-size:1.08rem; color:var(--accent); margin-top:2px; }
  .listing-seller{ display:flex; align-items:center; gap:6px; margin-top:2px; }
  .listing-seller .av{ width:18px; height:18px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-family:'Rajdhani',sans-serif; font-weight:700; font-size:.56rem; flex-shrink:0; }
  .listing-seller .nm{ font-size:.68rem; color:var(--muted); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
  .listing-seller .verified{ color:var(--ok); flex-shrink:0; }
  .listing-meta{ display:flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:9px; border-top:1px solid var(--border); font-size:.68rem; color:var(--muted-2); }
  .listing-meta .loc{ display:flex; align-items:center; gap:4px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
  .listing-meta .loc svg{ flex-shrink:0; opacity:.7; }
  .listing-empty{ display:none; flex-direction:column; align-items:center; gap:8px; padding:44px 20px; color:var(--muted); text-align:center; grid-column:1/-1; background:var(--surface); }
  .listing-empty.show{ display:flex; }
  .listing-empty svg{ opacity:.4; }
  .listing-empty b{ color:var(--text); font-size:.88rem; }
  .listing-empty a{ color:var(--link); font-weight:700; font-size:.8rem; }
  .listing-loadmore{ display:flex; align-items:center; justify-content:center; gap:8px; padding:13px; border-top:1px solid var(--border); background:var(--surface-2); color:var(--text); font-family:'Rajdhani',sans-serif; font-weight:700; font-size:.82rem; cursor:pointer; }
  .listing-loadmore:hover{ color:var(--accent); }
  @media (max-width:1200px){ .listing-grid{ grid-template-columns:repeat(3,1fr); } }
  @media (max-width:860px){ .listing-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:560px){ .listing-grid{ grid-template-columns:1fr; } }

  /* ---- karşılaştırma (compare) ---- */
  .cmp-toggle{ position:absolute; top:9px; right:9px; z-index:2; width:26px; height:26px; border-radius:50%; border:1px solid var(--border-strong); background:rgba(255,255,255,.92); color:var(--text); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:background .15s ease, color .15s ease, border-color .15s ease; }
  :root[data-theme="dark"] .cmp-toggle{ background:rgba(40,40,40,.88); }
  .cmp-toggle:hover{ border-color:var(--accent); color:var(--accent); }
  .cmp-toggle[aria-pressed="true"]{ background:var(--accent); border-color:var(--accent); color:var(--accent-ink); }
  .cmp-toggle svg{ width:14px; height:14px; }

  .compare-bar{ position:fixed; left:50%; bottom:18px; z-index:50; transform:translateX(-50%) translateY(140%); background:var(--surface); border:1px solid var(--border-strong); border-radius:10px; box-shadow:var(--shadow); padding:10px 12px 10px 16px; display:flex; align-items:center; gap:14px; transition:transform .25s ease; max-width:92vw; }
  .compare-bar.show{ transform:translateX(-50%) translateY(0); }
  .compare-bar .cb-count{ font-family:'Rajdhani',sans-serif; font-weight:700; font-size:.84rem; white-space:nowrap; }
  .compare-bar .cb-count b{ color:var(--accent); }
  .compare-bar .cb-thumbs{ display:flex; gap:6px; }
  .compare-bar .cb-thumb{ width:32px; height:32px; border-radius:6px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:#fff; overflow:hidden; flex-shrink:0; }
  .compare-bar .cb-clear{ font-size:.74rem; color:var(--muted-2); font-weight:600; cursor:pointer; white-space:nowrap; }
  .compare-bar .cb-clear:hover{ color:#e0263f; }
  @media (max-width:640px){ .compare-bar .cb-thumbs{ display:none; } }

  .cmp-modal-overlay{ position:fixed; inset:0; z-index:60; background:rgba(10,14,20,.55); display:flex; align-items:center; justify-content:center; padding:24px; opacity:0; pointer-events:none; transition:opacity .18s ease; }
  .cmp-modal-overlay.show{ opacity:1; pointer-events:auto; }
  .cmp-modal{ background:var(--surface); border-radius:10px; width:100%; max-width:980px; max-height:85vh; overflow:auto; box-shadow:var(--shadow); }
  .cmp-modal-head{ display:flex; align-items:center; justify-content:space-between; padding:16px 20px; border-bottom:1px solid var(--border); position:sticky; top:0; background:var(--surface); z-index:1; }
  .cmp-modal-head h3{ font-size:1.08rem; }
  .cmp-close{ width:30px; height:30px; border-radius:50%; border:1px solid var(--border-strong); background:var(--surface-2); color:var(--text); display:flex; align-items:center; justify-content:center; cursor:pointer; flex-shrink:0; }
  .cmp-close:hover{ border-color:var(--accent); color:var(--accent); }
  .cmp-table-wrap{ overflow-x:auto; }
  .cmp-table{ width:100%; border-collapse:collapse; font-size:.82rem; }
  .cmp-table th, .cmp-table td{ padding:12px 16px; border-bottom:1px solid var(--border); text-align:left; vertical-align:top; }
  .cmp-table th.rowlbl{ font-family:'Rajdhani',sans-serif; font-weight:700; color:var(--muted); width:130px; background:var(--surface-2); white-space:nowrap; }
  .cmp-item-head{ min-width:180px; }
  .cmp-item-thumb{ width:100%; height:74px; border-radius:6px; display:flex; align-items:center; justify-content:center; color:#fff; margin-bottom:8px; }
  .cmp-item-title{ font-weight:700; font-size:.85rem; margin-bottom:4px; }
  .cmp-remove{ font-size:.68rem; color:var(--muted-2); font-weight:600; cursor:pointer; }
  .cmp-remove:hover{ color:#e0263f; }
  .cmp-price-cell{ font-family:'JetBrains Mono',monospace; font-weight:700; color:var(--accent); }
  .cmp-empty-cell{ color:var(--muted-2); }

  /* ---- ad slot ---- */
  .ad-slot{ background:var(--surface); border:1px solid var(--border); border-radius:5px; overflow:hidden; }
  .ad-ctrl{ display:flex; align-items:center; justify-content:space-between; gap:10px; padding:8px 13px; border-bottom:1px solid var(--border); background:var(--surface-2); }
  .ad-ctrl-label{ font-size:.68rem; font-weight:700; color:var(--muted); font-family:'Rajdhani',sans-serif; text-transform:uppercase; letter-spacing:.05em; display:flex; gap:6px; align-items:center; }
  .ad-ctrl-label .mono{ color:var(--muted-2); font-weight:500; text-transform:none; letter-spacing:0; }
  .switch{ position:relative; width:32px; height:18px; border-radius:999px; background:var(--border-strong); border:none; cursor:pointer; flex-shrink:0; padding:0; }
  .switch .knob{ position:absolute; top:2px; left:2px; width:14px; height:14px; border-radius:50%; background:#fff; transition:transform .15s ease; box-shadow:0 1px 2px rgba(0,0,0,.35); }
  .switch[aria-checked="true"]{ background:var(--accent); }
  .switch[aria-checked="true"] .knob{ transform:translateX(14px); }
  .ad-placeholder{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px; margin:10px; border:1.5px dashed var(--border-strong); border-radius:4px; color:var(--muted-2); font-size:.72rem; height:200px; }
  .ad-placeholder.leaderboard{ height:70px; }
  .ad-body[hidden]{ display:none; }

  /* ---- triple slider (kaydırmalı öne çıkarılmış ilanlar) ---- */
  .triple-slider{ margin-bottom:20px; }
  .triple-slider-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
  .triple-slider-head h2{ font-size:1.05rem; font-family:'Rajdhani',sans-serif; font-weight:700; }
  .triple-slider-head .sub{ font-size:.7rem; color:var(--muted-2); font-weight:600; text-transform:uppercase; letter-spacing:.05em; background:var(--surface-2); border:1px solid var(--border); border-radius:4px; padding:2px 7px; margin-left:8px; }
  .slider-nav{ display:flex; gap:7px; }
  .slider-arrow{ width:30px; height:30px; border-radius:50%; border:1px solid var(--border-strong); background:var(--surface); display:flex; align-items:center; justify-content:center; cursor:pointer; color:var(--text); flex-shrink:0; }
  .slider-arrow:hover{ border-color:var(--accent); color:var(--accent); }
  .triple-slider-viewport{ overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; -ms-overflow-style:none; }
  .triple-slider-viewport::-webkit-scrollbar{ display:none; }
  .triple-track{ display:flex; gap:14px; }
  .triple-slide{ flex:0 0 calc((100% - 28px)/3); scroll-snap-align:start; }
  .slide-card{ border:1px solid var(--border); border-radius:8px; overflow:hidden; background:var(--surface); height:100%; transition:transform .15s ease, border-color .15s ease; }
  .slide-card:hover{ transform:translateY(-3px); border-color:var(--accent); }
  .slide-banner{ height:104px; position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden; }
  .slide-banner:before{ content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size:13px 13px; }
  .slide-banner svg{ position:relative; z-index:1; color:#fff; opacity:.95; }
  .slide-banner.sg1{ background:linear-gradient(135deg, var(--accent), #063f63); }
  .slide-banner.sg2{ background:linear-gradient(135deg, var(--node), #2f3aa8); }
  .slide-banner.sg3{ background:linear-gradient(135deg, var(--ok), #0f5c3a); }
  .slide-sponsor{ position:absolute; top:9px; left:10px; z-index:1; font-family:'Rajdhani',sans-serif; font-weight:700; font-size:.6rem; text-transform:uppercase; letter-spacing:.07em; color:#fff; background:rgba(0,0,0,.28); border-radius:4px; padding:2px 7px; }
  .slide-body{ padding:12px 14px 14px; }
  .slide-body h4{ font-size:.87rem; font-weight:700; margin-bottom:4px; font-family:'Rajdhani','Manrope',sans-serif; }
  .slide-body .price{ font-family:'JetBrains Mono',monospace; font-weight:700; font-size:.88rem; color:var(--accent); margin-bottom:8px; }
  .slide-body p{ font-size:.73rem; color:var(--muted); line-height:1.42; margin-bottom:10px; min-height:2.6em; }
  .slide-body .btn{ padding:6px 12px; font-size:.72rem; }
  @media (max-width:1040px){ .triple-slide{ flex:0 0 calc((100% - 14px)/2); } }
  @media (max-width:640px){ .triple-slide{ flex:0 0 100%; } }

  /* ---- footer (site-wide) ---- */
  .foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:24px; margin-bottom:20px; }
  .foot-col h4{ font-family:'Rajdhani',sans-serif; font-size:.8rem; text-transform:uppercase; letter-spacing:.06em; color:var(--muted); margin-bottom:9px; }
  .foot-col a{ display:block; padding:3px 0; }
  .foot-col a:hover{ color:var(--accent); }

  .side-block{ margin-bottom:20px; }
  .side-head{ padding:12px 15px; border-bottom:1px solid var(--border); font-family:'Rajdhani',sans-serif; font-weight:700; font-size:.88rem; display:flex; justify-content:space-between; align-items:center; }
  .side-head span{ font-size:.7rem; color:var(--muted-2); font-weight:600; }
  .tip-row{ display:flex; gap:10px; padding:11px 15px; border-bottom:1px solid var(--border); align-items:flex-start; }
  .tip-row:last-child{ border-bottom:none; }
  .tip-num{ flex-shrink:0; width:22px; height:22px; border-radius:50%; background:var(--accent-soft); color:var(--accent); display:flex; align-items:center; justify-content:center; font-family:'JetBrains Mono',monospace; font-weight:700; font-size:.68rem; margin-top:1px; }
  .tip-row p{ font-size:.78rem; color:var(--muted); line-height:1.45; }

  .cta-block{ background:linear-gradient(155deg, var(--accent), #063f63); border-radius:5px; padding:19px; color:#fff; }
  .cta-block h3{ font-size:1.05rem; margin-bottom:6px; }
  .cta-block p{ font-size:.81rem; opacity:.92; margin-bottom:14px; line-height:1.45; }
  .cta-block .btn-ghost{ border-color:rgba(255,255,255,.5); color:#fff; }

  .related-cards{ display:flex; flex-direction:column; }
  .related-card{ display:flex; gap:10px; padding:11px 15px; border-bottom:1px solid var(--border); }
  .related-card:last-child{ border-bottom:none; }
  .related-card:hover{ background:var(--surface-2); }
  .related-thumb{ width:76px; aspect-ratio:16/9; border-radius:6px; flex-shrink:0; display:flex; align-items:center; justify-content:center; color:#fff; }
  .related-thumb svg{ width:15px; height:15px; }
  .related-info{ min-width:0; flex:1; }
  .related-info h3{ font-size:.79rem; font-weight:700; line-height:1.32; margin-bottom:4px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
  .related-meta{ font-size:.66rem; color:var(--muted-2); }

  footer{ margin-top:44px; border-top:1px solid var(--border); padding:28px 0 24px; color:var(--muted-2); font-size:.79rem; }
  .foot-bottom{ display:flex; justify-content:space-between; border-top:1px solid var(--border); padding-top:15px; font-size:.73rem; }

  @media (max-width: 1040px){
    .layout{ grid-template-columns:1fr; }
    .node-grid{ grid-template-columns:repeat(2,1fr); }
    .foot-grid{ grid-template-columns:1fr 1fr; }
  }

  /* ---- mobil menü & taşma güvenliği ---- */
  html, body{ max-width:100%; overflow-x:hidden; }
  .hamburger{ display:none; align-items:center; justify-content:center; width:36px; height:36px; border-radius:7px; border:1px solid var(--border-strong); background:var(--surface-2); color:var(--text); cursor:pointer; flex-shrink:0; }
  .hamburger:hover{ border-color:var(--accent); color:var(--accent); }
  .hamburger svg{ width:18px; height:18px; }
  .mobile-drawer-overlay{ position:fixed; inset:0; background:rgba(10,12,16,.5); z-index:60; opacity:0; pointer-events:none; transition:opacity .18s ease; }
  .mobile-drawer-overlay.open{ opacity:1; pointer-events:auto; }
  .mobile-drawer{ position:fixed; top:0; right:0; bottom:0; width:82%; max-width:320px; background:var(--surface); z-index:61; box-shadow:-8px 0 24px rgba(0,0,0,.2); transform:translateX(100%); transition:transform .2s ease; display:flex; flex-direction:column; overflow-y:auto; }
  .mobile-drawer.open{ transform:translateX(0); }
  .mobile-drawer-head{ display:flex; align-items:center; justify-content:space-between; padding:14px 16px; border-bottom:1px solid var(--border); }
  .mobile-drawer-head .logo-text .name{ font-family:'Rajdhani',sans-serif; font-weight:700; font-size:1.05rem; }
  .mobile-drawer-close{ display:flex; align-items:center; justify-content:center; width:32px; height:32px; border-radius:7px; border:1px solid var(--border-strong); background:var(--surface-2); color:var(--text); cursor:pointer; }
  .mobile-drawer-close:hover{ color:var(--accent); border-color:var(--accent); }
  .mobile-drawer-search{ margin:14px 16px 4px; display:flex; align-items:center; gap:8px; background:var(--surface-2); border:1px solid var(--border); border-radius:8px; padding:9px 12px; color:var(--muted); font-size:.85rem; }
  .mobile-drawer-search svg{ flex-shrink:0; opacity:.6; }
  .mobile-drawer-nav{ display:flex; flex-direction:column; padding:10px 8px; font-family:'Rajdhani',sans-serif; font-weight:600; font-size:.98rem; }
  .mobile-drawer-nav a{ padding:11px 12px; border-radius:7px; color:var(--text); }
  .mobile-drawer-nav a.active{ background:var(--accent-soft); color:var(--accent); }
  .mobile-drawer-actions{ display:flex; flex-direction:column; gap:9px; padding:14px 16px; border-top:1px solid var(--border); margin-top:auto; }
  .mobile-drawer-actions .btn{ width:100%; justify-content:center; }
  .mobile-drawer-auth{ display:flex; gap:14px; padding:0 16px 16px; font-size:.82rem; }
  .mobile-drawer-auth a{ font-weight:700; }
  .mobile-drawer-auth a.accent{ color:var(--accent); }
  body.drawer-open{ overflow:hidden; }

  @media (max-width:900px){
    .hamburger{ display:inline-flex; }
    nav.crumbs{ display:none; }
  }
  @media (max-width:680px){
    .topbar .ticker{ display:none; }
    .topbar .right-links a:not(.auth-link){ display:none; }
    .topbar .right-links{ gap:10px; }
    .mainbar{ flex-wrap:wrap; gap:10px 12px; }
    .search{ order:3; flex:1 1 100%; max-width:100%; }
    .mainbar-actions{ margin-left:0; }
  }

/* Sayfa içi sekmeler (İlanlarım gibi) */
.tabs{ display:flex; gap:6px; flex-wrap:wrap; }
.tabs a{
  display:inline-flex; align-items:center; padding:8px 16px; border-radius:9px;
  font-size:.88rem; font-weight:600; text-decoration:none;
  color:var(--muted); background:var(--surface-2); border:1px solid var(--border);
  transition:background .15s, color .15s;
}
.tabs a:hover{ color:var(--text); background:var(--surface-3); }
.tabs a.on{ background:var(--accent); color:var(--accent-ink); border-color:var(--accent); }
