:root {
  --red: #d0141b;
  --red-dark: #a80f15;
  --red-light: #fdecec;
  --ink: #161616;
  --dark: #161616;
  --dark-2: #242424;
  --muted: #6b6b68;
  --line: #e4e4e1;
  --paper: #f4f4f2;
  --paper-2: #ebebe8;
  --ok: #1f7a3f;
  --ok-light: #e6f6ec;
  --yellow: #ffcb04;
  --radius: 8px;
  --shadow: 0 10px 30px rgba(22, 22, 22, .10);
  --shadow-sm: 0 4px 14px rgba(22, 22, 22, .08);
}
* { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Barlow", ui-sans-serif, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15.5px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  display: flex; flex-direction: column; min-height: 100vh;
}
.site-main { flex: 1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { display: inline-block; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5rem; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 .75rem; }
.muted { color: var(--muted); }
.small { font-size: .82rem; }
.ok { color: var(--ok); font-weight: 700; }
.text-error { color: #b91c1c; font-size: .9rem; }
.h-count { font-weight: 500; font-size: 1rem; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
.page-stack { display: flex; flex-direction: column; gap: 1.5rem; padding: 1.5rem 1.25rem 3rem; }
.page-stack > * { min-width: 0; max-width: 100%; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.empty { text-align: center; color: var(--muted); padding: 3rem 0; }
.empty-box { padding: 2.5rem; text-align: center; }
.empty-box .btn { margin-top: 1rem; }
[hidden] { display: none !important; }
/* elementy siatek nie mogą rozpychać strony szerokością obrazków */
.tiles > *, .product-grid > *, .cat-grid > *, .usp-grid > *, .mega-grid > *, .form-grid > *, .footer-grid > *, .delivery-grid > *, .gallery-thumbs > *,
.cta-inner > *, .about-split > *, .listing-layout > *, .product-layout > *, .cart-layout > *, .checkout-layout > *, .account-layout > *, .doc-layout > *, .contact-layout > *, .reviews-layout > *, .auth-layout > *, .carousel-item, .brand-card { min-width: 0; }
img { height: auto; }

/* ---------- Przyciski, formularze ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .62rem 1.2rem; border-radius: 6px; border: 1px solid transparent;
  font: inherit; font-size: .9rem; font-weight: 700; cursor: pointer; transition: .15s; letter-spacing: .01em; line-height: 1.2;
}
.btn svg { width: 18px; height: 18px; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-lg { padding: .9rem 1.6rem; font-size: 1rem; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-outline { background: #fff; border-color: #cfcfcb; color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-sm { padding: .4rem .8rem; font-size: .8rem; }
.btn-sm svg { width: 15px; height: 15px; }
.btn-block { width: 100%; margin-top: 1rem; }
.btn.grow { flex: 1; }
.link { color: var(--red); font-weight: 700; }
.link:hover { text-decoration: underline; }
.link-btn { background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; }
.icon-btn { background: none; border: 0; color: var(--muted); cursor: pointer; font-size: 1rem; padding: .4rem; }
.icon-btn:hover { color: #b91c1c; }
.input, select.input, textarea.input {
  width: 100%; padding: .6rem .8rem; border: 1px solid #cfcfcb; border-radius: 6px;
  background: #fff; font: inherit; font-size: .95rem; color: var(--ink);
}
.input:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(22,22,22,.10); }
textarea.input { resize: vertical; }
.label, label { font-size: .8rem; font-weight: 700; color: var(--muted); display: block; margin-bottom: .25rem; text-transform: uppercase; letter-spacing: .04em; }
label > .input { margin-top: .3rem; text-transform: none; letter-spacing: 0; }
.hint-inline { font-weight: 400; color: var(--muted); font-size: .74rem; margin-left: .3rem; text-transform: none; letter-spacing: 0; display: inline; }
label.check { display: flex; align-items: flex-start; gap: .55rem; font-size: .9rem; color: var(--ink); font-weight: 500; text-transform: none; letter-spacing: 0; line-height: 1.45; }
label.check input { width: 18px; height: 18px; margin: .1rem 0 0; accent-color: var(--red); flex: 0 0 auto; }
label.check a { color: var(--red); text-decoration: underline; }
label.check > span { flex: 1 1 auto; }
.chip {
  display: inline-flex; align-items: center; gap: .35rem; padding: .25rem .75rem; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; font-size: .8rem; font-weight: 600; cursor: pointer; font-family: inherit; color: var(--ink);
}
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip-lg { padding: .45rem 1rem; font-size: .88rem; }
.alert { padding: .8rem 1rem; border-radius: 6px; font-size: .92rem; margin-bottom: 1rem; }
.alert-success { background: var(--ok-light); color: #065f46; }
.alert-error { background: #fef2f2; color: #991b1b; }
.stack-form { display: flex; flex-direction: column; gap: .9rem; }
.form-card { padding: 1.4rem; }
.form-card h2 { font-size: 1.15rem; margin-bottom: 1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1rem; }
.form-grid .span-2 { grid-column: span 2; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Pasek górny ---------- */
.topbar { background: var(--dark); color: rgba(255,255,255,.85); font-size: .78rem; font-weight: 500; letter-spacing: .02em; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 34px; gap: 1rem; }
.topbar-promo { color: var(--yellow); font-weight: 700; }
.topbar-right { display: flex; gap: 1.25rem; }
.topbar a:hover { color: #fff; text-decoration: underline; }

/* ---------- Nagłówek ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: 0 2px 14px rgba(0,0,0,.08); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 84px; }
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: auto; height: 46px; }
.search { flex: 1 1 auto; display: flex; align-items: center; border: 2px solid var(--ink); border-radius: 6px; background: #fff; height: 46px; position: relative; max-width: 640px; }
.search input { flex: 1; border: 0; background: transparent; padding: 0 1rem; font: inherit; font-size: .95rem; outline: none; min-width: 0; height: 100%; }
.search button { border: 0; background: var(--ink); color: #fff; padding: 0 1.1rem; height: 100%; cursor: pointer; display: flex; align-items: center; gap: .4rem; font: inherit; font-weight: 700; font-size: .88rem; border-radius: 0 3px 3px 0; }
.search button:hover { background: var(--red); }
.search button svg { width: 18px; height: 18px; }
.search-suggest { position: absolute; top: calc(100% + 8px); left: -2px; right: -2px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 18px 40px rgba(0,0,0,.16); padding: .5rem; z-index: 60; max-height: 70vh; overflow-y: auto; }
.ss-title { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); padding: .4rem .6rem; }
.ss-empty { padding: .5rem .6rem 1rem; font-size: .85rem; color: var(--muted); }
.ss-item { display: flex; align-items: center; gap: .7rem; padding: .45rem .6rem; border-radius: 8px; }
.ss-item:hover { background: var(--paper); }
.ss-item img, .ss-noimg { width: 46px; height: 46px; border-radius: 6px; object-fit: contain; background: var(--paper); flex: 0 0 auto; }
.ss-text { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.ss-name { font-weight: 600; font-size: .88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ss-cat { font-size: .72rem; color: var(--muted); }
.ss-price { font-weight: 800; font-size: .88rem; white-space: nowrap; }
.ss-price.promo { color: var(--red); }
.ss-cat-link { display: block; padding: .4rem .6rem; border-radius: 8px; font-weight: 600; font-size: .86rem; }
.ss-cat-link:hover { background: var(--paper); }
.ss-cat-link::before { content: "›"; margin-right: .4rem; color: var(--red); }
.ss-all { display: block; text-align: center; padding: .6rem; margin-top: .25rem; border-top: 1px solid var(--line); font-size: .84rem; font-weight: 700; color: var(--red); }
.ss-all:hover { text-decoration: underline; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: .5rem; flex: 0 0 auto; }
.header-btn, .header-phone { display: flex; align-items: center; gap: .55rem; padding: .45rem .7rem; border-radius: 8px; color: var(--ink); transition: .15s; line-height: 1.1; }
.header-btn:hover, .header-phone:hover { background: var(--paper); }
.header-btn svg, .header-phone svg { width: 24px; height: 24px; flex: 0 0 auto; }
.header-btn span, .header-phone span { display: flex; flex-direction: column; gap: .1rem; }
.header-btn small, .header-phone small { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.header-btn b, .header-phone b { font-size: .88rem; font-weight: 700; white-space: nowrap; }
.header-btn.active { color: var(--red); }
.cart-link { position: relative; background: var(--red); color: #fff; }
.cart-link:hover { background: var(--red-dark); }
.cart-link small { color: rgba(255,255,255,.75); }
.cart-count { position: absolute; top: -6px; left: 22px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--yellow); color: var(--ink); font-size: .72rem; font-weight: 800; display: flex !important; align-items: center; justify-content: center; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; background: none; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; padding: 8px; flex: 0 0 auto; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* pasek kategorii */
.catnav { background: var(--dark); color: #fff; }
.catnav-inner { display: flex; align-items: stretch; height: 46px; }
.nav-search { display: none; }
.nav-item { display: flex; align-items: stretch; position: relative; }
.nav-link { display: flex; align-items: center; gap: .4rem; padding: 0 .9rem; font-size: .86rem; font-weight: 600; color: rgba(255,255,255,.92); white-space: nowrap; transition: .15s; }
.nav-link svg { width: 18px; height: 18px; }
.nav-link:hover, .nav-item.active > .nav-link, .nav-link.active { background: rgba(255,255,255,.1); color: #fff; }
.nav-link-cats { background: var(--red); font-weight: 700; padding: 0 1.1rem; text-transform: uppercase; letter-spacing: .04em; font-size: .82rem; }
.nav-link-cats:hover, .has-mega.active > .nav-link-cats { background: var(--red-dark); }
.nav-link-promo { color: var(--yellow); }
.nav-spacer { flex: 1; }
.catnav-inner { overflow: visible; }
.nav-more-caret { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin: -3px 0 0 .1rem; opacity: .7; }
@media (min-width: 961px) { .catnav-inner { flex-wrap: nowrap; } .nav-item.has-drop:not(.nav-more) > .nav-link { padding: 0 .75rem; } }
@media (min-width: 961px) and (max-width: 1400px) { .nav-link { font-size: .82rem; padding: 0 .65rem; } .nav-item.has-drop:not(.nav-more) > .nav-link { padding: 0 .6rem; } .nav-link-cats { padding: 0 .9rem; } }
.mega {
  position: absolute; top: 100%; left: 0; width: min(1000px, calc(100vw - 2.5rem)); background: #fff; color: var(--ink); border-radius: 0 0 12px 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18); padding: 1.25rem 1.5rem 1rem; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: .18s; border-top: 3px solid var(--red); z-index: 55;
}
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem 1.5rem; }
.mega-cat { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; padding: .3rem 0; font-weight: 800; font-size: .92rem; border-bottom: 2px solid var(--line); margin-bottom: .4rem; }
.mega-cat:hover { color: var(--red); border-color: var(--red); }
.mega-cat small { color: var(--muted); font-weight: 600; font-size: .72rem; }
.mega-sub { display: flex; flex-direction: column; gap: .15rem; font-size: .82rem; color: #444; }
.mega-sub a { padding: .12rem 0; }
.mega-sub a:hover { color: var(--red); }
.mega-more { color: var(--red); font-weight: 700; }
.mega-foot { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 1rem; padding-top: .75rem; border-top: 1px solid var(--line); font-size: .82rem; font-weight: 700; color: var(--muted); }
.mega-foot a:first-child { color: var(--red); }
.mega-foot a:hover { color: var(--ink); }
.drop { position: absolute; top: 100%; left: 0; min-width: 260px; background: #fff; color: var(--ink); border-radius: 0 0 10px 10px; box-shadow: 0 18px 40px rgba(0,0,0,.18); padding: .5rem 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s; border-top: 3px solid var(--red); z-index: 55; max-height: 70vh; overflow-y: auto; }
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 1.1rem; font-size: .86rem; font-weight: 500; white-space: nowrap; }
.drop a:hover { background: var(--paper); color: var(--red); }
.drop a small { color: var(--muted); font-size: .72rem; }
.nav-extra { display: none; }
@media (max-width: 1240px) { .header-phone { display: none; } }
@media (max-width: 1100px) {
  .nav-link { padding: 0 .65rem; font-size: .8rem; }
  .mega-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .header-inner { height: 66px; gap: .6rem; }
  .nav-toggle { display: flex; }
  .brand img { height: 36px; }
  .search { display: none; }
  .header-btn > span { display: none; }
  .header-btn { padding: .5rem; }
  .cart-link { padding: .5rem .6rem; }
  .cart-count { left: 26px; top: -4px; }
  .catnav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; color: var(--ink); border-top: 1px solid var(--line); box-shadow: 0 16px 30px rgba(0,0,0,.12); max-height: calc(100vh - 66px); overflow-y: auto; overscroll-behavior: contain; }
  .catnav.open { display: block; }
  body.nav-open { overflow: hidden; }
  body.nav-open::before { content: ""; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 45; }
  .catnav-inner { flex-direction: column; height: auto; padding: 0 0 2rem; }
  .nav-search { display: flex; gap: .5rem; padding: 1rem 1.25rem .75rem; }
  .nav-search .input { flex: 1; height: 46px; }
  .nav-item { flex-direction: column; border-bottom: 1px solid var(--line); }
  .nav-link { color: var(--ink); padding: .9rem 1.25rem; font-size: 1rem; justify-content: space-between; }
  .nav-link:hover, .nav-item.active > .nav-link, .nav-link.active { background: var(--paper); color: var(--red); }
  .nav-link-cats { background: var(--red); color: #fff; border-radius: 0; }
  .nav-link-cats:hover { color: #fff; }
  .has-drop > .nav-link::after, .has-mega > .nav-link::after { content: ""; width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -4px; transition: transform .2s; opacity: .6; }
  .has-drop.open > .nav-link::after, .has-mega.open > .nav-link::after { transform: rotate(225deg); margin-top: 4px; }
  .mega, .drop { position: static; width: auto; min-width: 0; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: 0; border-radius: 0; padding: .25rem 1.25rem 1rem; display: none; background: var(--paper); max-height: none; }
  .has-mega.open .mega, .has-drop.open .drop { display: block; }
  .mega-grid { grid-template-columns: 1fr; gap: .5rem; }
  .drop a { padding: .5rem .25rem; white-space: normal; }
  .nav-spacer { display: none; }
  .nav-link-top { border-bottom: 1px solid var(--line); }
  .nav-link-promo { color: var(--red); }
  .nav-extra { display: flex; flex-direction: column; margin-top: .75rem; padding: 0 1.25rem; gap: .15rem; }
  .nav-extra a { display: flex; align-items: center; gap: .75rem; padding: .7rem .5rem; font-weight: 600; font-size: .95rem; border-radius: 8px; }
  .nav-extra a:hover { background: var(--paper); }
  .nav-extra svg { width: 20px; height: 20px; color: var(--red); flex: 0 0 auto; }
}

/* ---------- Toast ---------- */
.toast-wrap { position: fixed; right: 1rem; bottom: 1rem; z-index: 90; display: flex; flex-direction: column; gap: .5rem; max-width: calc(100vw - 2rem); }
.toast { background: var(--dark); color: #fff; padding: .8rem 1.1rem; border-radius: 8px; box-shadow: var(--shadow); font-size: .9rem; font-weight: 600; display: flex; gap: .75rem; align-items: center; animation: toast-in .25s ease; }
.toast a { color: var(--yellow); white-space: nowrap; }
.toast-error { background: #991b1b; }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Strona główna ---------- */
.hero-slider { padding: 1.25rem 0 0; }
.hero-frame { position: relative; border-radius: 12px; overflow: hidden; background: var(--dark); box-shadow: var(--shadow); }
.hero-track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); will-change: transform; }
.hero-slide { flex: 0 0 100%; min-width: 0; display: block; }
.hero-slide img { width: 100%; height: auto; display: block; aspect-ratio: 3500/800; object-fit: cover; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; border: 0; background: rgba(255,255,255,.9); color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(0,0,0,.2); z-index: 3; transition: .15s; }
.hero-arrow:hover { background: var(--red); color: #fff; }
.hero-arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.hero-arrow.prev { left: 12px; } .hero-arrow.next { right: 12px; }
.hero-dots { position: absolute; left: 0; right: 0; bottom: 10px; display: flex; justify-content: center; gap: .4rem; z-index: 3; }
.hero-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.5); cursor: pointer; padding: 0; transition: .15s; }
.hero-dots button.active { background: var(--red); transform: scale(1.25); }
@media (max-width: 720px) { .hero-slide img { aspect-ratio: 2431/1072; } .hero-arrow { width: 34px; height: 34px; } .hero-slider { padding-top: .75rem; } .hero-frame { border-radius: 8px; } }
.home-stack { gap: 3rem; padding-top: 2.5rem; }
.section-heading { font-size: 1.55rem; font-weight: 800; margin: 0 0 1.25rem; position: relative; padding-left: .9rem; }
.section-heading::before { content: ""; position: absolute; left: 0; top: .15em; bottom: .15em; width: 5px; background: var(--red); border-radius: 2px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.section-head .section-heading { margin-bottom: 1.25rem; }
.section-link { font-weight: 700; color: var(--red); font-size: .9rem; margin-bottom: 1.25rem; }
.section-link:hover { text-decoration: underline; }
.tiles { display: grid; grid-template-columns: repeat(var(--tiles-n, 4), 1fr); gap: 1rem; }
.tile { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; transition: .2s; }
.tile:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: transparent; }
.tile-img { aspect-ratio: 4/3; background: var(--paper); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.tile-img img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; transition: transform .35s; }
.tile:hover .tile-img img { transform: scale(1.05); }
.tile-ico svg { width: 64px; height: 64px; color: var(--red); }
.tile-text { padding: .9rem 1.1rem 1.1rem; display: flex; flex-direction: column; gap: .2rem; }
.tile-title { font-weight: 800; font-size: 1.05rem; }
.tile-sub { font-size: .82rem; color: var(--red); font-weight: 700; }
@media (max-width: 900px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
.band { color: #fff; }
.band-dark { background: var(--dark); }
.usp-band { padding: 2.5rem 0 2.25rem; margin-top: 3rem; }
.usp-headline { text-align: center; font-size: clamp(1rem, 1.8vw, 1.25rem); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin: 0 auto 2rem; max-width: 60rem; color: #fff; }
.usp-grid { display: grid; grid-template-columns: repeat(var(--usp-n, 4), 1fr); gap: 1.5rem; }
.usp { display: flex; gap: .9rem; align-items: flex-start; color: #fff; }
.usp-icon { width: 48px; height: 48px; flex: 0 0 auto; border-radius: 10px; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; }
.usp-icon svg { width: 24px; height: 24px; }
.usp h4 { margin: .15rem 0 .3rem; font-size: 1rem; font-weight: 800; }
.usp p { margin: 0; font-size: .84rem; color: rgba(255,255,255,.75); line-height: 1.55; }
a.usp:hover h4 { color: var(--yellow); }
@media (max-width: 900px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .usp-grid { grid-template-columns: 1fr; } }
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.cat-card { display: flex; flex-direction: column; gap: .3rem; padding: 1.25rem 1.1rem; background: var(--paper); border-radius: 12px; border: 1px solid transparent; transition: .2s; }
.cat-card:hover { background: #fff; border-color: var(--line); box-shadow: var(--shadow); transform: translateY(-3px); }
.cat-ico { width: 46px; height: 46px; border-radius: 10px; background: #fff; color: var(--red); display: flex; align-items: center; justify-content: center; margin-bottom: .5rem; border: 1px solid var(--line); }
.cat-ico svg { width: 26px; height: 26px; }
.cat-name { font-weight: 800; font-size: 1rem; line-height: 1.2; }
.cat-sub { font-size: .78rem; color: var(--muted); line-height: 1.4; }
.cat-count { font-size: .76rem; font-weight: 700; color: var(--red); margin-top: auto; padding-top: .4rem; }
@media (max-width: 1100px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; } .cat-card { padding: 1rem .9rem; } }
.brand-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.brand-card { display: flex; align-items: center; justify-content: center; min-width: 160px; height: 76px; padding: .75rem 1.5rem; background: #fff; border: 1px solid var(--line); border-radius: 10px; font-weight: 800; font-size: 1.1rem; letter-spacing: .04em; text-transform: uppercase; transition: .15s; }
.brand-card:hover { border-color: var(--red); color: var(--red); }
.brand-card img { max-height: 48px; width: auto; }
.cta-band { padding: 3rem 0; color: #fff; margin-top: 3rem; }
.cta-dark { background: linear-gradient(120deg, #161616, #2b2b2b); }
.cta-accent { background: linear-gradient(120deg, #a80f15, var(--red) 60%, #e5323a); }
.cta-light { background: var(--paper); color: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-inner { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.cta-inner.has-image { grid-template-columns: 1.2fr .8fr; }
.eyebrow { display: inline-block; font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: .75rem; }
.cta-dark .eyebrow { color: var(--yellow); }
.cta-accent .eyebrow { color: #fff; opacity: .85; }
.cta-text h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -.02em; margin: 0 0 .75rem; line-height: 1.15; }
.cta-text p { margin: 0 0 1.5rem; font-size: 1.02rem; opacity: .88; max-width: 38rem; }
.cta-image img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 14px; box-shadow: 0 20px 50px rgba(0,0,0,.25); }
@media (max-width: 800px) { .cta-inner.has-image { grid-template-columns: 1fr; } .cta-band { padding: 2.25rem 0; } }
.about-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.about-split.image-left .about-text { order: 2; }
.about-text h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; letter-spacing: -.02em; margin: 0 0 1rem; }
.about-text .prose { margin-bottom: 1.5rem; font-size: 1.02rem; }
.about-image img { width: 100%; aspect-ratio: 4/3; object-fit: contain; border-radius: 14px; background: var(--paper); }
@media (max-width: 800px) { .about-split { grid-template-columns: 1fr; gap: 1.5rem; } .about-split.image-left .about-text { order: 0; } }

/* karuzela */
.carousel-wrap { position: relative; }
.carousel-arrow { position: absolute; top: 38%; z-index: 2; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink); padding: 0; cursor: pointer; box-shadow: 0 4px 14px rgba(0,0,0,.14); display: flex; align-items: center; justify-content: center; transition: .15s; }
.carousel-arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; display: block; }
.carousel-arrow:hover { background: var(--red); color: #fff; border-color: var(--red); }
.carousel-arrow.prev { left: -22px; }
.carousel-arrow.next { right: -22px; }
.carousel-arrow[disabled], .carousel-arrow.is-off { background: #e6e8e3; color: #a9ada5; border-color: #dcdfd8; box-shadow: none; cursor: default; }
.carousel-wrap.no-scroll .carousel-arrow { display: none; }
@media (max-width: 1360px) { .carousel-arrow.prev { left: -6px; } .carousel-arrow.next { right: -6px; } }
.carousel-row { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 3rem) / 4); gap: 1rem; overflow-x: auto; padding: .25rem .25rem 1rem; scroll-snap-type: x mandatory; scrollbar-width: none; width: 100%; }
.carousel-row::-webkit-scrollbar { display: none; }
.carousel-row .carousel-item { scroll-snap-align: start; }
@media (max-width: 1100px) { .carousel-row { grid-auto-columns: calc((100% - 2rem) / 3); } }
@media (max-width: 760px) { .carousel-row { grid-auto-columns: calc((100% - 1rem) / 2); } }
@media (max-width: 480px) { .carousel-row { grid-auto-columns: 74vw; } }

/* ---------- Karty produktów ---------- */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 720px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
.product-card { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; transition: .2s; position: relative; }
.product-card:hover { box-shadow: var(--shadow); border-color: #cfcfcb; }
.product-card-image { position: relative; aspect-ratio: 1; background: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; border-bottom: 1px solid var(--paper-2); }
.product-card-image img { width: 100%; height: 100%; object-fit: contain; padding: .75rem; transition: transform .35s; }
.product-card:hover .product-card-image img { transform: scale(1.05); }
.noimg { color: #cfcfcb; }
.noimg svg { width: 64px; height: 64px; }
.badge-promo, .badge-hit, .badge-out { position: absolute; top: .6rem; left: .6rem; font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: .25rem .6rem; border-radius: 4px; }
.badge-promo { background: var(--red); color: #fff; }
.badge-hit { background: var(--yellow); color: var(--ink); }
.badge-out { background: #fff; color: var(--muted); border: 1px solid var(--line); left: auto; right: .6rem; }
.is-out .product-card-image img { opacity: .55; filter: grayscale(.4); }
.product-card-body { display: flex; flex-direction: column; gap: .25rem; padding: .85rem .95rem 1rem; flex: 1; }
.product-card-cat { text-transform: uppercase; letter-spacing: .06em; font-size: .68rem; font-weight: 700; color: var(--muted); }
.product-card-cat:hover { color: var(--red); }
.product-card-name { font-weight: 700; line-height: 1.3; font-size: .95rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-name:hover { color: var(--red); }
.product-card-meta { display: flex; justify-content: space-between; gap: .5rem; font-size: .74rem; color: var(--muted); margin-top: .2rem; }
.availability { display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; color: var(--ok); white-space: nowrap; }
.availability::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }
.availability.out { color: #b91c1c; }
.availability.out::before { background: #b91c1c; }
.product-card-price { margin-top: auto; padding-top: .7rem; display: flex; align-items: flex-end; justify-content: space-between; gap: .5rem; }
.card-add .btn { white-space: nowrap; }
.price { display: inline-flex; flex-direction: column; gap: .05rem; }
.price-main { display: inline-flex; align-items: baseline; gap: .45rem; flex-wrap: wrap; }
.price-current { font-weight: 800; font-size: 1.15rem; letter-spacing: -.01em; }
.price-current.promo { color: var(--red); }
.price-old { color: var(--muted); text-decoration: line-through; font-size: .82rem; }
.price-save { font-size: .7rem; font-weight: 800; color: var(--red); background: var(--red-light); padding: .1rem .35rem; border-radius: 4px; }
.price-net { font-size: .72rem; color: var(--muted); }
.price-lg .price-current { font-size: 2rem; }
.price-lg .price-old { font-size: 1rem; }
.price-lg .price-net { font-size: .85rem; }
@media (max-width: 600px) { .product-card-price { flex-direction: column; align-items: stretch; } .card-add .btn { width: 100%; } }

/* ---------- Listing ---------- */
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .3rem; font-size: .8rem; color: var(--muted); }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs .current { color: var(--ink); font-weight: 600; }
.listing-page { padding: 1.25rem 1.25rem 3rem; display: flex; flex-direction: column; gap: 1.1rem; }
.listing-head h1 { font-size: 1.9rem; font-weight: 800; margin-bottom: .2rem; }
.listing-lead { max-width: 60rem; }
.subcat-strip { display: flex; flex-wrap: wrap; gap: .5rem; }
.subcat-chip { display: inline-flex; align-items: center; gap: .4rem; padding: .45rem .9rem; border-radius: 6px; background: var(--paper); font-size: .86rem; font-weight: 600; border: 1px solid transparent; }
.subcat-chip:hover { background: #fff; border-color: var(--line); color: var(--red); }
.subcat-chip small { color: var(--muted); font-weight: 600; }
.listing-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 1.75rem; align-items: start; }
.listing-main { display: flex; flex-direction: column; gap: 1rem; min-width: 0; }
.listing-grid { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .listing-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .listing-grid { grid-template-columns: repeat(4, 1fr); } }
.filters-panel { background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; position: sticky; top: 100px; }
.filters-head { display: flex; align-items: center; justify-content: space-between; padding: .8rem 1rem; background: var(--dark); color: #fff; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.f-clear { font-size: .78rem; font-weight: 700; color: var(--red); text-transform: none; letter-spacing: 0; }
.filters-head .f-clear { color: var(--yellow); }
.f-clear:hover { text-decoration: underline; }
.f-group { padding: .85rem 1rem; border-bottom: 1px solid var(--line); }
.f-group:last-of-type { border-bottom: 0; }
.f-title { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .5rem; }
.f-opt { display: flex; align-items: center; gap: .6rem; padding: .3rem 0; font-size: .88rem; color: var(--ink); }
.f-opt:hover .f-label { color: var(--red); }
.f-check { width: 16px; height: 16px; border-radius: 4px; border: 2px solid #c9cdc5; flex: 0 0 auto; position: relative; transition: .15s; }
.f-opt.active .f-check { border-color: var(--red); background: var(--red); }
.f-opt.active .f-check::after { content: ""; position: absolute; left: 3px; top: 0; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.f-opt.active .f-label { font-weight: 700; }
.f-label { flex: 1; }
.f-count { font-size: .72rem; color: var(--muted); background: var(--paper); padding: .05rem .45rem; border-radius: 999px; min-width: 1.6rem; text-align: center; }
.f-plain { font-weight: 600; }
.f-plain.active .f-label { color: var(--red); }
.f-more-hidden { display: none; }
.f-more-btn { display: inline-block; margin-top: .35rem; font-size: .8rem; font-weight: 700; color: var(--red); background: none; border: 0; padding: .2rem 0; cursor: pointer; font-family: inherit; }
.f-more-btn:hover { text-decoration: underline; }
.f-price-row { display: flex; align-items: center; gap: .4rem; }
.f-price-row .input { padding: .45rem .5rem; font-size: .85rem; min-width: 0; }
.f-price-row .btn { flex: 0 0 auto; }
.f-help { padding: 1rem; background: var(--paper); display: flex; flex-direction: column; gap: .35rem; font-size: .84rem; }
.f-help .btn { align-self: flex-start; margin-top: .3rem; }
.toolbar { display: flex; align-items: center; gap: 1rem; padding: .55rem .9rem; background: var(--paper); border-radius: 8px; }
.toolbar-count { font-size: .88rem; color: var(--muted); white-space: nowrap; }
.toolbar-count strong { color: var(--ink); }
.toolbar-sort { margin-left: auto; display: flex; align-items: center; gap: .5rem; }
.toolbar-sort label { margin: 0; font-size: .74rem; }
.toolbar-sort select { width: auto; padding: .4rem 2rem .4rem .7rem; font-size: .86rem; font-weight: 600; }
.filters-toggle { display: none; }
.active-filters { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; }
.chip-active { background: var(--red-light); border-color: var(--red-light); color: var(--red); }
.chip-active span { font-size: .7rem; opacity: .7; }
.chip-active:hover { background: var(--red); color: #fff; }
.pagination { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .35rem; margin-top: .5rem; }
.page-num, .page-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 .75rem; border-radius: 6px; border: 1px solid var(--line); font-weight: 700; font-size: .88rem; background: #fff; }
.page-num:hover, .page-btn:hover { border-color: var(--ink); }
.page-num.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.page-gap { padding: 0 .3rem; color: var(--muted); }
.cat-desc { padding: 1.25rem 1.5rem; font-size: .95rem; }
@media (max-width: 900px) {
  .listing-layout { grid-template-columns: 1fr; gap: 1rem; }
  .filters-panel { display: none; position: static; }
  .filters-panel.open { display: block; }
  .filters-toggle { display: inline-flex; }
  .listing-main { order: 1; }
  .filters-panel { order: 2; }
  .filters-panel.open { order: 0; }
}

/* ---------- Strona produktu ---------- */
.product-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(380px, 1fr); gap: 2.5rem; align-items: start; }
@media (max-width: 960px) { .product-layout { grid-template-columns: 1fr; gap: 1.5rem; } }
.gallery { display: flex; flex-direction: column; gap: .75rem; }
.gallery-main { aspect-ratio: 1; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.gallery-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 1.5rem; }
.gallery-main .badge-promo, .gallery-main .badge-hit { left: 1rem; top: 1rem; font-size: .8rem; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: .6rem; }
.gallery-thumb { aspect-ratio: 1; padding: 0; border: 1px solid var(--line); border-radius: 8px; background: #fff; overflow: hidden; cursor: pointer; transition: .15s; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: .3rem; }
.gallery-thumb:hover { border-color: var(--ink); }
.gallery-thumb.active { border-color: var(--red); box-shadow: 0 0 0 2px rgba(208,20,27,.25); }
@media (max-width: 960px) { .gallery-thumbs { display: flex; overflow-x: auto; } .gallery-thumb { width: 72px; height: 72px; flex: 0 0 auto; } }
.product-summary { display: flex; flex-direction: column; gap: 1rem; align-self: start; position: sticky; top: 100px; }
.product-brand { display: inline-block; font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: .35rem; }
.product-title { font-size: 1.5rem; font-weight: 800; line-height: 1.2; }
.product-meta { display: flex; flex-wrap: wrap; gap: .4rem 1rem; font-size: .82rem; color: var(--muted); margin-top: .4rem; }
.product-rating { display: inline-flex; align-items: center; gap: .4rem; color: var(--muted); }
.product-rating:hover { color: var(--red); }
.review-stars { color: #d5d8d2; font-size: 1rem; letter-spacing: .05em; }
.review-stars .on { color: var(--yellow); }
.buy-box { display: flex; flex-direction: column; gap: 1rem; padding: 1.25rem; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); }
.buy-price { display: flex; flex-wrap: wrap; align-items: flex-end; gap: .5rem 1rem; }
.promo-name { font-size: .78rem; font-weight: 700; color: var(--red); background: var(--red-light); padding: .2rem .55rem; border-radius: 4px; align-self: center; }
.buy-avail { display: flex; flex-wrap: wrap; gap: .4rem 1rem; align-items: center; font-size: .86rem; }
.buy-ship { display: inline-flex; align-items: center; gap: .4rem; color: var(--muted); }
.buy-ship svg { width: 18px; height: 18px; }
.qty-row { display: flex; gap: .6rem; }
.qty { display: flex; align-items: center; border: 1px solid #cfcfcb; border-radius: 6px; background: #fff; }
.qty button { background: none; border: 0; font-size: 1.2rem; padding: .5rem .85rem; cursor: pointer; font-family: inherit; }
.qty button:hover { color: var(--red); }
.qty input { width: 3.2rem; text-align: center; border: 0; font: inherit; font-weight: 700; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty-row .btn { padding: .85rem 1.2rem; }
.buy-free { margin: -.4rem 0 0; }
.trust { display: grid; gap: .5rem; margin: 0; padding: 1rem 0 0; border-top: 1px solid var(--line); list-style: none; font-size: .82rem; color: var(--muted); }
.trust li { display: flex; align-items: center; gap: .55rem; }
.trust li svg { width: 18px; height: 18px; color: var(--ok); flex: 0 0 auto; }
.ask-box { display: flex; flex-direction: column; gap: .2rem; padding: 1rem 1.2rem; background: var(--paper); border-radius: 10px; font-size: .88rem; }
.ask-box a[href^="tel"] { font-weight: 700; }
.section-nav { display: flex; flex-wrap: wrap; gap: .4rem; border-bottom: 1px solid var(--line); padding-bottom: .9rem; }
.product-sections { display: flex; flex-direction: column; gap: 2.75rem; }
.product-sections section { scroll-margin-top: 110px; }
.section-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 1.1rem; display: flex; align-items: center; gap: .75rem; }
.section-title::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.desc-section .prose { max-width: 72rem; }
.spec-table { width: 100%; border-collapse: collapse; font-size: .92rem; max-width: 48rem; }
.spec-table th, .spec-table td { text-align: left; padding: .6rem .9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { width: 36%; font-weight: 700; color: var(--muted); background: var(--paper); }
.spec-table tr:first-child th, .spec-table tr:first-child td { border-top: 1px solid var(--line); }
.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.delivery-card { padding: 1.25rem 1.4rem; }
.delivery-card h3 { font-size: 1rem; margin-bottom: .75rem; }
.delivery-list { list-style: none; margin: 0 0 .75rem; padding: 0; display: flex; flex-direction: column; }
.delivery-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.delivery-list li:last-child { border-bottom: 0; }
.delivery-card p a { color: var(--red); font-weight: 600; }
@media (max-width: 720px) { .delivery-grid { grid-template-columns: 1fr; } }
.related { border-top: 1px solid var(--line); padding-top: 2rem; }

/* opisy HTML z BaseLinker */
.prose p { margin: 0 0 .85rem; }
.prose ul, .prose ol { margin: .5rem 0 .85rem; padding-left: 1.5rem; }
.prose h2 { margin-top: 1.75rem; font-size: 1.3rem; }
.prose h3 { margin-top: 1.25rem; font-size: 1.1rem; }
.prose a { color: var(--red); text-decoration: underline; }
.prose img { border-radius: 10px; margin: .5rem 0; }
.prose table { border-collapse: collapse; width: 100%; margin: 1rem 0; font-size: .9rem; }
.prose td, .prose th { border: 1px solid var(--line); padding: .45rem .65rem; text-align: left; }
.prose blockquote { margin: 1.25rem 0; padding: .5rem 1rem; border-left: 4px solid var(--red); background: var(--paper); border-radius: 0 8px 8px 0; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 1.5rem 0; }
.bl-desc .section { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; align-items: center; margin-bottom: 2rem; }
.bl-desc .section .item-12 { grid-column: 1 / -1; }
.bl-desc .section .item-6 { min-width: 0; }
.bl-desc .section .item-8 { grid-column: span 1; }
.bl-desc .image-item img { width: 100%; max-height: 420px; object-fit: contain; background: var(--paper); border-radius: 12px; margin: 0; }
.bl-desc .text-item { font-size: .97rem; line-height: 1.6; }
.bl-desc .text-item > p:first-child b:only-child { font-size: 1.15rem; }
.bl-desc .text-item b { font-weight: 700; }
.bl-desc .text-item ul { margin: .4rem 0 .8rem; }
@media (max-width: 720px) { .bl-desc .section { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1.5rem; } }

/* opinie */
.reviews-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 1.5rem; align-items: start; }
.reviews-list { display: flex; flex-direction: column; gap: 1rem; }
.reviews-summary { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: center; padding: 1.25rem 1.5rem; background: var(--paper); border-radius: 12px; }
.reviews-avg { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.reviews-avg b { font-size: 2.4rem; font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.review-stars.big { font-size: 1.3rem; }
.reviews-bars { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .3rem; font-size: .8rem; }
.reviews-bars li { display: grid; grid-template-columns: 2.6rem 1fr 2rem; gap: .6rem; align-items: center; }
.reviews-bars .bar { height: 8px; border-radius: 999px; background: #e3e5df; overflow: hidden; }
.reviews-bars .bar span { display: block; height: 100%; background: var(--yellow); border-radius: 999px; }
.review-item { padding: 1.1rem 1.25rem; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.review-item-head { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; font-size: .86rem; }
.review-verified { font-size: .72rem; font-weight: 700; color: var(--ok); background: var(--ok-light); padding: .1rem .5rem; border-radius: 999px; }
.review-title { font-size: 1rem; margin: .5rem 0 .25rem; }
.review-text { margin: .4rem 0 0; font-size: .93rem; }
.reviews-empty { padding: 1.75rem; }
.review-form { position: sticky; top: 100px; }
.review-form h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.rating-input { display: inline-flex; flex-direction: row-reverse; gap: .1rem; margin-bottom: .25rem; justify-content: flex-end; }
.rating-input input { position: absolute; opacity: 0; width: 0; height: 0; }
.rating-input label { font-size: 1.8rem; color: #d5d8d2; cursor: pointer; margin: 0; line-height: 1; transition: color .1s; }
.rating-input input:checked ~ label, .rating-input label:hover, .rating-input label:hover ~ label { color: var(--yellow); }
@media (max-width: 900px) { .reviews-layout { grid-template-columns: 1fr; } .review-form { position: static; } .reviews-summary { grid-template-columns: 1fr; } }

/* ---------- Koszyk / zamówienie ---------- */
.free-bar { display: flex; flex-direction: column; gap: .45rem; padding: .8rem 1.1rem; background: var(--paper); border-radius: 8px; font-size: .9rem; }
.free-bar.is-free { color: var(--ok); font-weight: 700; background: var(--ok-light); }
.free-track { height: 8px; border-radius: 999px; background: #dcdcd8; overflow: hidden; }
.free-track span { display: block; height: 100%; background: var(--red); border-radius: 999px; }
.cart-layout, .checkout-layout { display: grid; grid-template-columns: 1fr 340px; gap: 1.5rem; align-items: start; }
@media (max-width: 900px) { .cart-layout, .checkout-layout { grid-template-columns: 1fr; } }
.cart-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; border-bottom: 1px solid var(--line); }
.cart-item.over { background: #fff8f0; }
.cart-thumb { width: 72px; height: 72px; border-radius: 6px; background: #fff; border: 1px solid var(--line); overflow: hidden; flex: 0 0 auto; display: block; }
.cart-thumb img { width: 100%; height: 100%; object-fit: contain; padding: .25rem; }
.cart-info { flex: 1; min-width: 0; }
.cart-info > a { font-weight: 700; }
.cart-info > a:hover { color: var(--red); }
.cart-qty { flex: 0 0 auto; }
.cart-qty input { width: 2.8rem; }
.cart-qty button { padding: .35rem .65rem; font-size: 1rem; }
.cart-line-total { width: 6.5rem; text-align: right; font-weight: 800; }
.cart-actions { padding: .9rem 1rem; display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }
.cart-actions .link-btn { margin-left: auto; }
.summary-box { padding: 1.25rem; background: var(--paper); }
.summary-box h2 { font-size: 1.1rem; margin-bottom: .75rem; }
.summary-box .row, .thanks-box .row, .form-card .row { display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; margin-top: .5rem; }
.row-discount { color: var(--ok); }
.summary-box .row.total, .thanks-box .row.total, .form-card .row.total { font-size: 1.2rem; font-weight: 800; border-top: 2px solid var(--ink); padding-top: .75rem; margin-top: .75rem; }
.summary-items { list-style: none; margin: 0; padding: 0; font-size: .9rem; }
.summary-items li { display: flex; justify-content: space-between; gap: .5rem; padding: .45rem 0; border-bottom: 1px solid var(--line); }
.summary-items li > span:last-child, .summary-box .row > span:last-child, .thanks-box .row > span:last-child { white-space: nowrap; }
.summary-box .trust { margin-top: 1rem; }
.coupon-form { display: flex; gap: .5rem; margin-top: .5rem; align-items: stretch; }
.coupon-form .input { flex: 1 1 auto; min-width: 0; text-transform: uppercase; }
.coupon-form .btn { flex: 0 0 auto; white-space: nowrap; }
.coupon-applied { display: flex; justify-content: space-between; align-items: center; gap: .5rem; font-size: .88rem; margin-top: .5rem; padding: .5rem .75rem; background: var(--ok-light); color: var(--ok); border-radius: 8px; font-weight: 700; }
.coupon-applied button { background: none; border: 0; color: inherit; cursor: pointer; font: inherit; text-decoration: underline; }
.checkout-login { padding: .85rem 1.1rem; font-size: .9rem; background: var(--paper); border-color: transparent; }
.checkout-login a { color: var(--red); font-weight: 700; text-decoration: underline; }
.checkout-main { display: flex; flex-direction: column; gap: 1.25rem; min-width: 0; }
.checkout-account { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px dashed var(--line); display: flex; flex-direction: column; gap: .9rem; }
.step-n { display: inline-flex; width: 28px; height: 28px; border-radius: 50%; background: var(--red); color: #fff; font-size: .85rem; font-weight: 800; align-items: center; justify-content: center; margin-right: .5rem; vertical-align: middle; }
.method-list { display: flex; flex-direction: column; gap: .6rem; }
.method { display: grid; grid-template-columns: auto 64px 1fr auto; gap: .9rem; align-items: center; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; transition: .15s; margin: 0; font-weight: 400; color: var(--ink); font-size: .9rem; text-transform: none; letter-spacing: 0; }
.method:hover { border-color: var(--ink); }
.method.active { border-color: var(--red); background: #fff7f7; box-shadow: 0 0 0 1px var(--red) inset; }
.method input { width: 18px; height: 18px; margin: 0; accent-color: var(--red); }
.method-logo { width: 64px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .78rem; letter-spacing: .02em; background: #e9ebe6; color: #4a4f48; }
.method-inpost { background: #ffcb04; color: #1a1a1a; }
.method-pickup { background: var(--paper); color: var(--ink); }
.method-courier { background: #e9ebe6; color: #4a4f48; }
.method-transfer { background: var(--dark); color: #fff; font-size: 1.1rem; }
.method-cod { background: var(--ok-light); font-size: 1.2rem; }
.method-p24 { background: #d13239; color: #fff; font-size: .95rem; letter-spacing: .02em; }
.method-p24 img { max-width: 52px; max-height: 30px; object-fit: contain; background: #fff; border-radius: 6px; padding: 2px 4px; }
.pay-online { text-align: left; }
.pay-online .btn { margin-top: .5rem; }
.method-body { display: flex; flex-direction: column; min-width: 0; }
.method-body b { font-size: .95rem; }
.method-body span { font-size: .8rem; color: var(--muted); }
.method-price { font-weight: 800; white-space: nowrap; }
.locker-box { margin-top: 1rem; padding-top: 1rem; border-top: 1px dashed var(--line); display: flex; flex-direction: column; gap: .75rem; }
.locker-selected { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; padding: .75rem 1rem; background: #fff8e1; border: 1px solid #ffe08a; border-radius: 10px; }
.locker-badge { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: #8a6d00; }
.locker-selected .link-btn { color: var(--red); text-decoration: underline; font-size: .85rem; margin-left: auto; }
.locker-map { display: flex; flex-direction: column; gap: .5rem; }
.locker-map inpost-geowidget { display: block; height: 520px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.locker-manual label { display: flex; flex-direction: column; gap: .3rem; }
@media (max-width: 700px) { .method { grid-template-columns: auto 1fr auto; } .method-logo { display: none; } .locker-map inpost-geowidget { height: 440px; } }
.thanks-box { max-width: 40rem; margin: 3rem auto; padding: 2rem; text-align: center; }
.thanks-box .summary-items { text-align: left; margin-top: 1.5rem; }
.thanks-box .row { text-align: left; }
.thanks-actions { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.thanks-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--ok-light); color: var(--ok); font-size: 1.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.transfer-box { text-align: left; padding: 1rem 1.25rem; margin: 1rem 0; background: var(--paper); }
.transfer-box .summary-list { margin-top: .5rem; }
.pay-pending { margin: 1rem 0; padding: 1rem 1.25rem; background: #fff8e1; border: 1px solid #ffe08a; border-radius: 12px; text-align: left; display: flex; flex-direction: column; gap: .75rem; }
.pay-pending p { margin: 0; }
.summary-list { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1rem; margin: 0; font-size: .9rem; align-items: start; }
.summary-list dt { color: var(--muted); font-weight: 600; }
.summary-list dd { margin: 0; font-weight: 600; }
.order-status { display: inline-block; padding: .15rem .6rem; border-radius: 999px; font-size: .75rem; font-weight: 700; background: #f3f4f6; color: #374151; white-space: nowrap; }
.order-status.status-new { background: #fef3c7; color: #92400e; }
.order-status.status-paid, .order-status.status-processing, .order-status.status-shipped { background: #dbeafe; color: #1e40af; }
.order-status.status-done { background: #d1fae5; color: #065f46; }
.order-status.status-cancelled { background: #fee2e2; color: #991b1b; }
.error-page { text-align: center; padding: 5rem 1rem; }
.error-page h1 { font-size: 4rem; color: var(--red); }
.error-actions { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Konto ---------- */
.auth-layout { display: grid; grid-template-columns: minmax(0, 460px) minmax(0, 340px); gap: 2rem; justify-content: center; align-items: stretch; }
.auth-layout-wide { grid-template-columns: minmax(0, 680px); }
.auth-card { padding: 1.75rem; display: flex; flex-direction: column; }
.auth-title { font-size: 1.6rem; font-weight: 800; margin-bottom: .35rem; }
.auth-lead { margin-bottom: 1.25rem; }
.auth-foot { margin-top: 1rem; line-height: 1.6; }
.auth-foot a { color: var(--red); font-weight: 600; text-decoration: underline; }
.auth-aside { display: flex; flex-direction: column; padding: 1.75rem; border-radius: 12px; background: var(--paper); }
.auth-aside h2 { font-size: 1.05rem; margin-bottom: 1rem; }
.auth-aside .btn { margin-top: auto; align-self: flex-start; }
.auth-benefits { list-style: none; margin: 0 0 1.25rem; padding: 0; display: flex; flex-direction: column; gap: .8rem; }
.auth-benefits li { display: flex; flex-direction: column; font-size: .88rem; padding-left: 1.4rem; position: relative; }
.auth-benefits li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--ok); font-weight: 800; }
.auth-benefits span { color: var(--muted); font-size: .82rem; }
@media (max-width: 900px) { .auth-layout { grid-template-columns: 1fr; } }
.account-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 1.5rem; align-items: start; }
.account-nav { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1rem; padding: 1.25rem; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.account-user { display: flex; align-items: center; gap: .75rem; }
.account-user div { display: flex; flex-direction: column; min-width: 0; }
.account-user b { font-size: .95rem; }
.account-user span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.account-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff; font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.account-nav nav { display: flex; flex-direction: column; gap: .15rem; }
.account-nav nav a { padding: .55rem .75rem; border-radius: 8px; font-weight: 600; font-size: .9rem; }
.account-nav nav a:hover { background: var(--paper); }
.account-nav nav a.active { background: var(--red-light); color: var(--red); }
.account-nav .btn-block { margin-top: 0; }
.account-main { display: flex; flex-direction: column; gap: 1.25rem; min-width: 0; }
.account-main h1 { font-size: 1.6rem; }
.account-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.account-table th { text-align: left; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); padding: .5rem .6rem; border-bottom: 1px solid var(--line); }
.account-table td { padding: .7rem .6rem; border-bottom: 1px solid var(--line); vertical-align: middle; }
.account-table tr:last-child td { border-bottom: 0; }
.account-table .right { text-align: right; }
.account-table a.strong, .account-reviews a.strong { font-weight: 700; color: var(--red); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.account-order-head { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.order-items li { align-items: center; }
.order-item-name { display: flex; align-items: center; gap: .75rem; }
.order-thumb { width: 48px; height: 48px; border-radius: 8px; object-fit: contain; flex: 0 0 auto; border: 1px solid var(--line); }
.account-reviews { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.account-reviews li { display: flex; flex-direction: column; gap: .2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.account-reviews li:last-child { border-bottom: 0; padding-bottom: 0; }
.account-reviews p { margin: .25rem 0 0; }
@media (max-width: 900px) { .account-layout { grid-template-columns: 1fr; } .account-nav { position: static; } }
@media (max-width: 720px) {
  .account-table thead { display: none; }
  .account-table, .account-table tbody { display: block; }
  .account-table tr { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem .75rem; padding: .85rem 0; border-bottom: 1px solid var(--line); }
  .account-table td { display: flex; flex-direction: column; gap: .1rem; padding: 0; border: 0; text-align: left; }
  .account-table td[data-label]::before { content: attr(data-label); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
  .account-table td.cell-action { grid-column: 1 / -1; margin-top: .25rem; }
  .account-table td.cell-action .btn { width: 100%; }
  .account-nav nav { flex-direction: row; flex-wrap: wrap; gap: .3rem; }
  .account-nav nav a { padding: .45rem .7rem; border: 1px solid var(--line); border-radius: 999px; font-size: .82rem; }
  .account-nav .btn-block { width: auto; align-self: flex-start; }
}

/* ---------- Dokumenty, kontakt ---------- */
.doc-head { background: var(--paper); border-bottom: 1px solid var(--line); }
.doc-head-inner { padding: 1.25rem 1.25rem 2rem; display: flex; flex-direction: column; gap: .5rem; }
.doc-head h1 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); font-weight: 800; letter-spacing: -.02em; margin: 0; }
.doc-lead { max-width: 44rem; font-size: 1.05rem; color: var(--muted); line-height: 1.6; margin: .25rem 0 0; }
.doc-stack { padding-top: 2rem; }
.doc-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 2.5rem; align-items: start; }
.doc-layout.no-toc { grid-template-columns: minmax(0, 1fr); }
.doc-toc { position: sticky; top: 100px; }
.doc-toc-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.2rem; }
.doc-toc ol { list-style: none; margin: .5rem 0 0; padding: 0; counter-reset: toc; display: flex; flex-direction: column; }
.doc-toc li { counter-increment: toc; }
.doc-toc a { display: flex; gap: .6rem; padding: .45rem 0; font-size: .86rem; font-weight: 600; border-top: 1px solid var(--line); line-height: 1.35; }
.doc-toc li:first-child a { border-top: 0; }
.doc-toc a::before { content: counter(toc, decimal-leading-zero); color: var(--red); font-weight: 800; font-size: .78rem; flex: 0 0 1.6rem; margin-top: .05rem; }
.doc-toc a:hover { color: var(--red); }
.doc-updated { margin: .9rem 0 0; }
.doc-prose { font-size: 1rem; line-height: 1.7; max-width: 48rem; }
.doc-prose h2 { font-size: 1.35rem; margin: 2rem 0 .75rem; padding-top: 1.25rem; border-top: 1px solid var(--line); scroll-margin-top: 100px; }
.doc-prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
@media (max-width: 900px) { .doc-layout { grid-template-columns: 1fr; gap: 1.5rem; } .doc-toc { position: static; } }
.contact-stack { padding-top: 2rem; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 1.5rem; align-items: start; }
.contact-form h2, .contact-aside h2 { font-size: 1.2rem; margin-bottom: .9rem; }
.contact-thanks { text-align: center; padding: 1.5rem 0; }
.contact-thanks h2 { font-size: 1.5rem; margin: 0 0 .5rem; }
.contact-aside { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .9rem; }
.contact-list li { display: flex; gap: .85rem; align-items: flex-start; }
.contact-list li > div { display: flex; flex-direction: column; min-width: 0; }
.contact-list li > div > span { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.contact-list li > div > a, .contact-list li > div > b { font-weight: 700; color: var(--ink); font-size: .98rem; word-break: break-word; }
.contact-list li > div > a:hover { color: var(--red); }
.contact-list small { color: var(--muted); font-size: .85rem; line-height: 1.4; }
.contact-ico { width: 40px; height: 40px; border-radius: 10px; background: var(--red-light); color: var(--red); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.contact-ico svg { width: 20px; height: 20px; }
.contact-links { display: flex; flex-direction: column; gap: .4rem; }
.contact-links a { display: flex; flex-direction: column; gap: .15rem; padding: .75rem .9rem; border-radius: 10px; background: var(--paper); transition: .15s; }
.contact-links a:hover { background: var(--red-light); }
.contact-links b { font-size: .95rem; }
.contact-links span { font-size: .82rem; color: var(--muted); }
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }

/* ---------- Stopka ---------- */
.site-footer { margin-top: 4rem; background: var(--dark); color: rgba(255,255,255,.8); }
.footer-usp { background: var(--red); color: #fff; }
.footer-usp-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem 1.5rem; padding: .9rem 1.25rem; font-size: .86rem; font-weight: 700; }
.footer-usp-inner span { display: inline-flex; align-items: center; gap: .5rem; }
.footer-usp-inner svg { width: 20px; height: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(var(--footer-n, 2), 1fr) 1.2fr; gap: 2.5rem; padding: 3rem 1.25rem 2.5rem; }
.footer-col h3 { color: #fff; font-size: .88rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; padding-bottom: .6rem; position: relative; }
.footer-col h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; background: var(--red); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .45rem; font-size: .88rem; }
.footer-col ul a:hover { color: #fff; text-decoration: underline; }
.footer-brand { display: inline-block; margin-bottom: .9rem; background: #fff; padding: .45rem .7rem; border-radius: 6px; }
.footer-brand img { width: 180px; height: auto; }
.footer-about p { font-size: .86rem; line-height: 1.65; color: rgba(255,255,255,.7); max-width: 24rem; }
.footer-social { display: flex; gap: .5rem; margin-top: 1rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: #fff; transition: .15s; }
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--red); border-color: var(--red); }
.footer-contact .pre { white-space: pre-line; line-height: 1.45; }
.footer-contact-btn { display: inline-flex; margin-top: 1rem; }
.muted-dark { color: rgba(255,255,255,.45); font-size: .8rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; color: rgba(255,255,255,.55); }
.footer-bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .6rem 1.5rem; padding: .9rem 1.25rem; }
.footer-pay { font-weight: 600; color: rgba(255,255,255,.7); }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom-inner { flex-direction: column; text-align: center; } }

/* ---------- Telefon ---------- */
@media (max-width: 720px) {
  .topbar-inner { justify-content: center; text-align: center; min-height: 30px; padding: .3rem 0; font-size: .72rem; }
  .topbar-right { display: none; }
  .page-stack, .listing-page { padding: 1rem 1rem 2.5rem; gap: 1.1rem; }
  .container { padding-inline: 1rem; }
  .footer-usp-inner { padding-block: .85rem; gap: .6rem 1.25rem; }
  .footer-usp-inner span { flex: 1 1 100%; }
  .footer-grid { padding-block: 2rem 1.75rem; }
  h1 { font-size: 1.55rem; }
  .listing-head h1 { font-size: 1.5rem; }
  .home-stack { gap: 2.25rem; padding-top: 1.75rem; }
  .section-heading { font-size: 1.3rem; }
  .usp-band { padding: 2rem 0 1.75rem; margin-top: 2rem; }
  .carousel-arrow { width: 36px; height: 36px; top: 32%; }
  .carousel-arrow svg { width: 16px; height: 16px; }
  .product-card-body { padding: .7rem .75rem .85rem; }
  .product-card-name { font-size: .88rem; }
  .price-current { font-size: 1.05rem; }
  .product-summary { position: static; }
  .product-title { font-size: 1.3rem; }
  .buy-box { padding: 1rem; }
  .price-lg .price-current { font-size: 1.7rem; }
  .qty-row { flex-wrap: wrap; }
  .qty-row .qty { width: 100%; justify-content: space-between; }
  .qty-row .btn { width: 100%; }
  .section-nav { flex-wrap: nowrap; overflow-x: auto; padding-bottom: .6rem; scrollbar-width: none; }
  .section-nav .chip { flex: 0 0 auto; white-space: nowrap; }
  .cart-item { flex-wrap: wrap; gap: .6rem .9rem; }
  .cart-info { flex: 1 1 calc(100% - 72px - .9rem); }
  .cart-line-total { margin-left: auto; width: auto; }
  .cart-item .icon-btn { order: 5; }
  .toolbar { flex-wrap: wrap; gap: .5rem .75rem; }
  .toolbar-sort { margin-left: 0; width: 100%; }
  .toolbar-sort select { flex: 1; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: auto; }
  .form-card { padding: 1rem; }
  .auth-card { padding: 1.25rem; }
  .thanks-box { margin: 1.5rem auto; padding: 1.5rem; }
  .thanks-actions .btn { width: 100%; }
  .footer-usp-inner { justify-content: flex-start; font-size: .8rem; }
  .site-footer { margin-top: 2.5rem; }
  .doc-head-inner { padding: 1rem 1rem 1.5rem; }
}
@media (max-width: 480px) {
  .product-grid, .listing-grid { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .product-card-body { padding: .6rem .6rem .75rem; }
  .product-card-name { font-size: .84rem; -webkit-line-clamp: 3; }
  .product-card-meta { flex-direction: column; gap: .1rem; }
  .tiles { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .tile-title { font-size: .92rem; }
}

/* ---------- Mobile: nagłówek z wyszukiwarką, dotyk, czytelność ---------- */
@media (max-width: 960px) {
  .header-inner { flex-wrap: wrap; height: auto; padding-block: .5rem .65rem; row-gap: .5rem; }
  .search { display: flex; order: 10; flex: 1 1 100%; max-width: none; height: 42px; }
  .search input { padding: 0 .8rem; font-size: 16px; }
  .search button span { display: none; }
  .search button { padding: 0 .9rem; }
  .nav-search { display: none; }
  .catnav { max-height: calc(100vh - 118px); }
  .search-suggest { left: 0; right: 0; }
}
@media (max-width: 720px) {
  html { -webkit-tap-highlight-color: transparent; scroll-padding-top: 120px; }
  .input, select.input, textarea.input { font-size: 16px; }
  .btn { min-height: 42px; }
  .btn-sm { min-height: 38px; }
  .hero-arrow { display: none; }
  .hero-dots { bottom: 8px; }
  .hero-dots button { width: 8px; height: 8px; }
  .tile-img { aspect-ratio: 16/9; }
  .tile-img img { padding: .6rem; }
  .tile-text { padding: .7rem .8rem .85rem; }
  .carousel-arrow { display: none; }
  .carousel-row { grid-auto-columns: calc((100% - .75rem) / 2); gap: .75rem; padding: .15rem 0 .75rem; }
  .product-card-image img { padding: .5rem; }
  .card-add .btn { min-height: 40px; }
  .summary-items li span:last-child, .summary-box .row > span:last-child, .method-price, .cart-line-total, .cart-price { white-space: nowrap; }
  .summary-items li { align-items: flex-start; }
  .method { padding: .75rem .85rem; gap: .7rem; }
  .method-body b { font-size: .92rem; }
  .cart-actions { flex-wrap: wrap; gap: .5rem; }
  .cart-actions .btn { flex: 1 1 auto; }
  .breadcrumbs { font-size: .78rem; white-space: nowrap; overflow-x: auto; scrollbar-width: none; padding-bottom: .1rem; }
  .breadcrumbs::-webkit-scrollbar { display: none; }
  .gallery-thumbs { gap: .5rem; }
  .gallery-thumb { width: 64px; height: 64px; }
  .contact-layout { gap: 1.25rem; }
  .footer-grid { gap: 1.5rem; }
  .footer-col h3 { margin-bottom: .7rem; }
  .footer-col ul { display: block; columns: 2; column-gap: 1.25rem; }
  .footer-col ul li { break-inside: avoid; padding: .2rem 0; }
  .footer-contact { columns: 1 !important; }
  .toast-wrap { left: 1rem; right: 1rem; max-width: none; }
  .toast { justify-content: space-between; }
}
@media (max-width: 480px) {
  .carousel-row { grid-auto-columns: calc((100% - .6rem) / 2); gap: .6rem; }
  .tiles { gap: .6rem; }
  .tile-title { font-size: .92rem; }
  .tile-sub { font-size: .76rem; }
  .brand img { height: 32px; }
  .header-btn { padding: .4rem; }
  .cart-link { padding: .4rem .5rem; }
  .cart-count { left: 22px; }
  h1 { font-size: 1.4rem; }
  .section-heading { font-size: 1.2rem; margin-bottom: .9rem; }
}

/* ---------- Strona „O nas” ---------- */
.about-eyebrow { display: inline-block; font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--yellow); margin-bottom: 1rem; }
.about-eyebrow-dark { display: block; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: .2rem; }
.about-hero { position: relative; background: var(--dark); color: #fff; overflow: hidden; min-height: 460px; display: flex; align-items: center; }
.about-hero-bg { position: absolute; inset: 0; }
.about-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 88% center; opacity: .55; }
.about-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,22,22,.96) 0%, rgba(22,22,22,.78) 45%, rgba(22,22,22,.3) 100%); }
.about-hero-inner { position: relative; padding: 4.5rem 1.25rem 5rem; }
.about-hero h1 { font-size: clamp(2rem, 4.2vw, 3.3rem); font-weight: 800; letter-spacing: -.02em; max-width: 14em; margin: 0 0 1rem; line-height: 1.05; }
.about-hero p { max-width: 38rem; color: rgba(255,255,255,.85); font-size: 1.08rem; line-height: 1.6; margin: 0 0 1.5rem; }
.about-hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.about-stats { background: var(--dark-2); color: #fff; border-top: 1px solid rgba(255,255,255,.08); }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.about-stats-grid > div { padding: 1.6rem 1.25rem; display: flex; flex-direction: column; gap: .25rem; border-left: 1px solid rgba(255,255,255,.1); }
.about-stats-grid > div:first-child { border-left: 0; }
.about-stats-grid b { font-size: 2.2rem; font-weight: 800; letter-spacing: -.02em; color: var(--yellow); line-height: 1; }
.about-stats-grid span { font-size: .86rem; color: rgba(255,255,255,.75); }
.about-stack { gap: 4.5rem; padding-top: 4rem; }
.about-head { max-width: 42rem; margin-bottom: 2rem; }
.about-head h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; letter-spacing: -.01em; margin: .2rem 0 .6rem; }
.about-head p { color: var(--muted); font-size: 1rem; line-height: 1.6; margin: 0; }
.about-story { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 3rem; align-items: stretch; }
.about-story-text .prose { font-size: 1.02rem; line-height: 1.7; }
.about-story-text .prose h2 { font-size: 1.35rem; margin-top: 1.5rem; }
.about-story-text .prose p:first-of-type { font-size: 1.15rem; font-weight: 500; color: var(--ink); }
.about-story-media { position: relative; display: flex; flex-direction: column; }
.about-story-media img { flex: 1 1 auto; width: 100%; min-height: 340px; max-height: 560px; object-fit: cover; object-position: 100% center; border-radius: 16px; box-shadow: var(--shadow); }
.about-quote { margin: -3rem 1.25rem 0; position: relative; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: 10px; padding: 1.25rem 1.4rem; box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.about-quote p { margin: 0 0 .5rem; font-size: 1.02rem; font-weight: 600; line-height: 1.5; }
.about-quote footer { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.about-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.about-step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.4rem 1.4rem 1.3rem; display: flex; flex-direction: column; gap: .5rem; transition: .2s; }
.about-step:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.about-step-art { width: 72px; height: 72px; border-radius: 12px; background: var(--red-light); color: var(--red); display: flex; align-items: center; justify-content: center; }
.about-step-art svg { width: 36px; height: 36px; }
.about-step-no { position: absolute; top: 1.1rem; right: 1.1rem; width: 32px; height: 32px; border-radius: 50%; background: var(--dark); color: #fff; font-weight: 800; font-size: .85rem; display: flex; align-items: center; justify-content: center; }
.about-step h3 { margin: .4rem 0 0; font-size: 1.05rem; font-weight: 800; }
.about-step p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.about-dept-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.about-dept { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; color: var(--ink); transition: .2s; }
.about-dept:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.about-dept-img { aspect-ratio: 4/3; background: var(--paper); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.about-dept-img img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; transition: transform .4s; }
.about-dept:hover .about-dept-img img { transform: scale(1.05); }
.about-dept-body { padding: 1.1rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.about-dept-body h3 { margin: 0; font-size: 1.1rem; font-weight: 800; }
.about-dept-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .35rem; }
.about-dept-list li { font-size: .76rem; font-weight: 600; background: var(--paper); border-radius: 999px; padding: .22rem .6rem; }
.about-dept-list li.more { background: transparent; color: var(--muted); }
.about-dept-more { margin-top: auto; padding-top: .5rem; font-weight: 700; color: var(--red); font-size: .9rem; }
.about-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.about-value { background: var(--paper); border-radius: 14px; padding: 1.4rem; display: flex; flex-direction: column; gap: .5rem; }
.about-value-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: .35rem; }
.about-value-icon svg { width: 24px; height: 24px; }
.about-value h3 { margin: 0; font-size: 1.02rem; font-weight: 800; }
.about-value p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.about-band { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 2.5rem; align-items: center; background: var(--dark); color: #fff; border-radius: 18px; padding: 2.5rem 2.75rem; }
.about-band h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 800; margin: .2rem 0 .75rem; }
.about-band h2 a { color: #fff; }
.about-band h2 a:hover { color: var(--yellow); }
.about-band p { color: rgba(255,255,255,.82); line-height: 1.6; margin: 0 0 .75rem; }
.about-band-count b { color: var(--yellow); font-size: 1.3rem; }
.about-band-card { justify-self: center; display: flex; flex-direction: column; align-items: center; gap: .75rem; color: #fff; }
.about-band-logo { width: 160px; height: 160px; background: #fff; border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #ff5a00; box-shadow: 0 16px 40px rgba(0,0,0,.35); transition: transform .2s; }
.about-band-logo svg { width: 88px; height: 88px; }
.about-band-card:hover .about-band-logo { transform: scale(1.04); }
.about-band-card span { font-size: .85rem; color: rgba(255,255,255,.75); font-weight: 600; }
.about-contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.5rem; }
.about-contact-card, .about-contact-cta { border-radius: 16px; padding: 2rem; }
.about-contact-card { background: #fff; border: 1px solid var(--line); }
.about-contact-card h2 { font-size: 1.4rem; font-weight: 800; margin: .2rem 0 .4rem; }
.about-contact-card > p { color: var(--muted); margin: 0 0 1rem; }
.about-contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.about-contact-list li { display: grid; grid-template-columns: 90px 1fr; gap: .75rem; padding: .6rem 0; border-top: 1px solid var(--line); font-size: .95rem; }
.about-contact-list b { color: var(--muted); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; align-self: center; }
.about-contact-list a:hover { color: var(--red); }
.about-contact-cta { background: var(--red-light); display: flex; flex-direction: column; gap: .75rem; }
.about-contact-cta h2 { font-size: 1.4rem; font-weight: 800; margin: 0; }
.about-contact-cta p { color: var(--ink); margin: 0 0 .5rem; line-height: 1.6; }
.about-contact-actions { display: flex; gap: .6rem; margin-top: auto; flex-wrap: wrap; }
.about-contact-actions .btn { flex: 1 1 0; justify-content: center; }
@media (max-width: 960px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-grid > div:nth-child(3) { border-left: 0; }
  .about-stats-grid > div { border-top: 1px solid rgba(255,255,255,.1); }
  .about-stats-grid > div:nth-child(-n+2) { border-top: 0; }
  .about-story { grid-template-columns: 1fr; gap: 2rem; }
  .about-story-media img { min-height: 0; aspect-ratio: 16/10; }
  .about-steps, .about-dept-grid, .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-band { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .about-band-card { justify-self: start; flex-direction: row; }
  .about-band-logo { width: 96px; height: 96px; }
  .about-band-logo svg { width: 52px; height: 52px; }
  .about-contact { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .about-hero { min-height: 380px; }
  .about-hero-inner { padding: 3rem 1rem 3.5rem; }
  .about-hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .about-stack { gap: 3rem; padding-top: 2.5rem; }
  .about-stats-grid b { font-size: 1.7rem; }
  .about-steps, .about-dept-grid, .about-values-grid { grid-template-columns: 1fr; }
  .about-quote { margin: -2rem .75rem 0; }
  .about-contact-card, .about-contact-cta { padding: 1.4rem; }
  .about-contact-list li { grid-template-columns: 76px 1fr; }
  .about-contact-actions { flex-direction: column; }
}

/* ---------- Dostawa i płatność ---------- */
.delivery-section { margin-bottom: 2.5rem; }
.delivery-section h2 { font-size: 1.35rem; margin: 0 0 1rem; }
.delivery-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.delivery-card { display: grid; grid-template-columns: 56px 1fr auto; gap: .9rem; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.1rem; }
.delivery-card .method-logo { width: 56px; height: 40px; font-size: .8rem; }
.delivery-card .method-logo img { max-width: 48px; max-height: 28px; object-fit: contain; }
.delivery-card b { display: block; font-size: 1rem; }
.delivery-card span { display: block; font-size: .82rem; color: var(--muted); line-height: 1.45; }
.delivery-card .delivery-price { font-weight: 800; white-space: nowrap; font-size: 1rem; }
.delivery-card .delivery-price.free { color: var(--ok); }
.delivery-note { margin: .9rem 0 0; font-size: .9rem; color: var(--muted); }
.delivery-prose { max-width: 48rem; }
@media (max-width: 600px) { .delivery-card { grid-template-columns: 48px 1fr; } .delivery-card .delivery-price { grid-column: 2; } }

/* ---------- Kontakt: FAQ i odbiór ---------- */
.contact-grid-bottom { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 1.5rem; align-items: start; }
.faq { display: flex; flex-direction: column; gap: .5rem; }
.faq details { border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.faq summary { cursor: pointer; padding: .85rem 1rem; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-weight: 800; color: var(--red); font-size: 1.1rem; flex: 0 0 auto; }
.faq details[open] summary::after { content: "–"; }
.faq details > p { margin: 0; padding: 0 1rem 1rem; color: var(--muted); line-height: 1.55; font-size: .95rem; }
.faq details > p a { color: var(--red); font-weight: 600; }
.contact-map { display: block; margin-top: .5rem; font-size: .85rem; font-weight: 700; color: var(--red); }
@media (max-width: 900px) { .contact-grid-bottom { grid-template-columns: 1fr; } }

/* ---------- Cookies: baner zgód i okno ustawień ---------- */
.ck-banner { position: fixed; z-index: 900; left: 0; right: 0; bottom: 0; background: #fff; border-top: 3px solid var(--red); box-shadow: 0 -8px 30px rgba(0,0,0,.14); font-size: .92rem; }
.ck-banner[hidden] { display: none; }
.ck-inner { max-width: 1240px; margin: 0 auto; padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; flex-wrap: wrap; }
.ck-text { flex: 1 1 420px; min-width: 0; }
.ck-text b { display: block; font-size: 1rem; margin-bottom: .25rem; }
.ck-text p { margin: 0; color: var(--muted); line-height: 1.5; }
.ck-text a { color: var(--red); font-weight: 600; }
.ck-actions { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.ck-actions .btn-link { background: none; border: 0; color: var(--ink); text-decoration: underline; cursor: pointer; font: inherit; font-weight: 600; padding: .5rem .25rem; }
.ck-card { left: auto; right: 1.25rem; bottom: 1.25rem; width: min(440px, calc(100% - 2rem)); border: 1px solid var(--line); border-top: 3px solid var(--red); border-radius: 12px; }
.ck-card .ck-inner { flex-direction: column; align-items: stretch; padding: 1.1rem 1.2rem; gap: .9rem; }
.ck-card .ck-text { flex: 0 0 auto; }
.ck-card .ck-actions .btn { flex: 1 1 auto; justify-content: center; }
.ck-dialog { border: 0; border-radius: 12px; padding: 0; width: min(560px, calc(100% - 2rem)); box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.ck-dialog::backdrop { background: rgba(0,0,0,.45); }
.ck-dialog-inner { margin: 0; padding: 1.25rem 1.4rem; }
.ck-dialog-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 1.15rem; margin-bottom: .5rem; }
.ck-close { background: none; border: 0; font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--muted); padding: .2rem .4rem; }
.ck-lead { margin: 0 0 1rem; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.ck-lead a { color: var(--red); font-weight: 600; }
.ck-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 0; border-top: 1px solid var(--line); cursor: pointer; text-transform: none; letter-spacing: 0; font-size: .95rem; font-weight: 400; color: var(--ink); }
.ck-row-text { display: flex; flex-direction: column; gap: .15rem; }
.ck-row-text b { font-size: .95rem; }
.ck-row-text small { color: var(--muted); font-size: .82rem; line-height: 1.45; text-transform: none; letter-spacing: 0; font-weight: 400; }
.ck-row input { position: absolute; opacity: 0; width: 0; height: 0; }
.ck-switch { flex: 0 0 44px; width: 44px; height: 24px; border-radius: 12px; background: #cfcfcb; position: relative; transition: .15s; }
.ck-switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: .15s; }
.ck-row input:checked + .ck-switch { background: #1f9d55; }
.ck-row input:checked + .ck-switch::after { left: 23px; }
.ck-row input:disabled + .ck-switch { background: #8f8f8b; opacity: .7; }
.ck-dialog-foot { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: flex-end; padding-top: 1rem; border-top: 1px solid var(--line); margin-top: .25rem; }
.footer-cookies { background: none; border: 0; padding: 0; color: inherit; font: inherit; text-decoration: underline; cursor: pointer; opacity: .8; }
@media (max-width: 640px) { .ck-inner { padding: .9rem 1rem; } .ck-actions { width: 100%; } .ck-actions .btn { flex: 1 1 45%; justify-content: center; } .ck-card { right: .75rem; left: .75rem; bottom: .75rem; width: auto; } .ck-dialog-foot .btn { flex: 1 1 100%; justify-content: center; } }
