/* ===========================================================
   Prisma-inspired design system
   =========================================================== */
:root {
  --bg: #0a0a0b;
  --bg-soft: #111114;
  --surface: #ffffff;
  --surface-2: #f7f7f8;
  --ink: #0e0e10;
  --ink-soft: #3f3f46;
  --muted: #71717a;
  --line: #ececef;
  --line-dark: #1f1f24;

  --accent: #6d5efc;       /* indigo/violet */
  --accent-2: #d65db1;     /* pink */
  --accent-3: #f59e0b;     /* amber */
  --grad: linear-gradient(100deg, #6d5efc 0%, #b15bd6 38%, #ec5a8f 64%, #f59e0b 100%);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow: 0 1px 2px rgba(16,16,18,.04), 0 8px 28px rgba(16,16,18,.06);
  --shadow-lg: 0 18px 60px rgba(16,16,18,.18);

  --font: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface-2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
[v-cloak] { display: none; }

.wrap { width: min(1180px, 92vw); margin-inline: auto; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-3);
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  border: 0; cursor: pointer; border-radius: var(--radius-pill);
  padding: 11px 14px 11px 20px; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, opacity .2s;
}
.btn:active { transform: scale(.97); }
.btn .arrow {
  display: grid; place-items: center; width: 30px; height: 30px;
  border-radius: 50%; font-size: 14px;
}
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.btn-light .arrow { background: var(--ink); color: #fff; }
.btn-light:hover { box-shadow: var(--shadow-lg); }
.btn-dark { background: #16161a; color: #fff; padding: 11px 22px; }
.btn-dark:hover { background: #26262c; }
.btn-grad { color: #fff; padding: 12px 24px; background: var(--grad); }
.btn-grad:hover { filter: brightness(1.06); box-shadow: 0 10px 30px rgba(180,90,180,.35); }
.btn-ghost { background: transparent; color: var(--ink); padding: 10px 16px; }
.btn-ghost:hover { background: var(--surface-2); }
.btn-sm { font-size: 13px; padding: 9px 16px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ===========================================================
   Header
   =========================================================== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.topbar.scrolled {
  background: rgba(10,10,11,.72); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .wrap { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 74px; gap: 16px; }
.topbar .nav-wrap { display: flex; justify-content: center; }
.topbar .actions { display: flex; justify-content: flex-end; }
.brand { display: flex; align-items: center; gap: 10px; color: #fff; justify-self: start; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--grad);
  -webkit-mask: var(--prism-mask); mask: var(--prism-mask);
  position: relative;
}
.brand .logo-prism {
  width: 28px; height: 28px;
}
.brand .logo-img { height: 30px; width: auto; display: block; }
.brand b { font-size: 21px; font-weight: 700; letter-spacing: -.02em; }
.brand .tag {
  font-size: 9.5px; font-weight: 700; letter-spacing: .14em; color: #c7c7d1;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  padding: 4px 9px; border-radius: var(--radius-pill);
  text-transform: uppercase; align-self: center;
}
.nav-pill {
  display: flex; align-items: center; gap: 8px;
  background: transparent; border: 0; padding: 0;
}
.nav-pill a {
  color: rgba(255,255,255,.72); font-size: 14.5px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-pill); transition: color .2s;
}
.nav-pill a:hover { color: #fff; }

.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.08); color: #fff; font-weight: 600; font-size: 14px;
  border: 1px solid rgba(255,255,255,.18); cursor: pointer; padding: 10px 18px;
  border-radius: var(--radius-pill); backdrop-filter: blur(6px); transition: background .2s, transform .15s, border-color .2s;
}
.cart-btn:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.3); }
.cart-btn:active { transform: scale(.97); }
.cart-btn .count {
  min-width: 20px; height: 20px; padding: 0 6px; border-radius: var(--radius-pill);
  background: var(--grad); color: #fff; font-size: 12px; font-weight: 700;
  display: grid; place-items: center;
}

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  background:
    radial-gradient(900px 460px at 78% -5%, rgba(109,94,252,.22), transparent 60%),
    radial-gradient(700px 420px at 100% 40%, rgba(236,90,143,.16), transparent 55%),
    var(--bg);
  color: #fff; padding: 104px 0 92px; position: relative; overflow: hidden;
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero .eyebrow { color: #a5a5b3; }
.hero h1 {
  font-size: clamp(36px, 4.6vw, 58px); line-height: 1.04; font-weight: 600;
  letter-spacing: -.03em; margin: 18px 0 0;
}
.hero h1 .grad-text { white-space: nowrap; }
.hero p.lead {
  margin: 22px 0 0; max-width: 46ch; color: #b6b6c0; font-size: 17px; line-height: 1.6;
}
.hero .cta { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { margin-top: 44px; display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats .s b { display: block; font-size: 27px; font-weight: 800; letter-spacing: -.03em; }
.hero-stats .s span { font-size: 13px; color: #8e8e9b; }

/* Hero visual — image */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-img {
  width: 100%; max-width: 520px; height: auto; display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* (legacy) glass preview card */
.hero-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 18px; backdrop-filter: blur(8px);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.hero-card .hc-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 6px 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
.hero-card .hc-head .t { font-size: 13px; font-weight: 600; color: #cfcfd8; }
.hero-card .hc-head .dots { display: flex; gap: 6px; }
.hero-card .hc-head .dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.18); }
.hero-row {
  display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; gap: 14px;
  padding: 13px 6px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero-row:last-child { border-bottom: 0; }
.hero-row .nm { font-size: 14px; font-weight: 600; color: #fff; }
.hero-row .mt { display: flex; gap: 6px; }
.hero-row .mt span {
  font-size: 11px; font-weight: 600; color: #cfcfd8;
  background: rgba(255,255,255,.07); border-radius: 6px; padding: 2px 7px;
}
.hero-row .pr { font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap; }
.hero-row .add {
  width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  background: var(--grad); color: #fff; font-size: 15px; font-weight: 700;
}
.hero-float {
  position: absolute; right: -14px; bottom: -18px;
  background: #fff; color: var(--ink); border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px;
}
.hero-float .ic { width: 34px; height: 34px; border-radius: 10px; background: var(--grad); display: grid; place-items: center; color: #fff; }
.hero-float b { font-size: 16px; display: block; line-height: 1.1; }
.hero-float span { font-size: 11px; color: var(--muted); }

/* ===========================================================
   Section / catalog
   =========================================================== */
.section { padding: 64px 0 90px; }
.section-head { margin-bottom: 30px; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 46px); font-weight: 500; letter-spacing: -.025em;
  margin: 14px 0 0; line-height: 1.04;
}
.section-head p { color: var(--muted); font-size: 16px; max-width: 60ch; margin: 14px 0 0; line-height: 1.6; }

/* ---------- Catalog layout: sidebar + main ---------- */
#catalog .wrap { width: min(1320px, 95vw); }
.catalog-layout { display: grid; grid-template-columns: 236px minmax(0, 1fr); gap: 20px; align-items: start; }
.catalog-main { min-width: 0; }
.sidebar {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px 18px 6px; position: sticky; top: 88px;
}
.sb-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 14px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.sb-head .fb-clear { position: static; font-size: 13px; font-weight: 600; color: var(--muted); background: none; border: 0; cursor: pointer; padding: 0; }
.sb-head .fb-clear:hover { color: #ef4444; }
.sb-fld { margin-bottom: 18px; }
.sb-fld > label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .03em; color: var(--muted); margin-bottom: 9px; }
.sb-fld .search { display: block; flex: none; min-width: 0; width: 100%; }
.sb-fld .search input { font-size: 14px; padding: 10px 12px 10px 38px; }
.sb-fld .search .ico { left: 13px; }
.select.wfull { width: 100%; }
.sidebar .seg { width: 100%; }
.sidebar .seg button { flex: 1; padding: 7px 0; }

/* Global PR cells */
.g-name { font-weight: 600; color: var(--ink); display: block; line-height: 1.4; }
.g-cat { font-size: 12.5px; color: var(--muted); }

/* Cart currency blocks */
.sum-block { padding: 4px 0; }
.sum-block + .sum-block { margin-top: 8px; padding-top: 12px; border-top: 1px dashed var(--line); }
.sum-row.strong { font-weight: 800; color: var(--ink); font-size: 15px; padding-top: 8px; }
.sum-row.strong span:last-child { font-size: 17px; }

/* ---------- Tabs ---------- */
.tabs { display: inline-flex; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 6px; margin-bottom: 20px; box-shadow: var(--shadow); }
.tabs button {
  display: inline-flex; align-items: center; gap: 9px; font-family: inherit;
  font-size: 15px; font-weight: 600; color: var(--ink-soft); cursor: pointer;
  border: 0; background: transparent; padding: 10px 20px; border-radius: var(--radius-pill);
  transition: all .18s;
}
.tabs button:hover { color: var(--ink); }
.tabs button.active { background: var(--ink); color: #fff; }
.tabs button .tcount {
  font-size: 12px; font-weight: 700; padding: 2px 8px; border-radius: var(--radius-pill);
  background: var(--surface-2); color: var(--ink-soft);
}
.tabs button.active .tcount { background: rgba(255,255,255,.18); color: #fff; }

/* ---------- Toolbar ---------- */
.toolbar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.search {
  position: relative; flex: 1 1 280px; min-width: 220px;
}
.search input {
  width: 100%; font-family: inherit; font-size: 15px;
  padding: 13px 16px 13px 44px; border: 1px solid var(--line);
  border-radius: var(--radius-pill); background: #fff; color: var(--ink);
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.search input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(109,94,252,.12); }
.search .ico { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.select {
  font-family: inherit; font-size: 14px; font-weight: 500; color: var(--ink);
  padding: 12px 16px; border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: #fff; cursor: pointer; outline: none;
}
.result-count { color: var(--muted); font-size: 14px; margin-left: auto; }

/* KDV note */
.kdv-note {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  background: #fff8ee; border: 1px solid #f5e3c5; color: #8a6418;
  border-radius: var(--radius-sm); padding: 11px 16px; margin-bottom: 18px;
  font-size: 13.5px; line-height: 1.5;
}
.kdv-note b { font-weight: 700; color: #7a560f; }
.kdv-note svg { color: var(--accent-3); flex-shrink: 0; }

/* Filter toggle button */
.filter-toggle {
  display: inline-flex; align-items: center; gap: 8px; font-family: inherit;
  font-size: 14px; font-weight: 600; color: var(--ink); cursor: pointer;
  padding: 12px 18px; border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: #fff; transition: border-color .2s, box-shadow .2s;
}
.filter-toggle:hover { border-color: var(--accent); }
.filter-toggle.on { border-color: transparent; background: var(--ink); color: #fff; }
.filter-toggle .fc {
  min-width: 19px; height: 19px; padding: 0 5px; border-radius: var(--radius-pill);
  background: var(--grad); color: #fff; font-size: 11px; font-weight: 700;
  display: grid; place-items: center;
}

/* Filter panel */
.filter-panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 22px; margin-bottom: 18px;
}
.filter-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px 22px;
}
.fld { display: flex; flex-direction: column; gap: 8px; }
.fld > label { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.fld .row2 { display: flex; align-items: center; gap: 8px; }
.fld .row2 span { color: var(--muted); font-size: 13px; }
.fld input[type="number"] {
  width: 100%; font-family: inherit; font-size: 14px; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); outline: none; color: var(--ink);
  -moz-appearance: textfield;
}
.fld input[type="number"]:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(109,94,252,.12); }
.seg { display: inline-flex; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 4px; gap: 2px; }
.seg button {
  font-family: inherit; font-size: 13px; font-weight: 600; color: var(--ink-soft);
  border: 0; background: transparent; padding: 7px 16px; border-radius: var(--radius-pill); cursor: pointer; transition: all .15s;
}
.seg button.active { background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.check { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; font-size: 14px; font-weight: 500; color: var(--ink); }
.check input { width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; }
.filter-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.filter-foot .fcount { font-size: 14px; color: var(--muted); }
.link-btn { background: none; border: 0; cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--accent); padding: 8px 4px; }
.link-btn:hover { text-decoration: underline; }
.price-presets { display: flex; flex-wrap: wrap; gap: 7px; }
.price-presets button {
  font-family: inherit; font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  border: 1px solid var(--line); background: #fff; padding: 7px 12px; border-radius: var(--radius-pill); cursor: pointer; transition: all .15s;
}
.price-presets button:hover { border-color: var(--accent); color: var(--accent); }
.price-presets button.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Minimal filter bar (always open) ---------- */
.filterbar {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; margin-bottom: 20px;
}
.fb-clear {
  position: absolute; top: 14px; right: 18px; z-index: 1;
  font-family: inherit; font-size: 13px; font-weight: 600; color: var(--muted);
  background: none; border: 0; cursor: pointer; padding: 4px 2px;
}
.fb-clear:hover { color: #ef4444; }
.fb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 28px; align-items: start; }
.fb-fld { display: flex; flex-direction: column; gap: 11px; }
.fb-lbl { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 16px; }
.fb-lbl span { font-size: 12px; font-weight: 600; letter-spacing: .03em; color: var(--muted); }
.fb-lbl b { font-size: 12.5px; font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; }
.price-inputs { display: flex; align-items: center; gap: 8px; }
.price-inputs input {
  width: 100%; font-family: inherit; font-size: 14px; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); outline: none; color: var(--ink);
  -moz-appearance: textfield;
}
.price-inputs input::-webkit-outer-spin-button, .price-inputs input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.price-inputs input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(109,94,252,.12); }
.price-inputs .sep { color: var(--muted); }

/* Range slider */
.range {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: var(--radius-pill);
  background: linear-gradient(to right, var(--accent) var(--p,0%), var(--line) var(--p,0%));
  outline: none; cursor: pointer; margin: 6px 0;
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 2px solid var(--accent); box-shadow: var(--shadow); cursor: pointer; transition: transform .12s;
}
.range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.range::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 2px solid var(--accent); cursor: pointer; }

/* Toggle switch */
.switch { display: inline-flex; align-items: center; gap: 11px; cursor: pointer; user-select: none; }
.switch input { display: none; }
.switch .track { width: 42px; height: 24px; border-radius: var(--radius-pill); background: var(--line); position: relative; transition: background .2s; flex-shrink: 0; }
.switch .thumb { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.25); transition: transform .2s; }
.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track .thumb { transform: translateX(18px); }
.switch .sw-label { font-size: 14px; color: var(--ink-soft); font-weight: 500; }

/* Active chips */
.fb-chips { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--line); }
.fb-chips-lbl { font-size: 13px; font-weight: 600; color: var(--muted); margin-right: 2px; }
.chip-tag {
  display: inline-flex; align-items: center; gap: 7px; font-family: inherit; font-size: 13px; font-weight: 600;
  color: var(--ink); background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: 6px 11px 6px 14px; cursor: pointer; transition: all .15s;
}
.chip-tag:hover { border-color: #ef4444; color: #ef4444; background: #fef2f2; }
.chip-tag .x { font-size: 11px; opacity: .6; }

/* ---------- Table (desktop) ---------- */
.table-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; overflow-x: auto;
}
table.catalog { width: 100%; border-collapse: collapse; }
table.catalog thead th {
  text-align: left; font-size: 11.5px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted);
  padding: 14px 11px; background: var(--surface-2); border-bottom: 1px solid var(--line);
  white-space: nowrap; user-select: none;
}
table.catalog thead th.sortable { cursor: pointer; }
table.catalog thead th.sortable:hover { color: var(--ink); }
table.catalog thead th .sort-ar { opacity: .5; font-size: 10px; margin-left: 3px; }
table.catalog thead th.active .sort-ar { opacity: 1; color: var(--accent); }
table.catalog tbody td { padding: 13px 11px; border-bottom: 1px solid var(--line); font-size: 14px; }
table.catalog tbody tr:last-child td { border-bottom: 0; }
table.catalog tbody tr:hover { background: #fbfbfc; }
.site-name { display: flex; flex-direction: column; gap: 2px; }
.site-name a { font-weight: 600; color: var(--ink); }
.site-name a:hover { color: var(--accent); }
.site-name .u { font-size: 12px; color: var(--muted); }
.metric { font-variant-numeric: tabular-nums; color: var(--ink-soft); }
.chip {
  display: inline-block; font-size: 12px; font-weight: 600; padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.chip.yes { background: #e7f6ec; color: #1a7f43; }
.chip.no { background: #f3f3f5; color: #8a8a93; }
.dash { color: #c4c4cc; }
.price-cell { font-weight: 700; font-size: 15px; white-space: nowrap; }
.add-btn {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  padding: 9px 14px; border-radius: var(--radius-pill); transition: all .18s;
}
.add-btn:hover { border-color: transparent; background: var(--ink); color: #fff; }
.add-btn.in { background: var(--grad); border-color: transparent; color: #fff; }

/* ---------- Mobile cards ---------- */
.cards { display: none; flex-direction: column; gap: 14px; }
.site-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px;
}
.site-card .top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.site-card .top .nm a { font-size: 16px; font-weight: 700; }
.site-card .top .nm .u { font-size: 12px; color: var(--muted); margin-top: 2px; word-break: break-all; }
.site-card .top .pr { font-size: 18px; font-weight: 800; white-space: nowrap; }
.site-card .grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 8px;
  margin: 16px 0; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.site-card .grid .m { display: flex; flex-direction: column; gap: 2px; }
.site-card .grid .m .k { font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.site-card .grid .m .v { font-size: 15px; font-weight: 600; font-variant-numeric: tabular-nums; }
.site-card .add-btn { width: 100%; justify-content: center; padding: 12px; font-size: 14px; }

/* ---------- Pagination ---------- */
.pager { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 28px; flex-wrap: wrap; }
.pager button {
  font-family: inherit; font-size: 14px; font-weight: 600; min-width: 40px; height: 40px;
  border: 1px solid var(--line); background: #fff; color: var(--ink); border-radius: 11px; cursor: pointer;
  transition: all .15s; padding: 0 12px;
}
.pager button:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.pager button.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.pager button:disabled { opacity: .4; cursor: not-allowed; }
.pager .dots { color: var(--muted); padding: 0 4px; }

/* ===========================================================
   Cart drawer
   =========================================================== */
.overlay {
  position: fixed; inset: 0; background: rgba(10,10,11,.5); backdrop-filter: blur(2px);
  z-index: 90;
}
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(440px, 100vw);
  background: #fff; z-index: 100; display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.drawer header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--line);
}
.drawer header h3 { margin: 0; font-size: 19px; font-weight: 800; letter-spacing: -.01em; }
.drawer .x { background: var(--surface-2); border: 0; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 18px; color: var(--ink-soft); }
.drawer .x:hover { background: #ececef; }
.drawer .items { flex: 1; overflow-y: auto; padding: 12px 24px; }
.cart-item { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item .ci-main { flex: 1; min-width: 0; }
.cart-item .ci-main b { font-size: 15px; display: block; }
.cart-item .ci-main span { font-size: 12px; color: var(--muted); word-break: break-all; }
.cart-item .ci-price { font-weight: 700; white-space: nowrap; }
.cart-item .ci-x { background: none; border: 0; cursor: pointer; color: #c4c4cc; font-size: 18px; padding: 4px; }
.cart-item .ci-x:hover { color: #ef4444; }
.cart-empty { text-align: center; color: var(--muted); padding: 60px 20px; }
.cart-empty .big { font-size: 40px; margin-bottom: 12px; }
.drawer footer { padding: 20px 24px; border-top: 1px solid var(--line); background: var(--surface-2); }
.sum-rows { margin-bottom: 10px; }
.sum-row { display: flex; align-items: center; justify-content: space-between; padding: 5px 0; font-size: 14px; color: var(--ink-soft); }
.sum-row span:last-child { font-weight: 600; font-variant-numeric: tabular-nums; }
.drawer .total { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; padding-top: 12px; border-top: 1px dashed var(--line); }
.drawer .total span { color: var(--muted); font-size: 14px; }
.drawer .total b { font-size: 26px; font-weight: 800; letter-spacing: -.02em; }
.wa-btn {
  width: 100%; justify-content: center; background: #25d366; color: #fff; padding: 15px;
  font-size: 16px; border-radius: 14px; border: 0; cursor: pointer; font-weight: 700;
  display: inline-flex; align-items: center; gap: 10px; transition: filter .2s, transform .15s;
}
.wa-btn:hover { filter: brightness(1.05); }
.wa-btn:active { transform: scale(.98); }
.drawer .hint { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; padding: 13px 22px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; z-index: 200; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 9px;
}

/* ===========================================================
   Footer
   =========================================================== */
.footer { background: var(--bg); color: #9b9ba6; padding: 56px 0 40px; }
.footer .wrap { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: flex-start; }
.footer .brand b { color: #fff; }
.footer .col h4 { color: #fff; font-size: 14px; margin: 0 0 14px; }
.footer .col a, .footer .col p { display: block; font-size: 14px; margin-bottom: 9px; color: #9b9ba6; }
.footer .col a:hover { color: #fff; }
.footer .bottom { border-top: 1px solid var(--line-dark); margin-top: 40px; padding-top: 24px; font-size: 13px; color: #6b6b75; }

/* ---------- Transitions ---------- */
.fade-enter-active, .fade-leave-active { transition: opacity .22s ease; }
.fade-enter-from, .fade-leave-to { opacity: 0; }
.slide-enter-active, .slide-leave-active { transition: transform .28s cubic-bezier(.4,0,.2,1); }
.slide-enter-from, .slide-leave-to { transform: translateX(100%); }
.pop-enter-active { transition: all .25s cubic-bezier(.34,1.56,.64,1); }
.pop-enter-from { opacity: 0; transform: translate(-50%, 12px); }
.pop-leave-active { transition: all .2s; }
.pop-leave-to { opacity: 0; }

/* ===========================================================
   Mobile menu
   =========================================================== */
.hamburger {
  display: none; width: 42px; height: 42px; border-radius: 50%;
  align-items: center; justify-content: center; cursor: pointer;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  color: #fff; backdrop-filter: blur(6px);
}
.hamburger:hover { background: rgba(255,255,255,.16); }
.mobile-menu-overlay { position: fixed; inset: 0; z-index: 45; background: rgba(10,10,11,.4); }
.mobile-menu {
  position: fixed; top: 74px; left: 0; right: 0; z-index: 46;
  background: rgba(12,12,14,.98); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
  display: flex; flex-direction: column; padding: 8px;
}
.mobile-menu a {
  color: #e6e6ea; font-size: 16px; font-weight: 500;
  padding: 14px 16px; border-radius: 12px;
}
.mobile-menu a:hover, .mobile-menu a:active { background: rgba(255,255,255,.07); color: #fff; }
.menu-drop-enter-active, .menu-drop-leave-active { transition: transform .25s cubic-bezier(.4,0,.2,1), opacity .2s; }
.menu-drop-enter-from, .menu-drop-leave-to { transform: translateY(-12px); opacity: 0; }

/* ===========================================================
   Scroll-to-top
   =========================================================== */
.to-top {
  position: fixed; right: 22px; bottom: 24px; z-index: 80;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: #fff; border: 0; cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
  transition: transform .15s ease, background .2s ease;
}
.to-top:hover { background: #26262c; transform: translateY(-2px); }
.to-top:active { transform: scale(.94); }

/* ===========================================================
   Nasıl Çalışır page
   =========================================================== */
.nasil-page, .iletisim-page, .paketler-page { padding-top: 120px; }

/* Tanıtım paketleri */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; align-items: start; }
.pkg-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.pkg-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg); }
.pkg-head { padding: 22px 22px 18px; border-bottom: 1px solid var(--line); }
.pkg-badge { display: inline-block; font-size: 12px; font-weight: 700; color: #fff; background: var(--grad); padding: 4px 12px; border-radius: var(--radius-pill); }
.pkg-head h3 { margin: 12px 0 8px; font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.pkg-price { font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.pkg-sub { margin-top: 4px; font-size: 13px; color: var(--muted); }
.pkg-sites { padding: 8px 22px; max-height: 260px; overflow-y: auto; flex: 1; }
.pkg-site { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.pkg-site:last-child { border-bottom: 0; }
.ps-name { font-size: 13.5px; font-weight: 500; color: var(--ink); word-break: break-all; }
.ps-metrics { display: flex; align-items: center; gap: 5px; flex-shrink: 0; }
.ps-m { font-size: 11px; font-weight: 600; color: var(--ink-soft); background: var(--surface-2); border-radius: 6px; padding: 2px 7px; font-variant-numeric: tabular-nums; }
.pkg-add { margin: 18px 22px 22px; justify-content: center; padding: 13px; font-size: 14px; }

/* Basın bülteni — özellik listesi */
.pkg-feats { padding: 18px 22px 4px; flex: 1; }
.feat { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; font-size: 14px; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.feat:last-child { border-bottom: 0; }
.feat .fi-yes { color: #1a7f43; font-weight: 800; flex-shrink: 0; }
.feat .fi-no { color: #ef4444; font-weight: 800; flex-shrink: 0; }
.feat-no { color: #b4222a; font-weight: 600; }
.nolink-note { background: #fff4f4; border-color: #f3c9c9; color: #9a2b2b; margin-bottom: 20px; align-items: flex-start; }
.nolink-note b { color: #7f1d1d; }
.nolink-note svg { color: #ef4444; }
.nasil-page .wrap, .iletisim-page .wrap { width: min(1000px, 92vw); }
.steps { display: flex; flex-direction: column; gap: 14px; }
.step { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px 24px; }
.step-no { font-size: 24px; font-weight: 800; letter-spacing: -.02em; min-width: 40px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step-body h3 { margin: 0 0 6px; font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.step-body p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.metric-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.metric-grid .site-card h3 { margin: 0 0 6px; font-size: 16px; font-weight: 700; }
.metric-grid .site-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.nasil-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
.nasil-cards .site-card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 700; }
.nasil-cards .site-card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }
.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; }
.faq-item h4 { margin: 0 0 6px; font-size: 15px; font-weight: 700; }
.faq-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.nasil-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 40px; }

/* İletişim page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card {
  display: flex; flex-direction: column; gap: 4px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 28px; transition: transform .15s ease, box-shadow .2s ease, border-color .2s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.contact-card .ic { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: var(--surface-2); color: var(--ink); margin-bottom: 12px; }
.contact-card .cc-label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.contact-card .cc-value { font-size: 26px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.contact-card .cc-cta { margin-top: 8px; font-size: 14px; font-weight: 600; color: var(--accent); }
.contact-card.primary { background: #25d366; border-color: transparent; }
.contact-card.primary .ic { background: rgba(255,255,255,.2); color: #fff; }
.contact-card.primary .cc-label { color: rgba(255,255,255,.85); }
.contact-card.primary .cc-value { color: #fff; }
.contact-card.primary .cc-cta { color: #fff; }
.contact-note { margin-top: 22px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; }
.contact-note p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.contact-note a { color: var(--accent); font-weight: 600; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .hero-float { right: 8px; }
}
@media (max-width: 900px) {
  .nav-pill { display: none; }
  .topbar .nav-wrap { display: none; }
  .topbar .wrap { grid-template-columns: 1fr auto; }
  .hamburger { display: inline-flex; }
  .actions { gap: 8px; }
  .hero { padding: 88px 0 64px; }
  .hero-stats { gap: 26px; }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-overlay { display: none !important; }
}
@media (max-width: 720px) {
  .table-card { display: none; }
  .cards { display: flex; }
  .result-count { width: 100%; margin: 4px 0 0; }
  .topbar .wrap { height: 64px; }
  .mobile-menu { top: 64px; }
  .brand .tag { display: none; }
  .cart-btn .label { display: none; }
  .cart-btn { padding: 11px; }
  .section { padding: 40px 0 64px; }
  .hero h1 { font-size: clamp(32px, 8vw, 46px); }
  .hero-visual { display: none; }
  .fb-grid { grid-template-columns: 1fr; gap: 18px; }
  .filterbar { padding: 18px; }
  .nasil-page, .iletisim-page, .paketler-page { padding-top: 96px; }
  .nasil-cards, .faq, .contact-grid, .pkg-grid { grid-template-columns: 1fr; }
  .step { padding: 18px; gap: 14px; }
  .to-top { right: 16px; bottom: 18px; width: 44px; height: 44px; }
}
@media (max-width: 980px) {
  .catalog-layout { grid-template-columns: 1fr; gap: 16px; }
  .sidebar { position: static; top: auto; padding-bottom: 18px; }
  .sidebar .sb-fld { margin-bottom: 14px; }
}
@media (min-width: 721px) and (max-width: 980px) {
  .fb-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Gizli kaynak modu (?kaynak=1): rozetler yalnızca bu modda görünür ---- */
.src-tag {
  display: inline-block; margin-left: 6px; padding: 1px 5px;
  border-radius: 4px; font-size: 10px; font-weight: 800;
  letter-spacing: .3px; vertical-align: middle; line-height: 1.5;
}
.src-tb { background: rgba(148, 163, 184, .18); color: #94a3b8; }
.src-ty { background: rgba(34, 197, 94, .18); color: #22c55e; }
.src-select { border-color: rgba(34, 197, 94, .45); }
