/* ==========================================================================
   Techix — sklep tech, motyw niebiesko-czarny
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600&family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: dark;
  --bg: #0a0d14;
  --bg-2: #10141c;
  --surface: #141824;
  --surface-2: #1c2230;
  --well: #0e121a;
  --chrome: #070910;
  --ink: #eef1f8;
  --text: #eef1f8;
  --muted: #8b93a6;
  --dim: #6b7386;
  --line: rgba(255, 255, 255, .08);
  --line-strong: rgba(255, 255, 255, .16);
  --blue: #3d7eff;
  --blue-2: #7aa8ff;
  --blue-soft: rgba(61, 126, 255, .16);
  --blue-glow: 0 10px 28px rgba(61, 126, 255, .32);
  --on-accent: #f7faff;
  --bright: #ffffff;
  --ok: #3ee08a;
  --danger: #ff5c6c;
  --danger-soft: rgba(255, 92, 108, .14);
  --warn: #ffc857;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --shadow: 0 20px 44px rgba(0, 0, 0, .35);
  --ring: 0 0 0 4px rgba(61, 126, 255, .22);
  --mono: "IBM Plex Mono", Consolas, "Courier New", monospace;
  --font: "Outfit", "Segoe UI", system-ui, sans-serif;
  --max: 1220px;
  --scroll: #2a3348;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
img { max-width: 100%; display: block; }
a { color: var(--blue-2); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  margin: 0 0 .45em; line-height: 1.08;
  letter-spacing: -.03em; color: var(--ink); font-weight: 800;
}
h1 { font-size: clamp(2.2rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.12rem; letter-spacing: -.015em; font-weight: 700; }
p { margin: 0 0 1em; }
::selection { background: var(--blue); color: var(--on-accent); }

html {
  scrollbar-width: thin;
  scrollbar-color: var(--scroll) var(--bg);
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--scroll) transparent;
}
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--scroll);
  border-radius: 99px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--blue); }
::-webkit-scrollbar-corner { background: var(--bg); }
.shop-side::-webkit-scrollbar-track { background: transparent; }
.shop-side::-webkit-scrollbar-thumb { border-color: var(--surface); }

.wrap { width: min(var(--max), 100% - 2.4rem); margin-inline: auto; }
.section { padding: 5rem 0; }
.section--tight { padding: 2.6rem 0; }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }
.sec-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1.2rem 2rem; align-items: end; margin-bottom: 2.2rem; }
.sec-head p { color: var(--muted); max-width: 56ch; margin: 0; }
.sec-num, .eyebrow, .crumbs {
  display: block; margin-bottom: .7rem;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--blue-2);
}
.crumbs { letter-spacing: 0; text-transform: none; color: var(--dim); font-weight: 500; margin-bottom: 1.15rem; }
.crumbs a { color: var(--blue-2); }
@media (max-width: 700px) { .sec-head { grid-template-columns: 1fr; } }

.grid { display: grid; gap: 1.15rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 980px) { .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-5 { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------- */
.site-head {
  position: sticky; top: 0; z-index: 80;
  background: var(--bg);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top);
}
.topbar {
  background: var(--chrome);
  font-size: .75rem; color: var(--dim);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  width: min(var(--max), 100% - 2.4rem);
  margin-inline: auto;
  min-height: 32px;
  display: flex; align-items: center; gap: 1.15rem; flex-wrap: wrap;
}
.topbar b { color: var(--ink); font-weight: 600; }
.topbar-right { margin-left: auto; }
.head-row {
  width: min(var(--max), 100% - 2.4rem);
  margin-inline: auto;
  min-height: 82px;
  display: flex; align-items: center; gap: 1.1rem;
}
.brand {
  display: flex; align-items: center; gap: .55rem;
  color: var(--ink); font-weight: 800; font-size: 1.22rem; letter-spacing: -.04em; flex: none;
  line-height: 1;
}
.brand:hover { color: var(--ink); text-decoration: none; }
.brand-logo {
  display: block;
  height: 48px;
  width: auto;
  background: none;
}
.brand-footer .brand-logo { height: 64px; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--blue); color: #fff; font-size: .95rem;
}
.brand span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.top-search {
  flex: 1; display: flex; align-items: center;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px;
  overflow: hidden; min-width: 160px;
}
.top-search input {
  border: none !important; background: transparent !important;
  box-shadow: none !important; border-radius: 0 !important;
}
.top-search button {
  width: 44px; height: 42px; border: none; background: transparent;
  color: var(--ink); cursor: pointer; font-size: 1rem;
}
.nav-links {
  display: flex; align-items: center;
  gap: 1.2rem;
  width: min(var(--max), 100% - 2.4rem);
  margin: 0 auto; padding: 0 0 .85rem;
}
.nav-links a {
  color: var(--text); font-size: .9rem; font-weight: 600;
  padding: .2rem 0; border-bottom: 2px solid transparent; transition: .15s;
}
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-links a.is-active, .nav-links a.promo { color: var(--blue); border-bottom-color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: .35rem; flex: none; }
.nav-actions .txt-link {
  color: var(--ink); font-size: .82rem; font-weight: 600; padding: .35rem .5rem;
}
.nav-actions .txt-link:hover { color: var(--blue-2); text-decoration: none; }
.icon-btn, .cart-link {
  position: relative;
  min-width: 40px; height: 40px; padding: 0 .55rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .35rem;
  color: var(--ink); border-radius: 10px; background: transparent; font-size: .82rem; font-weight: 600;
}
.icon-btn:hover, .cart-link:hover { background: var(--surface); text-decoration: none; color: var(--ink); }
.icon-btn svg, .cart-link svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--blue); color: #fff; font-size: .62rem; font-weight: 800;
  display: grid; place-items: center; border-radius: 99px;
}
.cart-count[hidden] { display: none; }
.nav-toggle {
  display: none; width: 40px; height: 40px; border-radius: 10px;
  background: transparent; border: 1px solid var(--line-strong);
  color: var(--ink); font-size: 1.1rem; cursor: pointer;
}
.only-mobile { display: none; }

.shop-filtry-btn { display: none; }
.cart-txt { margin-left: .15rem; }

@media (max-width: 980px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-actions { margin-left: auto; gap: .15rem; }
  .nav-actions .txt-link { display: none; }
  .cart-txt { display: none; }
  .cart-link { min-width: 40px; padding: 0; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg);
    padding: .35rem 1.1rem calc(.9rem + env(safe-area-inset-bottom));
    width: 100%;
    border-bottom: 1px solid var(--line);
    max-height: min(78dvh, calc(100dvh - 5rem));
    overflow: auto;
    z-index: 90;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    padding: .9rem .15rem;
    border-bottom: 1px solid var(--line);
    font-size: .95rem;
  }
  .nav-links a:last-child { border-bottom: none; }
  .only-mobile { display: block; }
  .topbar { display: none; }
  .brand-logo { height: 44px; }
  .head-row {
    min-height: 56px;
    flex-wrap: wrap;
    gap: .4rem .65rem;
    padding: .4rem 0 .55rem;
  }
  .top-search {
    display: flex;
    flex: 1 1 100%;
    order: 3;
    min-width: 0;
  }
  body.nav-open { overflow: hidden; }
}

/* -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .82rem 1.45rem; border-radius: 8px;
  font-family: inherit; font-size: .86rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: .15s;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn-primary { background: var(--blue); color: var(--on-accent); border-color: var(--blue); box-shadow: var(--blue-glow); }
.btn-primary:hover { background: #5b94ff; color: var(--on-accent); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-line { background: transparent; color: var(--blue-2); border-color: var(--blue); }
.btn-line:hover { background: var(--blue); color: #fff; }
.btn-danger { background: transparent; color: var(--danger); border-color: rgba(255,92,108,.35); }
.btn-danger:hover { background: var(--danger); color: #fff; }
.btn-sm { padding: .48rem .9rem; font-size: .76rem; }
.btn-block { width: 100%; }
.btn-stack {
  display: flex; flex-direction: column; gap: 1.35rem;
  margin-top: .15rem;
}
.btn-akcje {
  display: flex; flex-wrap: wrap; gap: 1rem 1.2rem;
  margin-top: 1.2rem;
}
.btn-akcje .btn { min-width: 11rem; }

.card, .panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem 1.5rem;
}

/* -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(86vh, 760px);
  display: flex; align-items: center;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7,9,16,.94) 0%, rgba(7,9,16,.72) 46%, rgba(7,9,16,.28) 100%),
    radial-gradient(700px 400px at 80% 40%, rgba(61, 126, 255,.22), transparent 60%),
    url("https://images.unsplash.com/photo-1593640408182-31c70c8268f5?auto=format&fit=crop&w=1800&q=80") center/cover;
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .85fr);
  gap: 2.4rem; align-items: center; position: relative; z-index: 1; width: 100%;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { max-width: 16ch; margin-bottom: .3rem; }
.hero h1 .grad { color: var(--blue-2); }
.hero-lead { color: #c5cedc; font-size: 1.08rem; max-width: 46ch; margin: 1.1rem 0 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: .8rem 1.4rem;
  margin-top: 1.8rem; color: var(--muted); font-size: .82rem;
}
.hero-trust b { color: #fff; font-weight: 600; }

.cmd {
  background: rgba(8, 11, 18, .82);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(61, 126, 255,.18);
  backdrop-filter: blur(10px);
}
.cmd-bar {
  display: flex; align-items: center; gap: .7rem;
  padding: .5rem .85rem;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid var(--line);
}
.cmd-dots { display: flex; gap: .35rem; }
.cmd-dots i { width: 9px; height: 9px; border-radius: 50%; background: #3d414a; }
.cmd-dots i:nth-child(1) { background: #ff5f57; }
.cmd-dots i:nth-child(2) { background: #febc2e; }
.cmd-dots i:nth-child(3) { background: #28c840; }
.cmd-title { font-family: var(--mono); font-size: .7rem; color: #8b909a; }
.cmd-body {
  margin: 0; padding: 1rem 1.05rem 1.1rem;
  min-height: 248px;
  font-family: var(--mono); font-size: .74rem; line-height: 1.65;
  color: #c5cad3; white-space: pre-wrap;
}
.cmd-line { display: block; }
.cmd-line.prompt { color: #fff; }
.cmd-line .type { color: var(--blue-2); }
.cmd-line.dim { color: #6d7380; }
.cmd-line.ok { color: var(--ok); }
.cmd-line.info { color: #dce1ea; }
.cmd-cursor {
  display: inline-block; width: 8px; height: .95em;
  background: var(--blue); margin-left: 2px; vertical-align: -2px;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.feat-bar {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
}
.feat-bar-inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.feat-item { padding: 1.5rem 1.3rem; border-right: 1px solid var(--line); }
.feat-item:last-child { border-right: none; }
.feat-ico {
  width: 38px; height: 38px; margin-bottom: .8rem;
  color: var(--blue-2);
}
.feat-ico svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.feat-item h3 { font-size: 1rem; margin-bottom: .25rem; }
.feat-item p { color: var(--muted); font-size: .86rem; margin: 0; }
@media (max-width: 800px) {
  .feat-bar-inner { grid-template-columns: 1fr 1fr; }
  .feat-item:nth-child(2) { border-right: none; }
}

.cat-card {
  display: block; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit;
  transition: transform .2s, border-color .2s;
}
.cat-card:hover { transform: translateY(-4px); border-color: var(--blue); text-decoration: none; }
.cat-card img, .cat-ph {
  height: 150px; width: 100%; object-fit: cover;
  background: linear-gradient(160deg, #1a2238, #0b1018);
}
.cat-card .pad { padding: 1rem 1.05rem 1.15rem; }
.cat-card h3 { margin: 0 0 .35rem; font-size: 1.02rem; }
.cat-card span { color: var(--blue-2); font-size: .78rem; font-weight: 700; letter-spacing: .08em; }

.svc-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.svc-card .pic {
  height: 130px; position: relative;
  background: center/cover no-repeat var(--well);
}
.svc-card .pic i {
  position: absolute; left: 1rem; bottom: -16px;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blue); color: #fff; font-size: 1.05rem;
}
.svc-card .pad { padding: 1.7rem 1.15rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.svc-card p { color: var(--muted); font-size: .88rem; }
.svc-card a { margin-top: auto; font-size: .78rem; font-weight: 700; letter-spacing: .06em; }

.stats-band {
  background:
    radial-gradient(600px 200px at 20% 0%, rgba(61, 126, 255,.18), transparent 60%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.6rem;
}
.stats-band .grid { text-align: center; }
.stats-band b { display: block; font-size: 2.2rem; color: var(--blue-2); letter-spacing: -.04em; }
.stats-band span { color: var(--muted); font-size: .88rem; }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-item {
  padding: 1.4rem 1.2rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.why-item .n { color: var(--blue-2); font-size: .75rem; letter-spacing: .12em; display: block; margin-bottom: .6rem; font-family: var(--mono); }
.why-item p { color: var(--muted); font-size: .88rem; margin: 0; }

.about-copy h2, .about-cta h2 { font-size: 1.35rem; margin-bottom: .7rem; }
.about-copy p { color: var(--text); line-height: 1.65; margin: 0 0 .85rem; }
.about-copy p:last-child { margin-bottom: 0; }
.about-cta p { max-width: 62ch; }
.about-hero .btn-akcje { margin-top: 1.15rem; }
.about-faq { display: grid; gap: .7rem; }
.about-faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
}
.about-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.2rem;
  font-weight: 700;
  color: var(--ink);
}
.about-faq-item summary::-webkit-details-marker { display: none; }
.about-faq-item summary::after {
  content: "+";
  float: right;
  color: var(--blue-2);
  font-weight: 800;
}
.about-faq-item[open] summary::after { content: "–"; }
.about-faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
  max-width: 72ch;
  line-height: 1.65;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.site-grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(61, 126, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 126, 255, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 75%);
  animation: aboutGrid 28s linear infinite;
}
.site-watermark { display: none; }
.site-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .45;
}
.site-orb--a {
  width: 340px; height: 340px;
  top: 8%; left: -8%;
  background: radial-gradient(circle, rgba(122, 168, 255, .55), transparent 68%);
  animation: aboutOrbA 14s ease-in-out infinite;
}
.site-orb--b {
  width: 280px; height: 280px;
  bottom: 12%; right: 6%;
  background: radial-gradient(circle, rgba(122, 168, 255, .4), transparent 70%);
  animation: aboutOrbB 16s ease-in-out infinite;
}
main, .footer { position: relative; z-index: 1; }
.about-page { position: relative; }
.about-body.section { padding-top: 1.4rem; }
body:has(.about-page) .site-watermark { display: none; }
body:has(.about-page) .site-orb { opacity: .28; }
.about-hero,
.about-body {
  position: relative;
  z-index: 1;
}
.about-hero {
  padding: 2.5rem 0 2.2rem;
  background:
    radial-gradient(720px 280px at 8% 0%, rgba(0, 102, 255, .08), transparent 62%);
}
.about-hero .crumbs { margin-bottom: 1.4rem; }
.about-hero .page-head { position: relative; z-index: 1; padding-top: .35rem; }
.about-hero h1 {
  color: var(--ink);
  max-width: 12ch;
  font-size: clamp(2.15rem, 4.6vw, 3.25rem);
  letter-spacing: -.04em;
  line-height: 1.05;
  margin: 0 0 .85rem;
}
.about-lead {
  color: var(--text);
  font-size: 1.08rem;
  max-width: 52ch;
  line-height: 1.65;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 2rem;
  align-items: end;
}
.about-hero-logo {
  height: 88px;
  animation: aboutGlow 3.6s ease-in-out infinite;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
  margin-bottom: 2rem;
}
.about-stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: 18px;
  padding: 1.25rem 1.1rem 1.2rem;
  box-shadow: var(--shadow);
}
.about-stat b {
  display: block;
  font-size: 1.85rem;
  color: var(--blue);
  letter-spacing: -.04em;
  line-height: 1.1;
}
.about-stat span {
  display: block;
  margin-top: .4rem;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.4;
}
.about-page .stats-band,
.about-page .panel,
.about-page .why-item {
  position: relative;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  animation: aboutRise .7s ease both;
}
.about-page .panel h2,
.about-page .why-item h3 {
  color: var(--ink);
}
.about-page .layout-2 {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.about-page .panel {
  padding: 1.7rem 1.65rem 1.6rem;
  border-radius: 20px;
  height: 100%;
}
.about-page .why-item {
  padding: 1.4rem 1.25rem 1.3rem;
  border-radius: 18px;
}
.about-page .why-item h3 {
  font-size: 1.05rem;
  margin: 0 0 .45rem;
}
.about-section-title {
  margin: 2.35rem 0 1.05rem;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  letter-spacing: -.03em;
}
.about-page .why-item .n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 1.7rem;
  padding: 0 .65rem;
  margin-bottom: .75rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  font-family: var(--font);
}
.about-page .stats-band { animation-delay: .05s; }
.about-page .layout-2 .panel:nth-child(1) { animation-delay: .12s; }
.about-page .layout-2 .panel:nth-child(2) { animation-delay: .2s; }
.about-page .why-grid:nth-of-type(1) .why-item:nth-child(1) { animation-delay: .08s; }
.about-page .why-grid:nth-of-type(1) .why-item:nth-child(2) { animation-delay: .16s; }
.about-page .why-grid:nth-of-type(1) .why-item:nth-child(3) { animation-delay: .24s; }
.about-page .why-grid:nth-of-type(1) .why-item:nth-child(4) { animation-delay: .32s; }
.about-page .why-grid + h2 + .why-grid .why-item:nth-child(1) { animation-delay: .08s; }
.about-page .why-grid + h2 + .why-grid .why-item:nth-child(2) { animation-delay: .16s; }
.about-page .why-grid + h2 + .why-grid .why-item:nth-child(3) { animation-delay: .24s; }
.about-page .why-grid + h2 + .why-grid .why-item:nth-child(4) { animation-delay: .32s; }
.about-page .about-cta { animation-delay: .18s; }
.about-page .why-item {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.about-page .why-item:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: var(--blue-glow);
  text-decoration: none;
}
.about-cta {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  box-shadow: var(--shadow);
  padding: 1.8rem 1.8rem 1.7rem;
}
.about-cta h2 { margin-bottom: .45rem; }

@keyframes aboutGrid {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-56px, -56px, 0); }
}
@keyframes aboutLogo {
  0%, 100% { transform: rotate(-6deg) translate3d(0, 0, 0) scale(1); }
  50% { transform: rotate(4deg) translate3d(-18px, 22px, 0) scale(1.04); }
}
@keyframes aboutOrbA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(70px, 50px, 0); }
}
@keyframes aboutOrbB {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-60px, -40px, 0); }
}
@keyframes aboutGlow {
  0%, 100% { filter: drop-shadow(0 10px 28px rgba(61, 126, 255, .34)); }
  50% { filter: drop-shadow(0 8px 38px rgba(61, 126, 255, .62)); }
}
@keyframes aboutGlowDark {
  0%, 100% { filter: invert(1) hue-rotate(180deg) drop-shadow(0 10px 28px rgba(61, 126, 255, .34)); }
  50% { filter: invert(1) hue-rotate(180deg) drop-shadow(0 8px 38px rgba(61, 126, 255, .62)); }
}
@keyframes aboutRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes aboutPulse {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 18px rgba(61, 126, 255, .45); }
}

@media (max-width: 720px) {
  .site-watermark {
    top: 8%;
    right: -10%;
    width: 90vw;
    opacity: .14;
  }
  .site-orb--a { width: 220px; height: 220px; }
  .site-orb--b { width: 180px; height: 180px; bottom: 28%; }
  .about-hero { padding: 1.4rem 0 1.1rem; }
  .about-hero .crumbs { margin-bottom: 1rem; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .about-hero-logo { height: 64px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-page .layout-2 { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .site-grid,
  .site-watermark,
  .site-orb,
  .about-hero-logo,
  .about-page .stats-band,
  .about-page .panel,
  .about-page .why-item,
  .about-page .stats-band b {
    animation: none;
  }
  .about-page .why-item:hover { transform: none; }
}

/* -------------------------------------------------------------------------- */
.product {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.product:hover { transform: translateY(-6px); border-color: var(--blue); }
.product-art {
  height: 150px; position: relative; overflow: hidden;
  background: var(--well) center/cover no-repeat;
}
.product-art::after {
  content: ""; position: absolute; inset: auto 0 0;
  height: 40%; background: linear-gradient(transparent, var(--surface));
}
.tower {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -54%);
  width: 46px; height: 70px; background: var(--chrome);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 0 24px var(--akcent, var(--blue));
}
.tower::before {
  content: ""; position: absolute; left: 7px; top: 8px; right: 7px; height: 22px;
  background: var(--akcent, var(--blue));
}
.product-body { padding: 1.15rem 1.2rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.product-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: .4rem; }
.product-idx { font-family: var(--mono); font-size: .7rem; color: var(--dim); }
.product h3 { font-size: 1.35rem; margin-bottom: .1rem; }
.product-tag { color: var(--blue-2); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .85rem; }
.specs { list-style: none; margin: 0 0 .9rem; padding: 0; display: grid; gap: .35rem; }
.specs li {
  display: grid; grid-template-columns: 52px 1fr; gap: .5rem;
  font-size: .84rem; padding-bottom: .35rem; border-bottom: 1px solid var(--line);
}
.specs li:last-child { border-bottom: none; }
.specs li b { font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--dim); padding-top: .2rem; }
.specs li span { color: var(--text); }
.product-desc { color: var(--muted); font-size: .84rem; margin-bottom: 1rem; }
.product-foot {
  margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: .8rem;
  padding-top: .9rem; border-top: 1px solid var(--line);
}
.price { font-size: 1.35rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.price small { display: block; margin-top: .2rem; font-size: .66rem; font-weight: 500; color: var(--dim); }

.service {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.1rem; align-items: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.1rem 1.2rem;
}
.service:hover { border-color: var(--blue); }
.service-icon {
  width: 46px; height: 46px; display: grid; place-items: center;
  font-size: 1.2rem; background: var(--blue-soft); border-radius: 12px;
}
.service p { color: var(--muted); font-size: .86rem; margin: 0 0 .35rem; }
.service-meta { font-size: .8rem; color: var(--dim); }
.service-price { font-weight: 700; color: var(--ink); }
.service-act { display: grid; gap: .4rem; justify-items: end; }
@media (max-width: 700px) {
  .service { grid-template-columns: auto 1fr; }
  .service-act { grid-column: 1 / -1; justify-items: stretch; }
}

.steps { display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 70px 1fr;
  gap: 1.2rem; padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--mono); font-size: 1.2rem; font-weight: 600; color: var(--blue-2);
}
.steps { counter-reset: step; }
.step p { margin: 0; color: var(--muted); }

.review {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.3rem 1.35rem;
  display: flex; flex-direction: column; gap: .65rem;
}
.review-top { display: flex; align-items: center; gap: .7rem; }
.avatar {
  width: 40px; height: 40px; flex: none; display: grid; place-items: center;
  background: var(--blue); color: #fff; font-size: .82rem; font-weight: 700; border-radius: 10px;
}
.review-who b { display: block; font-size: .92rem; color: var(--ink); }
.review-who span { font-size: .74rem; color: var(--dim); }
.stars { color: var(--warn); letter-spacing: .08em; }
.stars .off { color: #2a3140; }
.review-text { margin: 0; color: #d0d7e4; font-size: .91rem; }
.review-prod {
  display: inline-block; align-self: flex-start;
  color: var(--blue-2); font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}
.review-prod:hover { color: var(--ink); }
.pdp-review-form {
  margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line);
  max-width: 520px;
}
.rating-input { display: flex; gap: .15rem; }
.rating-input label { font-size: 1.5rem; cursor: pointer; color: #2a3140; line-height: 1; }
.rating-input label.on { color: var(--warn); }

/* -------------------------------------------------------------------------- */
.field { display: block; margin-bottom: 1rem; }
.field > span, .label {
  display: block; margin-bottom: .4rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
input[type="text"], input[type="email"], input[type="password"], input[type="tel"],
input[type="search"], input[type="number"], select, textarea {
  width: 100%; padding: .78rem .95rem;
  background: var(--well); border: 1px solid var(--line-strong);
  color: var(--ink); font-family: inherit; font-size: .93rem;
  border-radius: 10px;
}
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: var(--ring);
}
input::placeholder, textarea::placeholder { color: var(--dim); }
select {
  appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) 51%, calc(100% - 13px) 51%;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.field-row.adres-ulica { grid-template-columns: 1fr 6.5rem 8rem; }
.field-row.adres-miasto { grid-template-columns: 8.5rem 1fr; }
@media (max-width: 620px) {
  .field-row, .field-row.adres-ulica, .field-row.adres-miasto { grid-template-columns: 1fr; }
}
.checkbox { display: flex; gap: .6rem; align-items: flex-start; font-size: .87rem; color: var(--muted); cursor: pointer; }
.checkbox input { width: auto; margin-top: .25rem; accent-color: var(--blue); }
.checkbox a, .link-dok {
  color: var(--blue-2);
  text-decoration: underline;
  font-weight: 600;
}
.checkbox a:hover, .link-dok:hover { color: var(--ink); }
.dok { max-width: 82ch; }
.dok-nav {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  gap: 0;
  margin: 0 0 1.8rem; padding: 0;
  list-style: none; background: none;
  border: none; border-bottom: 1px solid var(--line);
  box-shadow: none;
}
.dok-nav a {
  display: inline-block;
  color: var(--blue-2);
  font-size: .95rem; font-weight: 650;
  text-decoration: none; background: none;
  padding: .7rem 1.15rem .85rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.dok-nav a:hover { color: var(--ink); text-decoration: none; }
.dok-nav a.is-active {
  color: var(--ink);
  text-decoration: none;
  border-bottom-color: var(--blue);
}
.dok-sekcja { display: none; }
.dok-sekcja.is-active { display: block; }
.dok-sekcja[hidden] { display: none !important; }
.dok-karta {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.1rem 2.2rem 2.5rem;
}
.dok h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  margin: 0 0 .85rem; letter-spacing: -.03em;
}
.dok h3 { font-size: 1.12rem; margin: 1.7rem 0 .55rem; color: var(--ink); font-weight: 750; }
.dok p, .dok li { color: var(--text); font-size: 1rem; line-height: 1.7; }
.dok p { margin: 0 0 1rem; }
.dok ul { padding-left: 1.2rem; margin: 0 0 1rem; }
.dok li { margin: .38rem 0; }
.dok .muted.small { font-size: .84rem; color: var(--dim); margin-bottom: 1.4rem; }
.form-error {
  background: var(--danger-soft); border: 1px solid rgba(214,40,57,.28);
  color: var(--danger); padding: .7rem .95rem; font-size: .86rem; margin-bottom: 1rem; border-radius: 10px;
}
.form-ok {
  background: var(--blue-soft); border: 1px solid rgba(61, 126, 255,.35);
  color: var(--blue-2); padding: .7rem .95rem; font-size: .86rem; margin-bottom: 1rem; border-radius: 10px;
}
.hint { font-size: .81rem; color: var(--dim); }
.hint-haslo {
  margin: -.35rem 0 1rem; padding-left: 1.1rem;
  color: var(--dim); font-size: .78rem; line-height: 1.45;
}
.hint-haslo li {
  margin: .1rem 0;
  transition: color .15s ease;
}
.hint-haslo li.is-ok {
  color: var(--ok);
  font-weight: 600;
}
.link-reset {
  display: inline-block; margin: .65rem 0 0;
  font-size: .86rem; font-weight: 600;
}
.reset-czas { font-family: var(--mono); color: var(--warn); font-size: .9rem; }

.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--line); margin-bottom: 1.5rem; }
.tabs button {
  padding: .65rem 1.15rem; border: none; background: none; cursor: pointer;
  font-family: inherit; font-size: .92rem; font-weight: 700; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tabs button:hover { color: var(--ink); }
.tabs button.is-active { color: var(--ink); border-bottom-color: var(--blue); }
.tabs-full button { flex: 1; }
.tab-count:empty { display: none; }
.tab-count {
  display: inline-block; min-width: 1.2em; margin-left: .25rem;
  padding: 0 .35rem; border-radius: 99px;
  background: var(--blue); color: #fff;
  font-size: .68rem; font-weight: 800; line-height: 1.4;
}
.op-cats { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1rem 0 1.2rem; }
.op-cat {
  background: var(--well); border: 1px solid var(--line); color: #d7dbe3;
  font: inherit; font-size: .82rem; font-weight: 600;
  padding: .4rem .7rem; border-radius: 999px; cursor: pointer;
}
.op-cat span { color: var(--dim); margin-left: .2rem; }
.op-cat:hover, .op-cat.is-active { border-color: var(--blue); color: var(--ink); background: var(--blue-soft); }
.op-cat.is-active span { color: var(--blue-2); }

.choice {
  display: flex; align-items: center; gap: .7rem;
  padding: .85rem 1rem; margin-bottom: 1rem;
  background: var(--well); border: 1px solid var(--line); border-radius: 10px; cursor: pointer; color: #d7deea;
}
.choice:has(input:checked) { border-color: var(--blue); background: var(--blue-soft); }
.choice input { accent-color: var(--blue); }
.pay-blik {
  display: inline-flex; align-items: center; justify-content: center;
  background: #111; color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .14em;
  padding: .18rem .5rem .14rem; border-radius: 4px;
  border-bottom: 3px solid #e31c79;
  line-height: 1;
}
.choice .pay-blik { margin-right: .15rem; }
.footer-pay {
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.15rem;
  margin-top: 1.1rem; color: var(--dim); font-size: .78rem;
}
.footer-pay > span:first-child {
  text-transform: uppercase; letter-spacing: .1em; font-weight: 700; font-size: .68rem; color: #fff;
}

.table-wrap { overflow-x: auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: .87rem; min-width: 620px; }
thead th {
  text-align: left; padding: .8rem 1rem;
  font-size: .64rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  background: var(--well); border-bottom: 1px solid var(--line);
}
tbody td { padding: .85rem 1rem; border-bottom: 1px solid var(--line); color: #c9d2e0; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(255,255,255,.03); }
.mono, td .mono { font-family: var(--mono); font-size: .82rem; color: var(--ink); }

.status {
  display: inline-flex; padding: .2rem .55rem; border-radius: 999px;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.status-oczekuje { background: rgba(255, 176, 32, .16); color: var(--warn); }
.status-nowe { background: var(--blue-soft); color: var(--blue-2); }
.status-realizacja { background: var(--surface-2); color: #fff; }
.status-gotowe { background: var(--blue); color: #fff; }
.status-zrealizowane { background: var(--surface-2); color: var(--muted); }
.status-anulowane { background: var(--danger-soft); color: var(--danger); }

.stat { background: var(--surface); border: 1px solid var(--line); padding: 1.15rem 1.25rem; border-top: 3px solid var(--blue); border-radius: var(--radius); }
.stat span { font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.stat b { display: block; margin-top: .25rem; font-size: 1.75rem; font-weight: 800; color: var(--ink); }
.stat.violet, .stat.blue { border-top-color: var(--blue-2); }

.badge {
  display: inline-flex; padding: .18rem .5rem; border-radius: 999px;
  font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: var(--blue); color: #fff;
}
.badge-violet, .badge-warn { background: var(--surface-2); color: #fff; }
.badge-blue { background: var(--blue-soft); color: var(--blue-2); }
.badge-gray { background: var(--surface-2); color: var(--muted); }

.id-klienta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--well); color: #fff; border: 1px solid var(--line);
  padding: .4rem .8rem; font-family: var(--mono); font-size: .9rem; font-weight: 600; border-radius: 999px;
}
.id-klienta::before {
  content: "ID"; font-family: var(--font); font-size: .58rem; font-weight: 800;
  letter-spacing: .1em; background: var(--blue); padding: .1rem .35rem; border-radius: 6px;
}
.id-inline { font-family: var(--mono); font-weight: 600; color: var(--blue-2); }

.cart-item {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 1rem; align-items: center;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.cart-item:last-child { border-bottom: none; }
.cart-thumb { width: 72px; height: 72px; display: grid; place-items: center; font-size: 1.2rem; background: var(--blue-soft); border-radius: 12px; flex: none; overflow: hidden; }
.cart-thumb-foto { background: var(--well); border: 1px solid var(--line); padding: 0; }
.cart-thumb-foto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-thumb-foto:hover { border-color: var(--blue); }
.cart-item h4 { margin: 0 0 .1rem; font-size: .95rem; color: var(--ink); }
.cart-item .sub { font-size: .78rem; color: var(--dim); }
.qty { display: inline-flex; border: 1px solid var(--line-strong); border-radius: 8px; overflow: hidden; }
.qty button { width: 30px; height: 30px; border: none; background: var(--well); color: var(--ink); cursor: pointer; }
.qty button:hover { background: var(--blue); }
.qty span { min-width: 32px; text-align: center; font-weight: 700; font-size: .86rem; display: grid; place-items: center; }
.summary-row { display: flex; justify-content: space-between; padding: .4rem 0; font-size: .9rem; color: var(--muted); }
.summary-row b { color: var(--ink); }
.summary-row.total { margin-top: .5rem; padding-top: .85rem; border-top: 1px solid var(--line-strong); font-size: 1.2rem; font-weight: 800; color: var(--ink); }
.layout-2 { display: grid; grid-template-columns: 1.55fr 1fr; gap: 1.4rem; align-items: start; }
@media (max-width: 940px) { .layout-2 { grid-template-columns: 1fr; } .sticky { position: static; } }
.sticky { position: sticky; top: 108px; }
.empty { text-align: center; padding: 3rem 1.4rem; color: var(--muted); }
.empty .ico { font-size: 2.2rem; margin-bottom: .45rem; opacity: .45; }
.empty h3 { color: var(--ink); }

#toasts { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 200; display: flex; flex-direction: column; gap: .5rem; max-width: 330px; }
.toast {
  background: var(--well); color: var(--ink); border-left: 4px solid var(--blue);
  padding: .75rem 1rem; font-size: .87rem; box-shadow: var(--shadow); border-radius: 10px;
}
.toast.err { border-left-color: var(--danger); }

.rig { background: var(--well); padding: 1.25rem; border-radius: var(--radius); }
.rig-screen { font-family: var(--mono); font-size: .78rem; color: #b7bdc7; }
.rig-screen .ln { display: flex; gap: .5rem; padding: .12rem 0; }
.rig-screen .ok, .rig-screen .k { color: var(--blue-2); font-weight: 600; }
.rig-screen .v { color: #fff; }
.rig-bars { display: grid; gap: .55rem; margin-top: 1rem; }
.rig-bar span { display: flex; justify-content: space-between; font-size: .74rem; color: var(--muted); margin-bottom: .25rem; }
.rig-bar em { font-style: normal; color: #fff; font-weight: 600; }
.rig-bar i { display: block; height: 5px; background: rgba(255,255,255,.08); overflow: hidden; border-radius: 99px; }
.rig-bar i::after { content: ""; display: block; height: 100%; width: var(--w, 60%); background: var(--blue); }

.footer {
  background: var(--bg); color: var(--muted);
  padding: 3.4rem 0 1.5rem; border-top: 1px solid var(--line);
}
.footer .brand { color: var(--ink); margin-bottom: .85rem; }
.footer h4 {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); margin-bottom: .8rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .38rem; }
.footer a { color: var(--muted); font-size: .88rem; }
.footer a:hover { color: var(--blue-2); }
.footer a.footer-promo { color: var(--blue); font-weight: 700; }
.footer a.footer-promo:hover { color: var(--blue-2); }
.footer p { color: var(--muted); font-size: .88rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-bottom {
  margin-top: 2.2rem; padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .8rem; color: var(--dim);
}

.page-head { padding: 3rem 0 2rem; }
.page-head h1 { margin-bottom: .45rem; }
.page-head p { color: var(--text); max-width: 62ch; margin: 0; }
.hero-page {
  padding: 2.2rem 0 1.4rem;
  background: transparent;
}

.toolbar {
  display: flex; flex-wrap: wrap; gap: .6rem; align-items: center;
  margin-bottom: 1.3rem; padding: .75rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.toolbar .grow { flex: 1; min-width: 200px; }
.toolbar input, .toolbar select { padding: .55rem .8rem; font-size: .86rem; }
.toolbar > select, .toolbar > input { width: auto; min-width: 190px; }

.auth-wrap { max-width: 460px; margin: 3rem auto 5rem; }
.pay-wrap { max-width: 480px; }
.plat-kwota { font-size: 2.05rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.plat-meta { color: var(--muted); font-size: .9rem; margin: .2rem 0 1.1rem; }
.plat-przelew {
  background: var(--well); border: 1px solid var(--line); border-radius: 10px;
  padding: .95rem 1.05rem; margin: 0 0 1.1rem;
}
.plat-przelew dl { margin: 0; display: grid; gap: .65rem; }
.plat-przelew div { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.plat-przelew dt { color: var(--dim); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.plat-przelew dd { margin: 0; font-family: var(--mono); color: var(--ink); font-size: .88rem; text-align: right; }
.plat-stan { text-align: center; padding: 1.4rem 0 1.1rem; color: var(--muted); }
.plat-stan b { display: block; color: var(--ink); font-size: 1.05rem; margin-bottom: .35rem; }
.kod-ekran h2 { font-size: 1.35rem; margin-bottom: .35rem; }
.kod-ekran .kod-mail {
  font-family: var(--mono); font-size: 1.05rem; color: #fff; letter-spacing: .04em;
}
.kod-pole input {
  font-family: var(--mono); font-size: 1.7rem; font-weight: 600;
  letter-spacing: .42em; text-align: center; padding: .9rem .4rem .9rem .8rem;
}
.win-cmd-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(0, 0, 0, .66);
  display: grid; place-items: center;
  padding: 1.2rem;
}
.win-cmd {
  width: min(560px, 100%);
  background: #0c0c0c;
  border: 1px solid #3a3a3a;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .6);
}
.win-cmd-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: #1f1f1f; color: #f3f3f3;
  font-family: "Segoe UI", var(--font); font-size: .78rem;
  padding: .28rem .35rem .28rem .85rem;
}
.win-cmd-bar span { opacity: .92; }
.win-cmd-x {
  width: 46px; height: 32px; border: 0; background: transparent;
  color: #fff; font-size: 1.15rem; line-height: 1; cursor: pointer;
}
.win-cmd-x:hover { background: #e81123; }
.win-cmd-body {
  margin: 0; padding: .9rem 1rem 1.15rem;
  min-height: 168px;
  font-family: Consolas, var(--mono), monospace;
  font-size: .95rem; line-height: 1.55;
  color: #cccccc; white-space: pre-wrap;
}
.win-cmd-body .err {
  display: block;
  color: #ff4d4d;
  font-size: 2.35rem;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.15;
  margin: .45rem 0 .15rem;
}
.win-cmd-body .ok {
  display: block;
  color: #3ee08a;
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.15;
  margin: .45rem 0 .15rem;
}
.win-cmd-cursor {
  display: inline-block; width: 8px; height: 1em;
  background: #cccccc; margin-left: 1px; vertical-align: -2px;
  animation: blink 1s step-end infinite;
}
.admin-note {
  background: var(--blue-soft); border: 1px solid rgba(61, 126, 255,.28);
  padding: .8rem 1rem; font-size: .84rem; color: #c9d8f5; border-radius: 10px;
}
.admin-note .mono { color: #fff; }
mark.fraza { background: var(--blue); color: #fff; padding: 0 3px; }

.contact-list { display: grid; gap: 1rem; }
.contact-list div { display: flex; gap: .85rem; align-items: flex-start; }
.contact-list i {
  width: 38px; height: 38px; flex: none; border-radius: 50%;
  display: grid; place-items: center; background: var(--blue); color: #fff; font-size: .95rem;
}
.map-wrap { margin-top: 2.4rem; }
.map-box {
  height: 320px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line); background: var(--well);
}
.map-box iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-link {
  display: inline-block; margin-top: .7rem;
  font-size: .86rem; font-weight: 700;
}

.faq-layout {
  display: grid; grid-template-columns: 250px minmax(0, 1fr);
  gap: 1.4rem; align-items: start;
}
.faq-cmd { min-height: 440px; display: flex; flex-direction: column; }
.faq-cmd .cmd-body {
  min-height: 400px; flex: 1; overflow: auto;
  font-size: .8rem; line-height: 1.7;
}
.cmd-line.q { color: var(--blue-2); }
@media (max-width: 800px) { .faq-layout { grid-template-columns: 1fr; } }
.faq-side { display: grid; gap: .4rem; }
.faq-side button {
  text-align: left; padding: .8rem 1rem; border-radius: 12px;
  background: transparent; border: 1px solid transparent; color: var(--text);
  font: inherit; font-weight: 600; cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.faq-side button:hover { color: var(--ink); background: var(--blue-soft); }
.faq-side button.is-active {
  background: var(--surface); border-color: var(--blue);
  color: var(--ink); box-shadow: inset 3px 0 0 var(--blue);
}
.faq-lista { transition: opacity .22s ease, transform .22s ease; }
.faq-lista.is-out { opacity: 0; transform: translateY(10px); }
.faq-tytul { transition: opacity .2s ease; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; margin-bottom: .55rem; overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item.is-open { border-color: var(--blue); box-shadow: 0 0 0 1px rgba(61, 126, 255,.18); }
.faq-item > button {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  text-align: left; padding: .95rem 1.1rem;
  background: none; border: none; color: var(--ink); font: inherit; font-weight: 700; cursor: pointer;
}
.faq-chev {
  flex: none; width: 22px; height: 22px; color: var(--dim);
  transition: transform .28s ease, color .2s ease;
}
.faq-item.is-open .faq-chev { transform: rotate(180deg); color: var(--blue); }
.faq-ans {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .32s ease;
}
.faq-ans > div { overflow: hidden; }
.faq-ans p { padding: 0 1.1rem 1.05rem; color: var(--muted); margin: 0; }
.faq-item.is-open .faq-ans { grid-template-rows: 1fr; }
@media (prefers-reduced-motion: reduce) {
  .faq-lista, .faq-ans, .faq-chev, .faq-side button { transition: none; }
}

.muted { color: var(--muted); }
.dim { color: var(--dim); }
.small { font-size: .85rem; }
.row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.between { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: .75rem; } .mt-2 { margin-top: 1.5rem; } .mt-3 { margin-top: 2.25rem; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: .75rem; } .mb-2 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }
.divider { height: 1px; background: var(--line); margin: 1.4rem 0; }
.nowrap { white-space: nowrap; }

@media (prefers-reduced-motion: reduce) {
  .cmd-cursor { animation: none; }
}

.btn { border-radius: 999px; }
.btn-primary, .btn-ghost, .btn-line { text-transform: none; letter-spacing: 0; }

.hero-stage {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 1.6rem 2rem; align-items: start;
  margin: 1.4rem auto 0;
  padding: 2rem 1.8rem;
  background:
    radial-gradient(520px 240px at 80% 20%, rgba(61, 126, 255,.16), transparent 62%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; }
.hero-logo {
  display: block;
  height: 132px;
  width: auto;
  margin: 0 0 1.05rem;
  background: none;
}
.page-logo { margin-inline: auto; }
.hero-stage h1 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); max-width: 14ch; margin: 0 0 .55rem; }
.hero-stage h1 span { color: var(--blue); }
.hero-stage .hero-lead { min-height: 1.5em; color: var(--muted); margin: 0 0 1.3rem; }
.hero-stage .hero-cta { margin-top: 0; margin-bottom: 1.4rem; }
.hero-stage .cmd { margin: 0; min-height: 320px; display: flex; flex-direction: column; }
.hero-stage .cmd-body { min-height: 260px; flex: 1; font-size: .82rem; }
.hero-side { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .7rem; width: 100%; }
.hero-side div {
  padding: .85rem .9rem; border-radius: 14px;
  background: var(--well); border: 1px solid var(--line);
}
.hero-side b { display: block; color: var(--ink); font-size: .88rem; }
.hero-side span { color: var(--muted); font-size: .75rem; }
@media (max-width: 800px) {
  .hero-stage { grid-template-columns: 1fr; }
  .hero-logo { height: 96px; }
}

.grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1100px) { .grid-6 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .grid-6 { grid-template-columns: 1fr 1fr; } }

.home-shop { padding: 2.2rem 0 4.4rem; }
.home-cats {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: .7rem;
  margin: 0 0 2.2rem;
}
.home-cats a {
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  padding: .85rem .4rem .9rem; text-decoration: none; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  font-size: .78rem; font-weight: 700; text-align: center;
}
.home-cats a:hover { border-color: var(--blue); color: var(--ink); text-decoration: none; }
.home-cats img {
  width: 64px; height: 64px; object-fit: cover; border-radius: 16px; background: var(--well);
}
.home-hits-bar {
  display: flex; align-items: end; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap; margin-bottom: 1.15rem;
}
.home-hits-bar h2 { margin: 0; font-size: 1.55rem; }
.home-hits-bar .eyebrow { margin-bottom: .2rem; }
.home-tabs { display: flex; flex-wrap: wrap; gap: .4rem; }
.home-tabs button {
  background: var(--well); border: 1px solid var(--line); color: var(--text);
  font: inherit; font-size: .82rem; font-weight: 700;
  padding: .42rem .85rem; border-radius: 999px; cursor: pointer;
}
.home-tabs button.is-active, .home-tabs button:hover {
  border-color: var(--blue); color: var(--ink); background: var(--blue-soft);
}
.home-hits-all { color: var(--blue-2); font-weight: 700; font-size: .88rem; }
.home-hits-all:hover { color: var(--blue); }
.home-banners {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 1rem; margin-top: 2rem;
}
.home-banner {
  display: flex; flex-direction: column; justify-content: flex-end; gap: .45rem;
  min-height: 210px; padding: 1.5rem 1.6rem; border-radius: 22px;
  border: 1px solid var(--line); color: var(--ink); text-decoration: none;
  background-color: var(--surface);
  background-size: cover; background-position: center;
  box-shadow: var(--shadow);
}
.home-banner:hover { text-decoration: none; color: var(--ink); border-color: var(--blue); }
.home-banner .eyebrow { color: var(--blue); }
.home-banner strong { font-size: 1.35rem; max-width: 16ch; line-height: 1.2; color: var(--ink); }
.home-banner-cta { color: var(--blue); font-weight: 700; font-size: .88rem; }
.home-banner--game {
  background-image:
    linear-gradient(105deg, rgba(20,24,36,.92) 0%, rgba(20,24,36,.72) 42%, rgba(20,24,36,.22) 100%),
    url("https://images.unsplash.com/photo-1587202372775-e229f172b9d7?auto=format&fit=crop&w=1200&q=70");
}
.home-banner--fix {
  background-image:
    linear-gradient(105deg, rgba(20,24,36,.92) 0%, rgba(20,24,36,.72) 42%, rgba(20,24,36,.22) 100%),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1800&q=80");
}
@media (max-width: 980px) {
  .home-cats { grid-template-columns: repeat(4, 1fr); }
  .home-banners { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .home-cats { grid-template-columns: repeat(3, 1fr); }
}

.shop-grid:not(.is-list) {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.shop-card {
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.shop-card:hover, .shop-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: var(--blue-glow);
}
.shop-card h3 { color: var(--ink); font-size: 1.12rem; margin: .12rem 0 .4rem; font-weight: 800; letter-spacing: -.02em; }
.shop-card .product-tag { color: var(--blue); margin-bottom: .2rem; font-weight: 700; }
.shop-card .stars { font-size: .82rem; }
.shop-card .stars small { color: var(--dim); margin-left: .25rem; }
.shop-card-media { position: relative; overflow: hidden; }
.shop-card-art {
  height: 188px; background: var(--well) center/cover no-repeat;
  transition: transform .45s ease;
}
.shop-card-pc .shop-card-art { height: 236px; }
.shop-card-art.is-empty,
.pdp-main.is-empty {
  background:
    radial-gradient(circle at 70% 30%, rgba(61, 126, 255, .16), transparent 55%),
    var(--well);
}
.shop-card:hover .shop-card-art { transform: scale(1.06); }
.shop-card-parts {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(180deg, rgba(10,13,20,.97), rgba(10,13,20,.99));
  padding: 2.5rem .9rem .75rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
  overflow: auto;
  scrollbar-width: thin;
}
.shop-card:hover .shop-card-parts,
.shop-card:focus-within .shop-card-parts {
  opacity: 1; transform: none;
}
.shop-card-parts-title {
  margin: 0 0 .55rem; color: var(--blue);
  font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.shop-card-parts dl { display: grid; gap: .2rem; margin: 0; }
.shop-card-parts dl > div {
  display: grid; grid-template-columns: 6.6rem minmax(0, 1fr); gap: .35rem;
  align-items: baseline; padding-bottom: .16rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.shop-card-parts dl > div:last-child { border-bottom: none; padding-bottom: 0; }
.shop-card-parts dt {
  margin: 0; color: var(--dim);
  font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.shop-card-parts dd {
  margin: 0; color: #fff;
  font-size: .8rem; font-weight: 600; line-height: 1.25;
}
.shop-card-link { display: flex; flex-direction: column; flex: 1; color: inherit; text-decoration: none; }
.shop-card-link:hover { text-decoration: none; color: inherit; }
.shop-card-body { padding: 1rem 1.1rem .3rem; display: flex; flex-direction: column; flex: 1; }
.shop-card-cta { padding: 0 1.1rem 1.15rem; }
.shop-card-link .btn {
  text-transform: uppercase; letter-spacing: .04em; font-size: .78rem; border-radius: 8px;
}
.shop-card:hover .shop-card-link .btn,
.shop-card:focus-within .shop-card-link .btn {
  background: var(--blue); border-color: var(--blue); color: #fff;
}
.shop-card-foot {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding-top: .7rem;
}
.shop-card .price { color: var(--ink); font-size: 1.28rem; font-weight: 800; margin-bottom: .85rem; }
.shop-card-desc {
  color: var(--muted); font-size: .8rem; margin: 0 0 .7rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.shop-card .badge { position: absolute; top: .7rem; left: .7rem; z-index: 2; }
.btn-add { margin-top: auto; text-transform: uppercase; letter-spacing: .04em; font-size: .78rem; border-radius: 8px; }
.shop-card:hover .btn-add {
  background: var(--blue); border-color: var(--blue); color: #fff;
}
.btn-cart {
  width: 38px; height: 38px; border: none; border-radius: 12px;
  background: var(--surface-2); color: #fff; cursor: pointer; font-size: 1rem;
}
.btn-cart:hover { background: var(--blue); }

.shop-layout {
  display: grid; grid-template-columns: 280px minmax(0, 1fr);
  gap: 2rem; align-items: start; padding-bottom: 4.5rem;
}
.shop-layout-cfg {
  grid-template-columns: minmax(0, 1fr) 320px;
}
.shop-card.is-picked { border-color: var(--blue); box-shadow: var(--blue-glow); }
.shop-card-spec {
  color: var(--muted); font-size: .8rem; line-height: 1.4;
  margin: 0 0 .75rem;
}
.shop-grid.is-list .shop-card-media { width: 260px; flex: none; align-self: stretch; }
.shop-grid.is-list .shop-card-art { height: 100%; min-height: 200px; }
@media (hover: none) {
  .shop-card:hover { transform: none; }
  .shop-card-parts { display: none; }
  .shop-card:hover .shop-card-art { transform: none; }
}
.shop-card-cta-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: .45rem;
}
.shop-chips { display: flex; flex-wrap: wrap; gap: .45rem; margin: 0 0 1rem; }
.shop-chip {
  margin: 0; padding: .42rem .8rem; border-radius: 999px;
  border: 1px solid var(--line-strong); background: transparent;
  color: var(--text); font: inherit; font-size: .82rem; font-weight: 600; cursor: pointer;
}
.shop-chip:hover, .shop-chip.is-active {
  border-color: var(--blue); color: var(--blue); background: var(--blue-soft);
}
.cfg-lead { color: var(--muted); font-size: .82rem; line-height: 1.4; margin: 0 0 1rem; }
.cfg-slot { margin-top: .95rem; padding-top: .95rem; border-top: 1px solid var(--line); }
.cfg-slot .label {
  display: block; margin-bottom: .45rem;
  color: var(--ink); font-weight: 800; font-size: .92rem;
  letter-spacing: .12em; text-transform: uppercase;
}
.cfg-step {
  margin: .7rem 0 .28rem; color: var(--dim);
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.cfg-opt {
  display: flex; align-items: center; gap: .55rem;
  width: 100%; padding: .38rem .15rem; margin: 0;
  color: var(--ink); font-size: .92rem; cursor: pointer;
}
.cfg-opt input { width: auto; flex: none; accent-color: var(--blue); margin: 0; }
.cfg-opt span { display: flex; flex: 1; }
.cfg-opt b { font-weight: 600; letter-spacing: .02em; }
.cfg-opt.is-on { color: var(--blue); }
.cfg-opt.is-on b { font-weight: 700; }
.cfg-foot { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.cfg-clear { margin-top: 1.15rem; }
.cfg-price { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; margin-bottom: .35rem; }
.cfg-price strong { font-size: 1.25rem; }
.cfg-price em { color: var(--dim); font-style: normal; font-size: .75rem; }
.cfg-now { color: var(--muted); font-size: .78rem; line-height: 1.35; margin: 0 0 .85rem; }
.cfg-foot .btn + .btn { margin-top: .45rem; }
.shop-side {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.2rem 1.15rem 1.4rem;
  position: sticky; top: 8.6rem;
  max-height: calc(100vh - 8rem); overflow: auto;
}
.shop-side h3 { font-size: 1rem; margin: 0 0 .7rem; }
.shop-side .shop-filter + .shop-filter, .shop-side h3 + .shop-filter { margin-top: 1.35rem; }
.shop-cats { display: grid; margin-bottom: 0; }
.shop-cats + .shop-filter { margin-top: 1.35rem; }
.shop-tree-item { border-bottom: 1px solid var(--line); }
.shop-tree-row { display: flex; align-items: center; gap: .15rem; }
.shop-tree-link {
  display: flex; align-items: center; justify-content: space-between; flex: 1; gap: .6rem;
  color: var(--text); font-size: .88rem; font-weight: 600;
  padding: .5rem 0; text-decoration: none;
}
.shop-tree-link span { color: var(--dim); font-weight: 500; font-size: .76rem; }
.shop-tree-link:hover, .shop-tree-link.is-active { color: var(--blue); text-decoration: none; }
.shop-tree-link.is-active span { color: var(--blue-2); }
.shop-tree-sub { font-weight: 500; font-size: .84rem; padding: .28rem 0; }
.shop-tree-kids { display: none; padding: 0 0 .4rem .95rem; }
.shop-tree-item.is-open .shop-tree-kids { display: grid; }
.shop-tree-toggle {
  flex: none; width: 28px; height: 28px; margin: 0; padding: 0;
  border: none; background: none; color: var(--dim);
  font-size: .85rem; line-height: 1; cursor: pointer;
  transform: rotate(-90deg); transition: transform .15s ease, color .15s ease;
}
.shop-tree-item.is-open .shop-tree-toggle { transform: rotate(0); color: var(--blue); }
.shop-cats > .shop-tree-link { border-bottom: 1px solid var(--line); }
.shop-filter .label { margin-bottom: .55rem; color: var(--ink); font-weight: 700; font-size: .95rem; }
.facet-range {
  display: flex; align-items: center; gap: .45rem;
}
.facet-dash { color: var(--dim); font-weight: 600; }
.facet-box {
  flex: 1; display: flex; align-items: center; gap: .35rem;
  min-width: 0; padding: .42rem .55rem;
  background: var(--well); border: 1px solid var(--line-strong);
  border-radius: 10px; color: var(--dim); font-size: .78rem; font-weight: 600;
}
.facet-box input[type="number"] {
  flex: 1; min-width: 0; width: 100%;
  background: transparent; border: none; box-shadow: none;
  padding: 0; margin: 0; color: var(--ink); font: inherit; font-size: .82rem; font-weight: 600;
  border-radius: 0; -moz-appearance: textfield;
}
.facet-box input::-webkit-outer-spin-button,
.facet-box input::-webkit-inner-spin-button { appearance: none; }
.facet-box input:focus { outline: none; border: none; box-shadow: none; }
.facet-box:focus-within { border-color: var(--blue); }
.facet { margin-top: 1.25rem; padding-top: 1.15rem; border-top: 1px solid var(--line); }
.facet-head { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; }
.facet-all {
  background: none; border: none; padding: 0; margin: 0 0 .45rem;
  color: var(--dim); font: inherit; font-size: .75rem; cursor: pointer;
}
.facet-all:hover { color: var(--blue); }
.facet-parent { display: flex; align-items: center; gap: .15rem; }
.facet-parent .facet-row { flex: 1; }
.facet-row {
  display: flex; align-items: center; gap: .5rem;
  width: 100%; padding: .28rem 0; color: #e4e7ee;
  font-size: .84rem; font-weight: 500; cursor: pointer;
}
.facet-row input { width: auto; flex: none; accent-color: var(--blue); margin: 0; }
.facet-row b { flex: 1; font-weight: 500; }
.facet-row em { color: var(--dim); font-style: normal; font-weight: 500; }
.facet-row.is-child { padding-left: 1.15rem; font-size: .82rem; }
.facet-more {
  background: none; border: none; padding: .35rem 0 0; margin: 0;
  color: var(--blue); font: inherit; font-size: .8rem; font-weight: 600; cursor: pointer;
}
.facet-kids { display: none; }
.facet-group.is-open .facet-kids { display: grid; }
.facet-chev {
  flex: none; background: none; border: none; color: var(--dim);
  width: 22px; height: 22px; padding: 0; cursor: pointer; font-size: .7rem;
}
.facet-group.is-open .facet-chev { transform: rotate(180deg); }
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.1rem;
}
.view-toggle { display: flex; gap: .35rem; }
.view-toggle button {
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--line);
  background: transparent; color: var(--muted); cursor: pointer; display: grid; place-items: center;
}
.view-toggle button svg { width: 16px; height: 16px; fill: currentColor; }
.view-toggle button.is-active, .view-toggle button:hover { color: var(--blue); border-color: var(--blue); }
.shop-sort { display: flex; align-items: center; gap: .55rem; color: var(--muted); font-size: .86rem; font-weight: 600; }
.shop-sort select { width: auto; min-width: 180px; padding: .48rem .7rem; font-size: .84rem; }
.shop-grid.is-list { grid-template-columns: 1fr; }
.shop-grid.is-list .shop-card { flex-direction: row; align-items: stretch; }
.shop-grid.is-list .shop-card-link { flex-direction: row; flex: 1; }
.shop-grid.is-list .shop-card-media { width: 260px; flex: none; }
.shop-grid.is-list .shop-card-art { width: 100%; height: 100%; min-height: 210px; }
.shop-grid.is-list .shop-card-body { justify-content: center; }
.shop-grid.is-list .shop-card-cta { display: flex; align-items: center; min-width: 220px; }
.shop-grid.is-list .btn-add { max-width: 240px; }

.repair-hero {
  position: relative;
  min-height: 420px;
  display: flex; align-items: center;
  padding: 4.2rem 0 3.6rem;
  color: var(--ink);
  background-color: var(--bg);
  background-size: cover;
  background-position: center;
  background-image:
    linear-gradient(105deg, rgba(10,13,20,.94) 0%, rgba(10,13,20,.72) 46%, rgba(10,13,20,.28) 100%),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1800&q=80");
}
.repair-hero h1 { max-width: 14ch; margin-bottom: .7rem; color: var(--ink); }
.repair-hero .crumbs { color: var(--text); letter-spacing: 0; text-transform: none; font-weight: 600; }
.repair-lead { color: var(--text); font-size: 1.05rem; max-width: 42ch; margin: 0 0 .35rem; }
.repair-checks {
  list-style: none; margin: 1.35rem 0 1.7rem; padding: 0; display: grid; gap: .55rem;
}
.repair-checks li {
  display: flex; align-items: center; gap: .65rem;
  color: var(--ink); font-weight: 700; font-size: 1rem;
}
.repair-checks li::before {
  content: "✓";
  width: 22px; height: 22px; flex: none;
  display: grid; place-items: center;
  color: var(--blue); font-size: 1.15rem; font-weight: 800;
}
.repair-jobs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.repair-job {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0; overflow: hidden;
}
.repair-job-link {
  display: flex; flex-direction: column; height: 100%;
  padding: 1.4rem 1.2rem 1.25rem; color: inherit; text-decoration: none;
}
.repair-job-link:hover { text-decoration: none; color: inherit; }
.repair-job:hover { border-color: var(--blue); }
.repair-job h3 { margin: .85rem 0 .35rem; }
.repair-job p { color: var(--muted); font-size: .88rem; margin: 0 0 .85rem; }
.repair-job .price { font-size: 1.15rem; font-weight: 800; color: var(--ink); margin: auto 0 .9rem; }
.repair-job .btn { margin-top: auto; align-self: flex-start; pointer-events: none; }
.repair-job:hover .btn { background: var(--blue); border-color: var(--blue); color: #fff; }
.repair-ico { width: 42px; height: 42px; color: var(--blue); }
.repair-ico svg { width: 100%; height: 100%; }

@media (max-width: 980px) {
  .shop-layout, .shop-layout-cfg { grid-template-columns: 1fr; }
  .shop-side { position: static; max-height: none; }
  .shop-card-cta-split { grid-template-columns: 1fr; }
  .repair-jobs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .repair-jobs { grid-template-columns: 1fr; }
  .shop-grid.is-list .shop-card { flex-direction: column; }
  .shop-grid.is-list .shop-card-media { width: 100%; }
  .shop-grid.is-list .shop-card-art { width: 100%; height: 168px; }
}

.pdp-wrap { padding: 1.6rem 0 4.5rem; }
.pdp-crumbs { margin-bottom: 1.2rem; }
.pdp-crumbs span { color: var(--ink); }
.pdp {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 2rem; align-items: start; margin-bottom: 2.4rem;
}
.pdp-gallery {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; padding: 1rem; position: relative;
}
.pdp-gallery .badge { position: absolute; top: 1.3rem; left: 1.3rem; z-index: 2; }
.pdp-main {
  height: 420px; border-radius: 14px;
  background: var(--well) center/contain no-repeat;
}
.pdp-thumbs { display: flex; gap: .55rem; margin-top: .8rem; }
.pdp-thumb {
  width: 72px; height: 72px; padding: 0; border-radius: 10px;
  border: 1px solid var(--line); background: var(--well); cursor: pointer;
}
.pdp-thumb span { display: block; width: 100%; height: 100%; border-radius: 9px; background: center/cover no-repeat; }
.pdp-thumb.is-active, .pdp-thumb:hover { border-color: var(--blue); }
.pdp-buy h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); max-width: 22ch; margin: .15rem 0 .7rem; }
.pdp-brand { color: var(--blue); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 .35rem; }
.pdp-meta { display: flex; flex-wrap: wrap; gap: .7rem 1.2rem; align-items: center; margin-bottom: 1.2rem; }
.pdp-price { padding: 1rem 0 1.1rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pdp-cfg {
  margin: .2rem 0 1.1rem; max-height: 380px; overflow: auto;
  padding-right: .15rem;
}
.pdp-cfg .cfg-lead { margin-bottom: .35rem; }
.pdp-cfg .cfg-slot:first-of-type { margin-top: 0; padding-top: .4rem; border-top: none; }
.pdp-price .price { font-size: 2.1rem; margin: 0 0 .35rem; }
.pdp-vat { color: var(--dim); font-size: .8rem; }
.pdp-stock {
  display: flex; align-items: center; gap: .45rem;
  color: var(--ok); font-weight: 700; margin: 1.1rem 0 .9rem;
}
.pdp-stock::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--ok); }
.pdp-actions { display: flex; gap: .7rem; align-items: center; margin-bottom: 1.2rem; }
.pdp-actions .qty { height: 48px; }
.pdp-actions .qty button { width: 40px; height: 48px; }
.pdp-actions .qty span { min-width: 36px; }
.pdp-actions .btn { flex: 1; height: 48px; }
.pdp-perks { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.pdp-perks li {
  color: var(--text); font-size: .88rem; font-weight: 600;
  padding-left: 1.3rem; position: relative;
}
.pdp-perks li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); }
.pdp-tabs {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden; margin-bottom: 2.6rem;
}
.pdp-tabbar {
  display: flex; gap: .2rem; padding: 0 1rem;
  border-bottom: 1px solid var(--line);
}
.pdp-tabbar button {
  background: none; border: none; color: var(--muted);
  font: inherit; font-weight: 700; padding: 1rem 1rem .9rem;
  border-bottom: 2px solid transparent; cursor: pointer;
}
.pdp-tabbar button.is-active { color: var(--ink); border-bottom-color: var(--blue); }
.pdp-panel { display: none; padding: 1.4rem 1.5rem 1.7rem; }
.pdp-panel.is-active { display: block; }
.pdp-panel h2 { font-size: 1.25rem; margin-bottom: .8rem; }
.pdp-panel p { color: #d0d6e2; max-width: 78ch; }
.pdp-opis-lista {
  list-style: none; margin: 1.1rem 0 0; padding: 0;
  display: grid; gap: 0; max-width: 52ch;
}
.pdp-opis-lista li {
  display: grid; grid-template-columns: 11rem minmax(0, 1fr);
  gap: .7rem; padding: .55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.pdp-opis-lista span { color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
@media (max-width: 620px) {
  .pdp-opis-lista li { grid-template-columns: 1fr; gap: .15rem; }
}
.pdp-spec { width: 100%; border-collapse: collapse; }
.pdp-spec th, .pdp-spec td { text-align: left; padding: .7rem .85rem; border-bottom: 1px solid var(--line); }
.pdp-spec th { width: 34%; color: var(--muted); font-weight: 600; font-size: .86rem; }
.pdp-spec td { color: var(--ink); }
.pdp-spec tr:nth-child(even) { background: rgba(255,255,255,.03); }
.pdp-related h2 { font-size: 1.4rem; margin-bottom: 1.1rem; }
.pdp-copy {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; padding: 1.4rem 1.6rem 1.8rem; margin-bottom: 2.6rem;
}
.pdp-copy h2 { font-size: 1.25rem; margin-bottom: .8rem; }
.pdp-copy p { color: #d0d6e2; max-width: 78ch; line-height: 1.65; margin: 0; }
@media (max-width: 900px) {
  .pdp { grid-template-columns: 1fr; }
  .pdp-main { height: 280px; }
}

.news-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  padding: 1.3rem 1.5rem; border-radius: 22px;
  background: var(--surface); border: 1px solid var(--line);
}
.news-bar form { display: flex; gap: .5rem; flex: 1; min-width: 240px; }
.news-bar input { background: var(--well); }

.footer-tag { color: var(--blue); font-weight: 800; }

/* -------------------------------------------------------------------------- */
.oferta-akcje {
  display: flex; flex-wrap: wrap; gap: .7rem; align-items: center;
  margin-bottom: 1rem;
}
.oferta-blok { margin-top: 2.2rem; }
.oferta-siatka {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.oferta-karta {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.oferta-karta-foto {
  height: 148px;
  background: var(--well) center/cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.oferta-karta-foto.is-empty {
  background:
    radial-gradient(circle at 70% 30%, rgba(61, 126, 255, .18), transparent 55%),
    var(--well);
}
.oferta-karta-body { padding: 1rem 1.1rem .55rem; flex: 1; }
.oferta-karta-body h3 { font-size: 1.05rem; margin: .1rem 0 .35rem; }
.oferta-karta-body .price { font-size: 1.15rem; font-weight: 800; color: var(--ink); margin: .35rem 0 .5rem; }
.oferta-karta-akcje {
  display: flex; flex-wrap: wrap; gap: .4rem;
  padding: .2rem 1.1rem 1.1rem;
}
.modal-oferta-bg {
  position: fixed; inset: 0; z-index: 160;
  background: rgba(8, 10, 14, .78);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: start center;
  padding: 1.6rem 1.1rem 2.4rem;
  overflow: auto;
}
.modal-oferta {
  width: min(820px, 100%);
  margin: .4rem auto 2rem;
}

.czat-bg {
  position: fixed; inset: 0; z-index: 180;
  background: rgba(8, 10, 14, .78);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: end center;
  padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
}
.czat-okno {
  width: min(520px, 100%);
  height: min(640px, 88vh);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
}
.czat-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--well);
}
.czat-bar b { font-size: .98rem; }
.czat-lista {
  flex: 1;
  overflow: auto;
  padding: .85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  background: var(--bg);
}
.czat-msg {
  max-width: 86%;
  align-self: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px 14px 14px 4px;
  padding: .55rem .75rem;
}
.czat-msg.is-staff {
  align-self: flex-end;
  background: var(--blue-soft);
  border-color: transparent;
  border-radius: 14px 14px 4px 14px;
}
.czat-msg span {
  display: block;
  font-size: .68rem;
  color: var(--muted);
  margin-bottom: .2rem;
}
.czat-msg p { margin: 0; font-size: .9rem; line-height: 1.4; }
.czat-form {
  display: flex;
  gap: .5rem;
  padding: .75rem;
  border-top: 1px solid var(--line);
  background: var(--well);
}
.czat-form input {
  flex: 1;
  margin: 0;
}
.czat-off {
  margin: 0;
  padding: .8rem 1rem 1rem;
  font-size: .82rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.czat-btn { position: relative; }
.czat-dot {
  display: inline-block;
  width: .48rem; height: .48rem;
  margin-left: .35rem;
  border-radius: 50%;
  background: var(--blue);
  vertical-align: middle;
  box-shadow: 0 0 0 3px rgba(61, 126, 255, .18);
}
.czat-karta-akcje { margin-top: .7rem; }
.czat-watek {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: .7rem 1rem;
  padding: 1rem 1.1rem;
  margin-bottom: .7rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.czat-watek.is-new { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue); }
.czat-watek p { margin: .25rem 0 0; font-size: .88rem; color: var(--muted); }
body.konsultant-panel #staty,
body.konsultant-panel #tab-zamowienia,
body.konsultant-panel #tab-oferta,
body.konsultant-panel #tab-opinie,
body.konsultant-panel #tab-klienci,
body.konsultant-panel #tab-requesty,
body.konsultant-panel .tabs [data-tab="zamowienia"],
body.konsultant-panel .tabs [data-tab="oferta"],
body.konsultant-panel .tabs [data-tab="opinie"],
body.konsultant-panel .tabs [data-tab="klienci"],
body.konsultant-panel .tabs [data-tab="requesty"],
body.konsultant-panel #stopkaAdmin {
  display: none !important;
}
.cookies-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  padding: .9rem 1rem calc(.9rem + env(safe-area-inset-bottom));
  background: var(--well);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 40px rgba(0,0,0,.4);
}
.cookies-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookies-inner p {
  margin: 0;
  flex: 1 1 280px;
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.45;
}
.cookies-inner a { color: var(--ink); }
.cookies-akcje { display: flex; flex-wrap: wrap; gap: .45rem; }
.cookies-link {
  background: none; border: 0; padding: 0;
  color: var(--muted); font: inherit; cursor: pointer;
  text-decoration: underline;
}
.cookies-link:hover { color: var(--ink); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: .6rem 1.1rem; align-items: center; justify-content: space-between; }
.oferta-form .field { margin-bottom: .9rem; }
.oferta-h {
  font-size: 1rem; margin: 1.35rem 0 .75rem;
  padding-top: .9rem; border-top: 1px solid var(--line);
}
.oferta-cele {
  display: flex; flex-wrap: wrap; gap: .55rem 1.15rem;
  margin: .15rem 0 .35rem;
}
.oferta-filtry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.2rem;
}
.oferta-filtry .field { margin-bottom: .7rem; }
@media (max-width: 720px) {
  .oferta-filtry { grid-template-columns: 1fr; }
}
.foto-blok { margin-bottom: 1.2rem; }
.foto-siatka {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: .7rem;
  margin-bottom: .75rem;
}
.foto-miniatura {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--well);
  min-height: 110px;
}
.foto-miniatura span {
  display: block; height: 110px;
  background: center/cover no-repeat;
}
.foto-miniatura em {
  position: absolute; top: .4rem; left: .4rem;
  font-style: normal; font-size: .68rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--blue); color: #fff;
  padding: .15rem .4rem; border-radius: 6px;
}
.foto-miniatura .foto-usun {
  position: absolute; right: .35rem; bottom: .35rem;
}
.foto-pick {
  position: relative;
  display: grid; place-items: center;
  min-height: 188px;
  margin-bottom: 1.2rem;
  border: 1.5px dashed var(--line-strong);
  border-radius: 14px;
  background: var(--well);
  cursor: pointer;
  overflow: hidden;
}
.foto-pick.foto-pick-add {
  min-height: 88px;
  margin-bottom: 0;
}
.foto-pick:hover { border-color: var(--blue); }
.foto-pick input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.foto-pick-preview {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  pointer-events: none;
}
.foto-pick-txt {
  position: relative; z-index: 1;
  color: var(--muted); font-size: .88rem; font-weight: 600;
  background: rgba(10, 12, 16, .62);
  padding: .45rem .9rem; border-radius: 999px;
  pointer-events: none;
}
body.oferta-open { overflow: hidden; }

.opcja-grupa {
  background: var(--well);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .9rem 1rem 1rem;
  margin: .75rem 0;
}
.opcja-grupa-head {
  display: flex; gap: .6rem; align-items: center;
  margin-bottom: .45rem;
}
.opcja-grupa-nazwa { flex: 1; font-weight: 700; }
.opcja-wiersz {
  display: grid;
  grid-template-columns: 1fr minmax(120px, 150px) auto;
  gap: .45rem;
  align-items: center;
  margin-bottom: .45rem;
}
.opcja-delta {
  display: flex; align-items: center; gap: .3rem;
  color: var(--muted); font-size: .85rem; font-weight: 700;
}
.opcja-delta input { margin: 0; min-width: 0; }
.opcja-dodaj-w { margin-top: .2rem; }
#dodajGrupeOpcji { margin: .2rem 0 1.2rem; }

.pdp-opcje { margin: 1rem 0 1.15rem; display: grid; gap: 1rem; }
.pdp-opcja-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 .45rem;
}
.pdp-wariant {
  display: flex; align-items: center; gap: .7rem;
  padding: .7rem .85rem; margin-bottom: .4rem;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--well); cursor: pointer;
}
.pdp-wariant input { width: auto; flex: none; accent-color: var(--blue); margin: 0; }
.pdp-wariant-nazwa { flex: 1; font-weight: 600; color: var(--ink); }
.pdp-wariant-delta { font-size: .85rem; font-weight: 800; color: var(--blue); white-space: nowrap; }
.pdp-wariant-delta.is-zero { color: var(--muted); font-weight: 600; }
.pdp-wariant.is-on { border-color: var(--blue); background: rgba(61, 126, 255, .08); }
.cart-opcje {
  margin: .15rem 0 .2rem; font-size: .8rem; color: var(--muted); line-height: 1.4;
}

@media (max-width: 620px) {
  .opcja-wiersz { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------- */
/* Telefon — zwarty układ, bez poziomego ścisku                               */
/* -------------------------------------------------------------------------- */
@media (max-width: 720px) {
  .wrap,
  .head-row,
  .topbar-inner {
    width: min(var(--max), calc(100% - 1.35rem));
  }
  h1 { font-size: clamp(1.55rem, 8vw, 2.15rem); }
  .section { padding: 2.2rem 0; }
  .section--tight { padding: 1.6rem 0; }
  .page-head { padding: 1.45rem 0 1.1rem; }
  .page-head h1 { margin-bottom: .3rem; }
  .page-head p { font-size: .92rem; }

  .hero-stage {
    margin: .85rem auto 0;
    padding: 1.15rem 1rem 1.2rem;
    gap: 1.1rem;
    border-radius: 18px;
  }
  .hero-logo { height: 72px; margin-bottom: .7rem; }
  .hero-stage h1 { font-size: 1.55rem; max-width: none; margin-bottom: .4rem; }
  .hero-stage .hero-lead { margin-bottom: 1rem; font-size: .92rem; min-height: 2.6em; }
  .hero-stage .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem;
    margin-bottom: 1rem;
    width: 100%;
  }
  .hero-stage .hero-cta .btn { width: 100%; }
  .hero-side {
    grid-template-columns: 1fr;
    gap: .4rem;
  }
  .hero-side div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: .7rem;
    padding: .62rem .8rem;
  }
  .hero-side b { font-size: .86rem; }
  .hero-side span { font-size: .78rem; }
  .hero-stage .cmd { min-height: 0; }
  .hero-stage .cmd-body {
    min-height: 148px;
    max-height: 180px;
    overflow: auto;
    font-size: .72rem;
    padding: .75rem .8rem .85rem;
  }
  .cmd-body { min-height: 160px; }

  .home-shop { padding: 1.4rem 0 2.8rem; }
  .home-cats {
    display: flex;
    gap: .5rem;
    margin: 0 -0.675rem 1.35rem;
    padding: 0 0.675rem .25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .home-cats::-webkit-scrollbar { display: none; }
  .home-cats a {
    flex: 0 0 4.55rem;
    scroll-snap-align: start;
    padding: .65rem .3rem .7rem;
    border-radius: 14px;
    font-size: .7rem;
  }
  .home-cats img { width: 48px; height: 48px; border-radius: 12px; }
  .home-hits-bar {
    align-items: stretch;
    flex-direction: column;
    gap: .7rem;
    margin-bottom: .9rem;
  }
  .home-hits-bar h2 { font-size: 1.28rem; }
  .home-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    margin: 0 -0.15rem;
    padding-bottom: .1rem;
  }
  .home-tabs::-webkit-scrollbar { display: none; }
  .home-tabs button { flex: none; }
  .home-banners { margin-top: 1.35rem; }
  .home-banner {
    min-height: 148px;
    padding: 1.15rem 1.15rem;
    border-radius: 16px;
  }
  .home-banner strong { font-size: 1.12rem; }

  .shop-card-parts { display: none; }
  .shop-card:hover,
  .shop-card:focus-within {
    transform: none;
    box-shadow: none;
  }
  .shop-card:hover .shop-card-art,
  .shop-card:focus-within .shop-card-art { transform: none; }
  .shop-card { border-radius: 14px; }
  .shop-card-art { height: 168px; }
  .shop-card-pc .shop-card-art { height: 176px; }
  .shop-card-body { padding: .85rem .9rem .2rem; }
  .shop-card h3 { font-size: 1.02rem; }
  .shop-card .price { font-size: 1.12rem; margin-bottom: .55rem; }
  .shop-card-cta { padding: 0 .9rem 1rem; }
  .shop-card-spec {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: .76rem;
  }

  .shop-filtry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 .9rem;
    border-radius: 8px;
    border: 1px solid var(--line-strong);
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
  }
  .shop-filtry-btn.is-active,
  .shop-filtry-btn[aria-expanded="true"] {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-soft);
  }
  .shop-side {
    display: none;
    position: static;
    max-height: none;
    margin: 0 0 1rem;
  }
  .shop-side.is-open { display: block; }
  .shop-toolbar {
    flex-wrap: wrap;
    gap: .55rem;
    align-items: center;
  }
  .view-toggle { display: none; }
  .shop-sort {
    margin-left: auto;
    font-size: .8rem;
  }
  .shop-sort select {
    min-width: 0;
    width: auto;
    max-width: 11.5rem;
  }
  .shop-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: .15rem;
  }
  .shop-chips::-webkit-scrollbar { display: none; }
  .shop-chip { flex: none; }

  .pdp-wrap { padding: 1rem 0 2.8rem; }
  .pdp { gap: 1.2rem; margin-bottom: 1.5rem; }
  .pdp-gallery { padding: .7rem; border-radius: 16px; }
  .pdp-main { height: 220px; }
  .pdp-actions { flex-wrap: wrap; }
  .pdp-actions .btn { flex: 1 1 100%; }
  .pdp-tabbar {
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 .6rem;
  }
  .pdp-tabbar::-webkit-scrollbar { display: none; }
  .pdp-tabbar button {
    flex: none;
    white-space: nowrap;
    padding: .85rem .7rem .75rem;
  }
  .pdp-panel { padding: 1.05rem 1rem 1.25rem; }
  .pdp-copy { padding: 1.1rem 1.05rem 1.35rem; border-radius: 16px; }

  .cart-item {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: .7rem .8rem;
    align-items: start;
  }
  .cart-item .price { grid-column: 2; justify-self: start; font-size: 1.05rem; }
  .cart-thumb { width: 60px; height: 60px; }
  .panel, .card { padding: 1.1rem 1rem; }
  .btn-akcje .btn { min-width: 0; flex: 1 1 100%; }
  .btn { white-space: normal; text-align: center; }
  .btn-primary, .btn-ghost, .btn-line { padding: .8rem 1.05rem; }

  .dok-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 1.15rem;
  }
  .dok-nav::-webkit-scrollbar { display: none; }
  .dok-nav li { flex: none; }
  .dok-nav a { padding: .65rem .85rem .75rem; font-size: .86rem; white-space: nowrap; }
  .dok-karta { padding: 1.15rem 1rem 1.5rem; border-radius: 16px; }
  .dok p, .dok li { font-size: .92rem; }

  .faq-side {
    display: flex;
    gap: .4rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: .15rem;
  }
  .faq-side::-webkit-scrollbar { display: none; }
  .faq-side button {
    flex: none;
    white-space: nowrap;
    padding: .55rem .85rem;
    border: 1px solid var(--line);
    border-radius: 999px;
  }
  .faq-cmd { min-height: 0; }
  .faq-cmd .cmd-body {
    min-height: 220px;
    max-height: 52vh;
    font-size: .74rem;
  }

  .repair-hero {
    min-height: 0;
    padding: 2rem 0 1.8rem;
    background-color: var(--bg);
    background-image:
      linear-gradient(180deg, rgba(10,13,20,.92) 0%, rgba(10,13,20,.78) 55%, var(--bg) 100%),
      url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1800&q=80");
  }
  .repair-hero h1 { max-width: none; }
  .repair-lead { font-size: .95rem; }

  .footer { padding: 2.1rem 0 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .brand-footer .brand-logo { height: 72px; }
  .footer-bottom { gap: .45rem; }
  .footer-pay { gap: .5rem .85rem; }

  .feat-bar-inner { grid-template-columns: 1fr; }
  .feat-item { border-right: none; border-bottom: 1px solid var(--line); padding: 1.1rem 1rem; }
  .feat-item:last-child { border-bottom: none; }

  .stats-band { padding: 1.4rem 1rem; }
  .stats-band .grid-4 { grid-template-columns: 1fr 1fr; gap: .9rem; }
  .stats-band b { font-size: 1.55rem; }

  .auth-wrap { margin: 1.6rem auto 3rem; }
  .map-wrap { margin-top: 1.4rem; }
  .map-box { height: 240px; }
  .news-bar { padding: 1.05rem 1rem; }
  .news-bar form { flex-direction: column; min-width: 0; }
  .kod-pole input { font-size: 1.25rem; letter-spacing: .18em; padding: .75rem .35rem; }
  .plat-przelew div { flex-direction: column; gap: .15rem; }
  .plat-przelew dd { text-align: left; }

  input[type="text"], input[type="email"], input[type="password"], input[type="tel"],
  input[type="search"], input[type="number"], select, textarea {
    font-size: 16px;
  }
  .top-search input { font-size: 16px !important; }

  #toasts {
    left: .75rem; right: .75rem; bottom: calc(.75rem + env(safe-area-inset-bottom));
    max-width: none;
  }
  .sticky { top: 6.5rem; }
}

@media (max-width: 420px) {
  .grid-2 { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
}
