/* ─── Ranking content (treść Gutenberg pod rankingami — WSPÓLNY styl) ── */
.ranking-content {
  padding: var(--sp-12) 0;
  background: var(--c-bg);
}
.ranking-content__inner {
  max-width: 900px;
  margin: 0 auto;
}
.ranking-content__edit {
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--sp-4);
}
.ranking-content__body {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--c-ink2);
}
.ranking-content__body p { margin: 0 0 var(--sp-4); }
.ranking-content__body h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-ink);
  margin: var(--sp-10) 0 var(--sp-4);
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.ranking-content__body h2:first-child { margin-top: 0; }
.ranking-content__body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-ink);
  margin: var(--sp-6) 0 var(--sp-3);
  line-height: 1.3;
}
.ranking-content__body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-ink);
  margin: var(--sp-5) 0 var(--sp-2);
}
.ranking-content__body ul,
.ranking-content__body ol { padding-left: 1.5em; margin: 0 0 var(--sp-4); }
.ranking-content__body li { margin-bottom: var(--sp-2); }
.ranking-content__body strong,
.ranking-content__body b { color: var(--c-ink); font-weight: 700; }
.ranking-content__body a {
  color: var(--c-mint-ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ranking-content__body a:hover { text-decoration: none; }

/* Linki w treści recenzji i poradników — widoczne (kolor + podkreślenie),
   żeby nie były „ukryte" (SEO/UX). Nie dotyczy przycisków .btn. */
.review-article__content a:not(.btn),
.review-section__content a:not(.btn),
.product-content a:not(.btn),
.guide-article a:not(.btn) {
  color: var(--c-mint-ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.review-article__content a:not(.btn):hover,
.review-section__content a:not(.btn):hover,
.product-content a:not(.btn):hover,
.guide-article a:not(.btn):hover { text-decoration: none; }
.ranking-content__body img,
.ranking-content__body .wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: var(--sp-2) 0;
}
.ranking-content__body figure { margin: var(--sp-5) 0; }
.ranking-content__body figcaption {
  font-size: .78rem;
  color: var(--c-ink3);
  text-align: center;
  margin-top: var(--sp-2);
}
.ranking-content__body blockquote {
  margin: var(--sp-5) 0;
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-mint-bg-soft);
  border-left: 4px solid var(--c-mint);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--c-ink);
}
.ranking-content__body table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-4) 0;
  font-size: .95rem;
}
.ranking-content__body th,
.ranking-content__body td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  text-align: left;
}
.ranking-content__body th { background: var(--c-paper); font-weight: 700; }
@media (max-width: 860px) {
  .ranking-content { padding: var(--sp-8) 0; }
  .ranking-content__body h2 { font-size: 1.35rem; }
}

/* ─── Ranking intro (above product list) ────────────────────────── */
.ranking-intro { padding: 32px 0 8px; }
.ranking-intro__inner {
  background: var(--c-paper);
  border: 2px solid var(--c-border);
  border-radius: 16px;
  padding: 28px 32px;
  max-width: 920px;
  margin: 0 auto;
}
.ranking-intro__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-ink);
  margin: 0 0 16px;
}
.ranking-intro__content { font-size: 1rem; line-height: 1.65; color: var(--c-ink2); }
.ranking-intro__content p { margin: 0 0 12px; }
.ranking-intro__content ol,
.ranking-intro__content ul { padding-left: 1.4em; margin: 0 0 12px; }
.ranking-intro__content li { margin-bottom: 8px; }
.ranking-intro__content b,
.ranking-intro__content strong { color: var(--c-ink); }
.ranking-intro__content a {
  color: var(--c-mint-ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ranking-intro__content img { max-width: 100%; height: auto; }

/* ─── FAQ accordion (under rankings) ─────────────────────────────── */
.hub-faq__item {
  background: var(--c-bg);
  border: 2px solid var(--c-border);
  border-radius: 14px;
  padding: 18px 24px;
  margin-bottom: 12px;
  transition: border-color .15s, box-shadow .15s;
}
.hub-faq__item[open] {
  border-color: var(--c-mint-ink);
  box-shadow: 3px 3px 0 var(--c-mint-ink);
}
.hub-faq__q {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
  line-height: 1.4;
}
.hub-faq__q::-webkit-details-marker { display: none; }
.hub-faq__q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 1.6rem;
  color: var(--c-mint-ink);
  font-weight: 400;
  line-height: 1;
  transition: transform .2s;
}
.hub-faq__item[open] .hub-faq__q::after { content: '−'; }
.hub-faq__a {
  margin: 14px 0 0;
  font-size: .98rem;
  line-height: 1.65;
  color: var(--c-ink2);
}

/* ─── Reduced motion (a11y / WCAG) ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── Skip link (a11y) ───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  padding: 10px 16px;
  background: var(--c-mint-ink);
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { left: 16px; }

/* ─── Focus states (a11y / keyboard nav) ─────────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--c-mint);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ─── Header ─────────────────────────────────────────────────────── */
.site-header {
  background: var(--c-paper);
  padding-block: 20px;
  border-bottom: 2px solid var(--c-border);
  position: sticky; top: 0; z-index: 100;
  transition: padding-block .2s, box-shadow .2s;
}
.site-header.is-scrolled {
  padding-block: 12px;
  box-shadow: 0 4px 16px rgba(26,36,34,.08);
}
.site-header__inner {
  display: flex; align-items: center; gap: var(--sp-8);
}

.site-logo { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.site-logo__icon {
  width: 48px; height: 48px; border-radius: var(--r-xl);
  background: var(--c-mint); border: 2px solid var(--c-mint-ink);
  color: var(--c-mint-ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 3px 3px 0 var(--c-mint-ink);
  flex-shrink: 0;
}
.site-logo__name {
  display: block; font-size: 20px; font-weight: 800;
  letter-spacing: -0.5px; line-height: 1; color: var(--c-ink);
}
.site-logo__name em { color: var(--c-mint-ink); font-style: normal; }
.site-logo__tld { color: var(--c-ink3); font-size: 13px; font-weight: 600; }
.site-logo__tagline { display: block; font-size: 11px; color: var(--c-ink3); margin-top: 3px; font-weight: 500; }

.site-nav { display: flex; gap: var(--sp-1); margin-left: var(--sp-6); }
.site-nav__link {
  font-size: 15px; font-weight: 600; padding: 9px 15px;
  border-radius: var(--r-pill); color: var(--c-ink); transition: background .12s;
}
.site-nav__link:hover { background: var(--c-paper-deep); }
.site-nav__link.is-active { background: var(--c-mint-bg); color: var(--c-mint-ink); }

.site-header__actions { display: flex; align-items: center; gap: var(--sp-3); margin-left: auto; }

/* Hamburger — ukryty na desktop, widoczny ≤860px */
.site-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 10px;
  background: var(--c-bg);
  border: 2px solid var(--c-border-strong);
  border-radius: var(--r-md);
  cursor: pointer;
  flex-shrink: 0;
}
/* Mobilny przycisk szukania (kwadrat, jak menu) — ukryty na desktop */
.site-mob-search {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: var(--c-bg);
  border: 2px solid var(--c-border-strong);
  border-radius: var(--r-md);
  color: var(--c-ink);
  cursor: pointer;
  flex-shrink: 0;
}
.site-burger__bar {
  display: block;
  width: 100%; height: 2.5px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.site-burger[aria-expanded="true"] .site-burger__bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.site-burger[aria-expanded="true"] .site-burger__bar:nth-child(2) { opacity: 0; }
.site-burger[aria-expanded="true"] .site-burger__bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu panel */
.site-mobile-menu {
  border-top: 2px solid var(--c-border);
  background: var(--c-paper);
  padding: var(--sp-5) var(--pad-x) var(--sp-8);
}
.site-mobile-menu[hidden] { display: none; }
.site-mobile-menu__nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: var(--sp-5); }
.site-mobile-menu__link {
  padding: 14px 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-ink);
  border-radius: var(--r-md);
  border-bottom: 1px solid var(--c-border);
}
.site-mobile-menu__link:hover,
.site-mobile-menu__link:focus { background: var(--c-mint-bg); color: var(--c-mint-ink); }
.site-mobile-menu__search { display: flex; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.site-mobile-menu__search input {
  flex: 1; min-width: 0;
  padding: 10px 14px;
  border: 2px solid var(--c-border-strong);
  border-radius: var(--r-pill);
  font-family: var(--ff); font-size: 14px;
}

.site-search {
  display: flex; align-items: center; gap: var(--sp-2);
  padding: 10px 16px; background: var(--c-bg);
  border: 2px solid var(--c-border); border-radius: var(--r-pill);
  width: 240px; color: var(--c-ink3);
}
.site-search input {
  border: none; outline: none; background: transparent;
  font-family: var(--ff); font-size: 14px; font-weight: 500; width: 100%;
  color: var(--c-ink);
}

/* ─── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--c-mint-ink);
  color: #cfe6d8;
  padding-top: var(--sp-12);
}
.site-footer__inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-16); padding-bottom: var(--sp-10);
}
.site-footer__logo {
  display: block; font-size: 22px; font-weight: 800;
  color: #fff; margin-bottom: var(--sp-3);
}
.site-footer__logo span { color: var(--c-mint); }
.site-footer__brand p { font-size: 13px; line-height: 1.55; max-width: 300px; }
.site-footer__col h3 {
  font-size: 11px; color: #fff; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: var(--sp-3); font-weight: 800;
}
.site-footer__col ul { list-style: none; }
.site-footer__col li { font-size: 13px; padding-block: 4px; }
.site-footer__col a:hover { color: #fff; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-block: var(--sp-5);
}
.site-footer__bottom .container {
  display: flex; justify-content: space-between; font-size: 12px;
}
.site-footer__bottom a:hover { color: #fff; }

/* ─── Breadcrumb ─────────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: 13px; color: var(--c-ink3); font-weight: 600;
  margin-bottom: var(--sp-5);
}
.breadcrumb a:hover { color: var(--c-ink); }
.breadcrumb span { color: var(--c-ink4); }

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding-block: var(--sp-10) var(--sp-20);
}
.hero__blobs { position: absolute; inset: 0; pointer-events: none; }
.hero__blob {
  position: absolute; border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  opacity: .55;
}
.hero__blob--1 { width: 460px; height: 460px; background: var(--c-mint-bg); top: -60px; right: 40px; }
.hero__blob--2 { width: 300px; height: 300px; background: var(--c-sky-bg); bottom: -20px; right: -40px; }
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--sp-16); align-items: center;
}
.hero__badge { margin-bottom: var(--sp-5); }
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-mint); flex-shrink: 0; }
.hero__title {
  font-size: clamp(2.1rem, 7vw, 64px); font-weight: 800; line-height: 1.05;
  letter-spacing: -1.5px; margin-bottom: var(--sp-5);
  overflow-wrap: break-word; hyphens: auto;
}
.hero__highlight {
  position: relative; display: inline-block; margin-left: 12px;
}
.hero__highlight::after {
  content: ''; position: absolute; left: -8px; right: -8px; bottom: 6px;
  height: 18px; background: var(--c-mint); border-radius: 4px; z-index: -1; opacity: .85;
}
.hero__desc { font-size: 18px; color: var(--c-ink2); line-height: 1.55; max-width: 520px; margin-bottom: var(--sp-8); }
.hero__actions { display: flex; align-items: center; gap: var(--sp-4); margin-bottom: var(--sp-6); }
.hero__handwritten {
  font-family: var(--ff-hand); font-size: 28px; color: var(--c-mint-ink);
  transform: rotate(-6deg); display: inline-block;
}
.hero__social-proof { display: flex; align-items: center; gap: var(--sp-3); }
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--c-bg); margin-left: -10px;
  background: var(--c-mint-bg);
}
.hero__avatars span:first-child { margin-left: 0; background: var(--c-mint); }
.hero__avatars span:nth-child(2) { background: var(--c-mint-ink); }
.hero__avatars span:nth-child(3) { background: var(--c-sky); }
.hero__social-text { font-size: 14px; color: var(--c-ink2); line-height: 1.4; }
.hero__social-text strong { color: var(--c-ink); }
.hero__social-text span { font-size: 12px; color: var(--c-ink3); }

.hero__visual { position: relative; height: 500px; }
.hero-card--main {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%) rotate(-3deg);
  width: 320px;
  background: var(--c-mint-bg); border: 3px solid var(--c-mint-ink);
  border-radius: 28px; padding: 20px;
  box-shadow: 8px 8px 0 var(--c-mint-ink); overflow: hidden;
}
.hero-card--main img { border-radius: 16px; width: 100%; height: 220px; object-fit: contain; }
.hero-card__img-placeholder { height: 220px; background: var(--c-paper-deep); border-radius: 16px; }
.hero-card__info { margin-top: var(--sp-4); }
.hero-card__label { font-size: 10px; font-weight: 800; color: var(--c-mint-ink); letter-spacing: .5px; text-transform: uppercase; }
.hero-card__name { display: block; font-size: 18px; font-weight: 800; margin-top: 3px; }
.hero-card__bottom { display: flex; justify-content: space-between; align-items: center; margin-top: var(--sp-3); }
.hero-card__price { font-size: 20px; font-weight: 800; }
.hero-card__score {
  background: var(--c-mint-ink); color: #fff;
  border-radius: var(--r-pill); padding: 5px 11px; font-size: 13px; font-weight: 700;
}
.hero-float {
  position: absolute;
  border-radius: var(--r-xl); padding: 11px 16px;
  border: 3px solid; font-weight: 800;
}
.hero-float--clean {
  right: 0; top: 55px;
  background: var(--c-sky); color: var(--c-sky-ink); border-color: var(--c-sky-ink);
  transform: rotate(8deg); box-shadow: 4px 4px 0 var(--c-sky-ink); width: 130px;
}
.hero-float--clean .hero-float__label { font-size: 10px; text-transform: uppercase; letter-spacing: .4px; }
.hero-float--clean .hero-float__value { font-size: 30px; margin-block: 3px; }
.hero-float--clean .hero-float__sub { font-size: 10px; }
.hero-float--price {
  left: 0; bottom: 60px;
  background: var(--c-bg); color: var(--c-ink); border-color: var(--c-mint-ink);
  transform: rotate(-7deg); box-shadow: 4px 4px 0 var(--c-mint-ink);
}
.hero-float--price .hero-float__label { font-size: 10px; color: var(--c-mint-ink); text-transform: uppercase; font-weight: 800; }
.hero-float--price .hero-float__value { font-size: 22px; margin-top: 3px; }
.hero-float--noise {
  right: 40px; bottom: 0;
  background: var(--c-mint-bg); color: var(--c-mint-ink); border-color: var(--c-mint-ink);
  font-size: 13px; transform: rotate(3deg); border-radius: var(--r-pill); padding: 7px 14px;
}

/* ─── Trust bar ──────────────────────────────────────────────────── */
.trust-bar {
  background: var(--c-bg);
  border-top: 2px solid var(--c-mint-ink);
  border-bottom: 2px solid var(--c-mint-ink);
  padding-block: var(--sp-12);
}
.trust-bar__inner { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-5); }
.trust-bar__item { display: flex; align-items: center; gap: var(--sp-4); }
.trust-bar__icon {
  width: 56px; height: 56px; border-radius: var(--r-xl); flex-shrink: 0;
  background: var(--c-mint-bg); border: 2px solid var(--c-mint-ink);
  color: var(--c-mint-ink);
  display: flex; align-items: center; justify-content: center;
}
.trust-bar__num { font-size: 36px; font-weight: 800; line-height: 1; }
.trust-bar__label { font-size: 13px; font-weight: 700; margin-top: 3px; line-height: 1.3; }
.trust-bar__sub { font-size: 11px; color: var(--c-ink3); margin-top: 2px; }

/* ─── Section header ─────────────────────────────────────────────── */
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: var(--sp-10); }
.section-header--center { text-align: center; flex-direction: column; align-items: center; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: 13px; font-weight: 700; color: var(--c-mint-ink);
  letter-spacing: .6px; text-transform: uppercase; margin-bottom: var(--sp-2);
}
.section-eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-mint); }
.section-title { font-size: clamp(1.6rem, 5vw, 40px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; overflow-wrap: break-word; }
.section-desc { font-size: 16px; color: var(--c-ink2); max-width: 540px; margin-top: var(--sp-4); line-height: 1.55; }

/* ─── Top picks ──────────────────────────────────────────────────── */
.top-picks { background: var(--c-paper); }
.top-picks__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-5); }
.pick-card { background: var(--c-bg); border: 2px solid var(--c-border-strong); border-radius: var(--r-2xl); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--sh-md); }
.pick-card--top { border-color: var(--c-mint-ink); box-shadow: var(--sh-mint-lg); }
.pick-card__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px; background: var(--c-paper-deep);
  border-bottom: 2px solid var(--c-border-strong);
}
.pick-card--top .pick-card__header { background: var(--c-mint-bg); border-color: var(--c-mint-ink); }
.pick-card__tag { font-size: 11px; font-weight: 800; color: var(--c-ink2); letter-spacing: .8px; }
.pick-card--top .pick-card__tag { color: var(--c-mint-ink); }
.pick-card__img { padding: var(--sp-5); }
.pick-card__img img { border-radius: var(--r-xl); width: 100%; height: 180px; object-fit: contain; }
.pick-card__img-placeholder { height: 180px; background: var(--c-paper-deep); border-radius: var(--r-xl); }
.pick-card__body { padding: 0 var(--sp-5) var(--sp-5); flex: 1; display: flex; flex-direction: column; }
.pick-card__name { font-size: 18px; font-weight: 800; margin-bottom: var(--sp-2); letter-spacing: -.3px; }
.pick-card__verdict { font-size: 13px; color: var(--c-ink2); line-height: 1.5; flex: 1; margin-bottom: var(--sp-4); }
.pick-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: var(--sp-4); border-top: 2px solid var(--c-border); }
.pick-card__price { font-size: 20px; font-weight: 800; }
.pick-card__price-note { font-size: 11px; color: var(--c-ink3); }

/* ─── How we test ────────────────────────────────────────────────── */
.how-we-test { background: var(--c-bg); }
.how-we-test__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-5); }
.step-card {
  padding: var(--sp-6); background: var(--c-paper);
  border: 2px solid var(--c-border-strong); border-radius: var(--r-2xl);
  box-shadow: var(--sh-md); position: relative;
}
.step-card__num {
  position: absolute; top: -14px; left: 18px;
  background: var(--c-mint-ink); color: #fff;
  border-radius: var(--r-lg); padding: 3px 11px;
  font-weight: 800; font-size: 14px;
}
.step-card__icon {
  width: 52px; height: 52px; background: var(--c-mint-bg);
  border: 2px solid var(--c-mint-ink); border-radius: var(--r-xl);
  color: var(--c-mint-ink);
  display: flex; align-items: center; justify-content: center;
  margin-top: var(--sp-3); margin-bottom: var(--sp-4);
}
.step-card__title { font-size: 17px; font-weight: 800; margin-bottom: var(--sp-2); }
.step-card__desc { font-size: 13px; color: var(--c-ink2); line-height: 1.5; }

/* ─── Guides preview ─────────────────────────────────────────────── */
.guides-preview { background: var(--c-paper); }
.guides-preview__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--sp-5); }
.guide-card {
  background: var(--c-bg); border: 2px solid var(--c-border-strong);
  border-radius: var(--r-2xl); overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--sh-md);
}
.guide-card--featured { background: var(--c-mint-bg); border-color: var(--c-mint-ink); box-shadow: var(--sh-mint-lg); }
.guide-card--featured img { width: 100%; height: 240px; object-fit: cover; }
.guide-card__body { padding: var(--sp-6); flex: 1; display: flex; flex-direction: column; gap: var(--sp-3); }
.guide-card__tag { align-self: flex-start; }
.guide-card__title { font-size: 20px; font-weight: 800; line-height: 1.25; letter-spacing: -.3px; }
.guide-card__title a:hover { color: var(--c-mint-ink); }
.guide-card__desc { font-size: 13px; color: var(--c-ink2); line-height: 1.55; }
.guide-card__link { font-size: 13px; font-weight: 700; color: var(--c-mint-ink); margin-top: auto; }

/* ─── Quiz CTA ───────────────────────────────────────────────────── */
.quiz-cta { background: var(--c-paper); }
.quiz-cta__box {
  position: relative; background: var(--c-bg);
  border: 2px solid var(--c-mint-ink); border-radius: 28px;
  padding: var(--sp-12) var(--sp-16); box-shadow: 8px 8px 0 var(--c-mint-ink);
  overflow: hidden;
}
.quiz-cta__blobs { position: absolute; inset: 0; pointer-events: none; }
.quiz-cta__blob { position: absolute; border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; opacity: .5; }
.quiz-cta__blob--1 { width: 300px; height: 300px; background: var(--c-mint-bg); top: -80px; right: -40px; }
.quiz-cta__blob--2 { width: 200px; height: 200px; background: var(--c-sky-bg); bottom: -60px; right: 200px; }
.quiz-cta__inner { position: relative; display: grid; grid-template-columns: 1.6fr 1fr; gap: var(--sp-10); align-items: center; }
.quiz-cta__title { font-size: clamp(1.5rem, 5vw, 40px); font-weight: 800; margin-block: var(--sp-4) var(--sp-4); line-height: 1.1; overflow-wrap: break-word; }
.quiz-cta__title span { color: var(--c-mint-ink); }
.quiz-cta__desc { font-size: 16px; color: var(--c-ink2); line-height: 1.55; margin-bottom: var(--sp-6); max-width: 480px; }
.quiz-cta__questions { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.quiz-cta__q {
  background: var(--c-paper); border: 2px solid var(--c-border-strong);
  border-radius: var(--r-xl); padding: 13px;
  display: flex; flex-direction: column; gap: 4px;
}
.quiz-cta__q-num { font-size: 10px; color: var(--c-mint-ink); font-weight: 800; letter-spacing: .5px; text-transform: uppercase; }
.quiz-cta__q-text { font-size: 13px; font-weight: 700; }
.quiz-cta__q-answer {
  display: inline-block; font-size: 12px; color: var(--c-mint-ink);
  background: var(--c-mint-bg); border: 1px solid var(--c-mint-ink);
  border-radius: var(--r-md); padding: 3px 8px; margin-top: var(--sp-2);
}

/* ─── Floating quiz button ───────────────────────────────────────── */
.quiz-float {
  position: fixed; right: var(--sp-8); bottom: var(--sp-8); z-index: 50;
  background: var(--c-mint); color: var(--c-mint-ink);
  border: 2px solid var(--c-mint-ink); border-radius: var(--r-pill);
  padding: 13px 18px; box-shadow: 5px 5px 0 var(--c-mint-ink);
  display: flex; align-items: center; gap: var(--sp-3);
  cursor: pointer; transition: transform .12s, box-shadow .12s;
}
.quiz-float:hover { transform: translate(-1px,-1px); box-shadow: 7px 7px 0 var(--c-mint-ink); }
.quiz-float__icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-mint-ink); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.quiz-float__label { font-size: 10px; font-weight: 800; letter-spacing: .5px; }
.quiz-float__cta { font-size: 15px; font-weight: 800; margin-top: 2px; }

/* ─── Ranking hero ───────────────────────────────────────────────── */
.ranking-hero { background: var(--c-paper); padding-block: var(--sp-8) var(--sp-6); }
.ranking-hero__content { display: flex; align-items: flex-end; justify-content: space-between; }
.ranking-hero__title { font-size: clamp(1.6rem, 6vw, 48px); font-weight: 800; letter-spacing: -1px; line-height: 1.08; overflow-wrap: break-word; }
.ranking-hero__title span { color: var(--c-mint-ink); }
.ranking-hero__desc { font-size: 15px; color: var(--c-ink2); margin-top: var(--sp-3); max-width: 640px; line-height: 1.55; }
.ranking-hero__badge .pill__dot { display: inline-block; }

/* ─── Filter bar ─────────────────────────────────────────────────── */
.filter-bar {
  background: var(--c-bg); padding-block: 14px;
  border-top: 2px solid var(--c-mint-ink); border-bottom: 2px solid var(--c-mint-ink);
  position: sticky; top: 81px; z-index: 90;
}
.filter-bar__row {
  display: flex; align-items: center; gap: var(--sp-4);
  flex-wrap: nowrap; overflow: visible;
}
.filter-bar__group { display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; }
.filter-bar__label { font-size: 11px; font-weight: 800; color: var(--c-ink3); letter-spacing: .04em; text-transform: uppercase; line-height: 1; }
.filter-bar__sep { width: 1px; height: 32px; background: var(--c-border); flex-shrink: 0; }
.filter-bar__spacer { flex: 1; }

/* Surface slider */
.filter-bar__range { display: flex; align-items: center; gap: var(--sp-2); }
.filter-bar__range-val { font-size: 13px; font-weight: 700; white-space: nowrap; }
.filter-bar__range input[type=range] { width: 120px; accent-color: var(--c-mint-ink); }

/* Price */
.filter-bar__price { display: flex; align-items: center; gap: 6px; }
.filter-bar__price-input {
  width: 74px; padding: 6px 10px;
  background: var(--c-paper); border: 2px solid var(--c-border-strong);
  border-radius: var(--r-pill); font-family: var(--ff); font-size: 13px; font-weight: 700;
}
.filter-bar__price-dash { color: var(--c-ink4); }
.filter-bar__currency { font-size: 13px; color: var(--c-ink3); }

/* Marka — dropdown button */
.filter-bar__brand-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: var(--r-pill);
  background: var(--c-paper); border: 2px solid var(--c-border-strong);
  font-family: var(--ff); font-size: 13px; font-weight: 700; color: var(--c-ink);
  cursor: pointer; white-space: nowrap; box-shadow: var(--sh-sm);
}
.filter-bar__brand-btn[aria-expanded="true"] {
  background: var(--c-mint); color: var(--c-mint-ink);
  border-color: var(--c-mint-ink); box-shadow: 2px 2px 0 var(--c-mint-ink);
}
.filter-bar__brand-btn svg { transition: transform .18s; flex-shrink: 0; }
.filter-bar__brand-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

/* Marka — popup */
.filter-bar__brand-popup {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--c-bg); border: 2px solid var(--c-mint-ink);
  border-radius: var(--r-xl); padding: var(--sp-4);
  box-shadow: 6px 6px 0 var(--c-mint-ink);
  z-index: 200; min-width: 320px;
}
.filter-bar__brand-popup-pills { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-3); }
.filter-bar__brand-popup-close {
  display: block; width: 100%;
  padding: 9px; border-radius: var(--r-pill);
  background: var(--c-mint); color: var(--c-mint-ink);
  border: 2px solid var(--c-mint-ink); font-family: var(--ff);
  font-size: 13px; font-weight: 800; cursor: pointer;
  box-shadow: 2px 2px 0 var(--c-mint-ink);
}

.filter-bar__clear { background: none; border: none; cursor: pointer; font-size: 13px; font-weight: 800; color: var(--c-mint-ink); text-decoration: underline; text-underline-offset: 3px; font-family: var(--ff); white-space: nowrap; }

/* ─── Ranking toolbar ────────────────────────────────────────────── */
.ranking-toolbar { background: var(--c-paper); border-bottom: 2px solid var(--c-border-strong); }
.ranking-toolbar__inner { display: flex; align-items: center; gap: var(--sp-8); padding-block: var(--sp-5); }
.ranking-toolbar__count { font-size: 15px; color: var(--c-ink2); }
.ranking-toolbar__count strong { font-size: 24px; font-weight: 800; color: var(--c-ink); }
.ranking-toolbar__sort { display: flex; align-items: center; gap: var(--sp-3); margin-left: auto; }
.ranking-toolbar__sort-label { font-size: 13px; color: var(--c-ink3); font-weight: 600; }
/* Pigułki sortowania w zaokrąglonym kontenerze (wg projektu) */
.ranking-toolbar__sort-pills {
  display: flex; gap: 4px;
  background: var(--c-bg);
  padding: 4px;
  border-radius: var(--r-pill);
  border: 2px solid var(--c-border-strong);
}
.ranking-toolbar__sort-btn {
  padding: 7px 16px; border-radius: var(--r-pill); font-size: 13px; font-weight: 700;
  background: transparent; border: 2px solid transparent;
  font-family: var(--ff); color: var(--c-ink2); cursor: pointer;
  white-space: nowrap;
}
.ranking-toolbar__sort-btn:hover { color: var(--c-ink); }
.ranking-toolbar__sort-btn.is-active {
  background: var(--c-mint); color: var(--c-mint-ink);
  border-color: var(--c-mint-ink); box-shadow: 2px 2px 0 var(--c-mint-ink);
}

/* ─── Ranking list ───────────────────────────────────────────────── */
.ranking-list { background: var(--c-paper); padding-block: var(--sp-6) var(--sp-24); }
.ranking-list__items { display: flex; flex-direction: column; gap: var(--sp-5); }
.ranking-list__empty { padding: var(--sp-12); text-align: center; color: var(--c-ink3); }

/* ─── Product card ───────────────────────────────────────────────── */
.product-card {
  background: var(--c-bg);
  border: 2px solid var(--c-border-strong); border-radius: var(--r-2xl);
  box-shadow: 3px 3px 0 var(--c-border-strong);
  position: relative; overflow: hidden;
}
.product-card--top { border-color: var(--c-mint-ink); box-shadow: 6px 6px 0 var(--c-mint-ink); }
/* Pełnowymiarowy pasek u góry wyróżnionej karty */
.product-card__ribbon {
  background: var(--c-mint); color: var(--c-mint-ink);
  padding: 9px var(--sp-6);
  font-size: 11px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--c-mint-ink);
  display: flex; align-items: center; gap: 6px;
}
.product-card__layout {
  display: grid; grid-template-columns: 72px 230px 1fr 220px;
  gap: var(--sp-4) var(--sp-6); padding: var(--sp-6) var(--sp-6) var(--sp-5);
  align-items: start;
  grid-template-areas: "rank img body cta";
}
.product-card__rank-col   { grid-area: rank; }
.product-card__img-col    { grid-area: img; }
.product-card__body       { grid-area: body; }
.product-card__cta-col    { grid-area: cta; }
.product-card__rank-col { display: flex; flex-direction: column; align-items: center; gap: var(--sp-4); padding-top: var(--sp-2); }
.product-card__rank-number {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--c-bg); border: 2.5px solid var(--c-mint-ink);
  color: var(--c-mint-ink); font-size: 26px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 3px 3px 0 var(--c-mint-ink);
}
.product-card__rank-number--top { background: var(--c-mint); }
.product-card__type-tag {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  color: var(--c-ink3); background: var(--c-paper-deep);
  padding: 3px 8px; border-radius: var(--r-pill);
  border: 1.5px solid var(--c-border); margin-top: var(--sp-2);
}
.product-card__kw-pair { font-size: 12px; color: var(--c-ink2); font-weight: 600; display: flex; gap: var(--sp-3); }
.product-card__meta-sep { color: var(--c-ink4); }
.product-card__compare { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; font-size: 11px; color: var(--c-ink3); font-weight: 600; min-height: 44px; padding: 4px 6px; }
.product-card__compare-input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.product-card__compare-box {
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--c-bg); border: 2px solid var(--c-mint-ink);
  display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.product-card__compare-input:checked ~ .product-card__compare-box { background: var(--c-mint); box-shadow: 2px 2px 0 var(--c-mint-ink); }
.product-card__compare-input:focus-visible ~ .product-card__compare-box { outline: 2px solid var(--c-mint-ink); outline-offset: 2px; }
.product-card__img-col {}
.product-card__img-wrap {
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-xl);
  border: 2px solid var(--c-border-strong);
  background: var(--c-bg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: 12px;
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.product-card__img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--c-paper-deep);
}
.product-card__body { padding-top: var(--sp-1); }
.product-card__brand { font-size: 11px; color: var(--c-mint-ink); text-transform: uppercase; letter-spacing: .8px; font-weight: 800; }
.product-card__name { font-size: 20px; font-weight: 800; margin-block: var(--sp-2) var(--sp-3); letter-spacing: -.3px; line-height: 1.2; }
.product-card__name a:hover { color: var(--c-mint-ink); }
.product-card__verdict { font-size: 13px; color: var(--c-ink2); line-height: 1.55; margin-bottom: var(--sp-4); max-width: 500px; overflow-wrap: break-word; word-break: break-word; }
/* Zabezpieczenie przed poziomym overflow kart na mobile */
.product-card, .product-card__layout, .product-card__body { min-width: 0; }
.product-card__body > * { min-width: 0; }
.product-card__specs { display: flex; flex-wrap: wrap; gap: var(--sp-2); list-style: none; margin-bottom: var(--sp-4); }
.product-card__meta { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.product-card__stars { display: flex; align-items: center; gap: var(--sp-2); font-size: 13px; color: var(--c-ink2); }
.product-card__reviews-count { color: var(--c-ink4); }
.product-card__expand-btn {
  display: flex; width: 100%; align-items: center; justify-content: center; gap: var(--sp-2);
  margin: 0; padding: 13px var(--sp-6); cursor: pointer;
  background: var(--c-paper); border: none; border-top: 2px solid var(--c-border); border-radius: 0;
  font-family: var(--ff); font-size: 13px; font-weight: 800; color: var(--c-mint-ink);
}
.product-card__expand-btn:hover { background: var(--c-paper-deep); }
.product-card__cta-col { display: flex; flex-direction: column; gap: var(--sp-3); }
.product-card__score-box {
  display: flex; align-items: center; gap: var(--sp-3);
  background: var(--c-paper); border: 2px solid var(--c-border-strong);
  border-radius: var(--r-xl); padding: 13px;
}
.product-card__score-box--high { background: var(--c-mint-bg); border-color: var(--c-mint-ink); box-shadow: 2px 2px 0 var(--c-mint-ink); }

/* ── Wariant A: nagłówek treści (tożsamość + ocena) + parametry 2×2 ── */
.product-card__head-row { display: flex; align-items: flex-start; gap: var(--sp-3); }
.product-card__identity { flex: 1; min-width: 0; }
.product-card__identity .product-card__name { margin-top: 3px; }
.product-card__stars-val { font-weight: 700; color: var(--c-ink2); }

/* Scalony badge „ocena redakcji" (mięta) przy tytule */
.product-card__score-box--rect {
  flex-shrink: 0; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  text-align: center;
  background: var(--c-mint); border: 2px solid var(--c-mint-ink);
  border-radius: var(--r-xl); padding: 8px 12px;
  box-shadow: 2px 2px 0 var(--c-mint-ink);
}
.product-card__score-box--rect.is-low {
  background: var(--c-paper); border-color: var(--c-border-strong);
  box-shadow: 2px 2px 0 var(--c-border-strong);
}
.product-card__score-num { font-size: 24px; font-weight: 800; line-height: 1; color: var(--c-mint-ink); }
.product-card__score-box--rect.is-low .product-card__score-num { color: var(--c-ink); }
.product-card__score-box--rect .product-card__score-caption {
  font-size: 8.5px; font-weight: 800; line-height: 1.15; letter-spacing: .04em;
  text-transform: uppercase; color: var(--c-mint-ink);
}
.product-card__score-box--rect.is-low .product-card__score-caption { color: var(--c-ink3); }

/* Parametry — siatka 2×2 z ikonami */
.product-card__params {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2);
  list-style: none; margin: var(--sp-3) 0 0; padding: 0;
}
.product-card__param {
  display: flex; align-items: center; gap: 10px; min-width: 0;
  background: var(--c-mint-bg-soft); border: 2px solid var(--c-border-strong);
  border-radius: var(--r-lg); padding: 10px 12px;
}
.product-card__param-icon {
  width: 30px; height: 30px; flex-shrink: 0; border-radius: 9px;
  background: var(--c-bg); border: 2px solid var(--c-mint-ink); color: var(--c-mint-ink);
  display: flex; align-items: center; justify-content: center;
}
.product-card__param-text { min-width: 0; display: flex; flex-direction: column; }
.product-card__param-val { font-size: 14px; font-weight: 800; line-height: 1.1; color: var(--c-ink); }
.product-card__param-unit { font-size: 10px; font-weight: 700; color: var(--c-ink3); }
.product-card__param-label {
  font-size: 10px; font-weight: 700; color: var(--c-ink3);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
/* Wariant: kółko z oceną + sufiks /10 + podpis "Ocena" (nawilżacze/klimatyzatory) */
.product-card__score-box--badge-only {
  background: none; border: none; box-shadow: none; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.product-card__score-box--badge-only .score-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%; line-height: 1;
  border: 2px solid var(--c-border-strong); background: var(--c-paper);
  box-shadow: 2px 2px 0 var(--c-border-strong); color: var(--c-ink);
}
.product-card__score-box--badge-only.product-card__score-box--high .score-badge {
  border-color: var(--c-mint-ink); background: var(--c-mint-bg);
  box-shadow: 2px 2px 0 var(--c-mint-ink); color: var(--c-mint-ink);
}
.score-badge__num { font-size: 1.2rem; font-weight: 800; }
.score-badge__max { font-size: .6rem; font-weight: 700; opacity: .6; margin-top: 1px; }
.product-card__score-caption {
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--c-ink3);
}
/* CTA „Sprawdź najniższą cenę" w recenzjach nawilżaczy/klimatyzatorów */
.product-hero__buy { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; }

/* Status „wyprzedane / niedostępne" */
.sold-out-badge {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: #f6e8e4; color: #a23b2c; border: 1.5px solid #d98b7d;
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; white-space: nowrap;
}

/* ─── Opinie / komentarze (wspólne dla wszystkich recenzji) ─────── */
.review-comments { max-width: 760px; margin: 48px 0 0; padding-top: 40px; border-top: 1px solid var(--c-border); }
.review-comments__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin: 0 0 24px; }
.review-comments__title { font-size: 1.3rem; font-weight: 800; color: var(--c-ink); margin: 0; display: flex; align-items: center; gap: 10px; }
.review-comments__add { flex-shrink: 0; }
.review-comments__count { display: inline-flex; align-items: center; justify-content: center; min-width: 30px; height: 26px; padding: 0 9px; border-radius: 999px; background: var(--c-mint-bg); color: var(--c-mint-ink); font-size: .8rem; font-weight: 800; }
.review-comments__list { list-style: none; margin: 0 0 32px; padding: 0; }
.review-comments__list .review-comment { margin: 0 0 14px; }
.review-comment__body { background: var(--c-paper); border: 1px solid var(--c-border); border-radius: 14px; padding: 16px 18px; }
.review-comments__list .children { list-style: none; margin: 14px 0 0; padding: 0 0 0 24px; border-left: 2px solid var(--c-border); }
.review-comment__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-comment__avatar { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; background: var(--c-mint-bg); color: var(--c-mint-ink); font-weight: 800; font-size: 1rem; }
.review-comment__meta { display: flex; flex-direction: column; line-height: 1.3; }
.review-comment__author { font-weight: 700; color: var(--c-ink); font-size: .92rem; }
.review-comment__date { font-size: .72rem; color: var(--c-ink3); }
.review-comment__content { color: var(--c-ink2); line-height: 1.6; font-size: .92rem; }
.review-comment__content p { margin: 0 0 8px; }
.review-comment__content p:last-child { margin-bottom: 0; }
.review-comment .comment-reply-link { display: inline-block; margin-top: 8px; color: var(--c-mint-ink); font-weight: 700; font-size: .8rem; text-decoration: none; }
.review-comment .comment-reply-link:hover { text-decoration: underline; }
.review-comments__closed { color: var(--c-ink3); font-size: .9rem; font-style: italic; }

/* Formularz */
.review-comments .comment-respond { background: var(--c-paper); border: 1px solid var(--c-border); border-radius: 16px; padding: 24px; }
.review-comments .comment-reply-title { font-size: 1.1rem; font-weight: 800; margin: 0 0 16px; color: var(--c-ink); }
.review-comments .comment-form label { display: block; font-size: .82rem; font-weight: 700; color: var(--c-ink2); margin-bottom: 5px; }
.review-comments .comment-form input[type="text"],
.review-comments .comment-form input[type="email"],
.review-comments .comment-form input[type="url"],
.review-comments .comment-form textarea { width: 100%; padding: 11px 13px; border: 1.5px solid var(--c-border-strong); border-radius: 10px; font: inherit; font-size: .9rem; background: #fff; box-sizing: border-box; }
.review-comments .comment-form textarea { resize: vertical; min-height: 120px; }
.review-comments .comment-form-comment,
.review-comments .comment-form-author,
.review-comments .comment-form-email { margin: 0 0 14px; }
@media (min-width: 560px) {
  .review-comments .comment-form-author,
  .review-comments .comment-form-email { display: inline-block; width: calc(50% - 7px); vertical-align: top; }
  .review-comments .comment-form-author { margin-right: 14px; }
}
.review-comments .comment-form .form-submit { margin: 6px 0 0; }
.review-comments .comment-form .required { color: #d33; }
.review-comments .comment-form-cookies-consent { display: flex; align-items: flex-start; gap: 8px; font-size: .8rem; color: var(--c-ink3); margin: 0 0 14px; }
.review-comments .comment-form-cookies-consent label { margin: 0; font-weight: 400; }
.review-comments .comment-form-cookies-consent input { width: auto; margin: 2px 0 0; }
.review-comments .logged-in-as { font-size: .85rem; color: var(--c-ink3); margin-bottom: 12px; }

/* ─── Galeria zdjęć w recenzji ─────────────────────────────────── */
/* Pasek miniatur galerii (pod zdjęciem głównym) */
.wo-gallery { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.wo-gallery-thumb { position: relative; width: 58px; height: 58px; flex: 0 0 auto; padding: 0; border: 1.5px solid var(--c-border-strong); border-radius: 9px; overflow: hidden; cursor: pointer; background: var(--c-paper); transition: border-color .15s ease, transform .15s ease; }
.wo-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wo-gallery-thumb:hover { border-color: var(--c-mint-ink); transform: translateY(-1px); }
.wo-gallery-thumb:focus-visible { outline: 2px solid var(--c-mint-ink); outline-offset: 2px; }
.wo-gallery-thumb--hidden { display: none; }
.wo-gallery-thumb[data-more]::after { content: attr(data-more); position: absolute; inset: 0; background: rgba(26,36,34,.62); color: #fff; font-weight: 800; font-size: .9rem; display: flex; align-items: center; justify-content: center; }

/* Lightbox galerii */
.wo-lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(12,18,16,.93); display: flex; align-items: center; justify-content: center; }
.wo-lightbox[hidden] { display: none; }
.wo-lightbox__img { max-width: 90vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 12px 48px rgba(0,0,0,.55); background: #fff; }
.wo-lightbox__close { position: absolute; top: 18px; right: 22px; width: 46px; height: 46px; border: none; background: rgba(255,255,255,.16); color: #fff; font-size: 30px; line-height: 1; border-radius: 50%; cursor: pointer; }
.wo-lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border: none; background: rgba(255,255,255,.16); color: #fff; font-size: 34px; line-height: 1; border-radius: 50%; cursor: pointer; }
.wo-lightbox__nav--prev { left: 20px; }
.wo-lightbox__nav--next { right: 20px; }
.wo-lightbox__close:hover, .wo-lightbox__nav:hover { background: rgba(255,255,255,.32); }
.wo-lightbox__counter { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: #fff; font-weight: 700; font-size: .88rem; background: rgba(0,0,0,.4); padding: 5px 14px; border-radius: 999px; }
@media (max-width: 600px) {
  .wo-lightbox__nav { width: 42px; height: 42px; font-size: 26px; }
  .wo-lightbox__nav--prev { left: 8px; } .wo-lightbox__nav--next { right: 8px; }
  .wo-lightbox__close { top: 10px; right: 12px; }
}

/* ─── Treść marki: shortcody przeniesione z produkcji ──────────── */
.brand-twocols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 18px 0; }
@media (max-width: 600px) { .brand-twocols { grid-template-columns: 1fr; } }
.brand-cta-btn { display: inline-block; padding: 11px 18px; border-radius: 999px; font-weight: 700; text-decoration: none; margin: 6px 8px 6px 0; }
.brand-cta-btn:hover { opacity: .92; }

/* ─── Byline autora (recenzje, poradniki) ──────────────────────── */
.wo-byline { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; margin: 14px 0; font-size: .85rem; color: var(--c-ink2); }
.wo-byline__person { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--c-ink); font-weight: 700; }
.wo-byline__person:hover .wo-byline__name { color: var(--c-mint-ink); text-decoration: underline; }
.wo-byline__avatar { width: 32px; height: 32px; border-radius: 50%; }
.wo-byline__role, .wo-byline__date { color: var(--c-ink3); }
.wo-byline__role::before, .wo-byline__date::before { content: "·"; margin-right: 8px; color: var(--c-border-strong); }
.wo-tested-badge { display: inline-flex; align-items: center; gap: 6px; margin: 0 0 12px; padding: 6px 13px; border-radius: 999px; background: var(--c-mint-bg); color: var(--c-mint-ink); font-size: .82rem; font-weight: 700; }
.product-card__score-label { font-size: 11px; color: var(--c-ink3); line-height: 1.4; }
.product-card__score-label strong { display: block; color: var(--c-ink); font-size: 13px; margin-bottom: 2px; }
.product-card__score-label a { color: var(--c-mint-ink); text-decoration: underline; }
.product-card__price { }
.product-card__price-label { display: block; font-size: 11px; color: var(--c-ink3); text-transform: uppercase; letter-spacing: .4px; font-weight: 700; }
.product-card__price-value { display: block; font-size: 28px; font-weight: 800; line-height: 1.1; }
.product-card__price-note { display: block; font-size: 11px; color: var(--c-ink3); margin-top: 2px; }

/* ─── Specs expanded ─────────────────────────────────────────────── */
.product-card__specs-expanded {
  background: var(--c-paper); border-top: 2px solid var(--c-border-strong);
  padding: var(--sp-6) var(--sp-6);
}
/* Kafelki parametrów w hero recenzji (odstęp od reszty) */
.product-hero__params { margin: 16px 0; }
/* Podpisy grup parametrów dla urządzeń 2-w-1 (Oczyszczanie / Nawilżanie) */
.product-hero__params-label { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--c-mint-ink); margin: 16px 0 6px; }
.product-hero__params > .product-hero__params-label:first-child { margin-top: 0; }

/* Chipy zdolności (klimatyzatory: oczyszczanie / klasa / tryb nocny) */
.product-card__caps { display: flex; flex-wrap: wrap; gap: 6px; margin: var(--sp-3) 0 0; padding: 0; list-style: none; }
.product-card__caps .cap {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: var(--c-mint-ink);
  background: var(--c-mint-bg); border: 1.5px solid var(--c-mint);
  border-radius: 999px; padding: 4px 10px;
}

/* Lista pełnych danych (nawilżacze / klimatyzatory) */
.product-card__spec-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--sp-8); margin: 0; }
.product-card__spec-rows > div { display: flex; justify-content: space-between; gap: var(--sp-4); padding: 8px 0; border-bottom: 1px solid var(--c-border); }
.product-card__spec-rows dt { color: var(--c-ink3); font-size: 13px; font-weight: 600; margin: 0; }
.product-card__spec-rows dd { color: var(--c-ink); font-size: 13px; font-weight: 800; margin: 0; text-align: right; }
/* Wiersz „Funkcje" — pełna szerokość, etykieta nad wartością (długi tekst) */
.product-card__spec-rows > div.is-wide { grid-column: 1 / -1; flex-direction: column; align-items: flex-start; gap: 3px; }
.product-card__spec-rows > div.is-wide dd { text-align: left; font-weight: 700; }
@media (max-width: 600px) { .product-card__spec-rows { grid-template-columns: 1fr; } }
.specs-table { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-8); }
@media (max-width: 860px) { .specs-table { grid-template-columns: repeat(2,1fr); gap: var(--sp-5); } }
@media (max-width: 520px) { .specs-table { grid-template-columns: 1fr; gap: var(--sp-4); } }
.specs-table__group-title { font-size: 11px; color: var(--c-mint-ink); letter-spacing: .6px; font-weight: 800; text-transform: uppercase; margin-bottom: var(--sp-3); }
.specs-table__rows { }
.specs-table__row { display: flex; justify-content: space-between; font-size: 12px; padding-block: 7px; border-bottom: 1.5px dashed var(--c-border-strong); line-height: 1.4; }
.specs-table__row dt { color: var(--c-ink3); }
.specs-table__row dd { color: var(--c-ink); font-weight: 700; text-align: right; }

/* ─── Review page (single-purifiers) ────────────────────────────── */
.review-page { padding-block: var(--sp-8) var(--sp-16); }

/* score badge — high score variant */
.score-badge--high { background: var(--c-mint-bg); border-color: var(--c-mint-ink); box-shadow: 2px 2px 0 var(--c-mint-ink); }

/* Style hero/layout/article są zdefiniowane inline w single-purifiers.php
   (nie nakładać tu reguł na .review-hero, .review-layout, .review-article —
   konflikt z gridami w single-purifiers.php). */

.review-verdict {
  background: var(--c-mint-bg); border: 2px solid var(--c-mint-ink);
  border-radius: var(--r-xl); padding: var(--sp-6); margin-bottom: var(--sp-8);
  box-shadow: 3px 3px 0 var(--c-mint-ink);
}
.review-verdict__title { font-size: 13px; text-transform: uppercase; letter-spacing: .6px; font-weight: 800; color: var(--c-mint-ink); margin-bottom: var(--sp-3); }
.review-verdict__text p { font-size: 15px; line-height: 1.75; color: var(--c-ink); margin-bottom: var(--sp-3); }

.review-section { margin-bottom: var(--sp-10); }
.review-section__title { font-size: 20px; font-weight: 800; margin-bottom: var(--sp-4); }
.review-section__figure { margin-block: var(--sp-4); border-radius: var(--r-lg); overflow: hidden; }
.review-section__figure img { width: 100%; height: auto; display: block; }
.review-section__content p { font-size: 15px; line-height: 1.75; color: var(--c-ink2); margin-bottom: var(--sp-4); }

.review-for-whom {
  background: var(--c-paper); border: 2px solid var(--c-border-strong);
  border-radius: var(--r-xl); padding: var(--sp-6); margin-bottom: var(--sp-8);
}

/* Sidebar */
.review-sidebar { display: flex; flex-direction: column; gap: var(--sp-4); position: sticky; top: 88px; }
.review-sidebar__card {
  background: var(--c-bg); border: 2px solid var(--c-border-strong);
  border-radius: var(--r-xl); padding: var(--sp-5);
  box-shadow: 3px 3px 0 var(--c-border-strong);
}
.review-sidebar__title { font-size: 13px; text-transform: uppercase; letter-spacing: .6px; font-weight: 800; color: var(--c-ink3); margin-bottom: var(--sp-4); }
.review-sidebar__buy { display: flex; flex-direction: column; gap: var(--sp-3); align-items: stretch; }
.review-sidebar__price { }
.review-sidebar__price span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--c-ink3); font-weight: 700; }
.review-sidebar__price strong { font-size: 24px; font-weight: 800; }

/* Sidebar specs override — stack vertically */
.review-sidebar .specs-table { grid-template-columns: 1fr; gap: var(--sp-4); }

/* Responsive */
@media (max-width: 900px) {
  .review-sidebar { position: static; }
}

/* ─── Quiz modal ─────────────────────────────────────────────────── */
.quiz-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
}
.quiz-modal[hidden] { display: none; }
.quiz-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(20,30,25,.55); backdrop-filter: blur(4px);
  cursor: pointer;
}
.quiz-modal__box {
  position: relative; z-index: 1;
  width: min(680px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--c-bg); border-radius: var(--r-xl);
  border: 2.5px solid var(--c-border-strong);
  box-shadow: 6px 6px 0 var(--c-border-strong);
  padding: var(--sp-8) var(--sp-8) var(--sp-6);
}
.quiz-modal__x {
  position: absolute; top: 16px; right: 16px;
  background: var(--c-paper); border: 2px solid var(--c-border-strong);
  border-radius: var(--r-pill); width: 36px; height: 36px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--c-ink3);
}
.quiz-modal__x:hover { background: var(--c-mint-bg); color: var(--c-ink); }

.quiz-progress {
  height: 5px; background: var(--c-border); border-radius: 99px;
  margin-bottom: var(--sp-6); overflow: hidden;
}
.quiz-progress__bar {
  height: 100%; background: var(--c-mint-ink);
  border-radius: 99px; transition: width .35s ease;
}

.quiz-step__header { margin-bottom: var(--sp-5); }
.quiz-step__num { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .8px; font-weight: 800; color: var(--c-ink3); margin-bottom: var(--sp-2); }
.quiz-step__num--success { color: var(--c-mint-ink); }
.quiz-step__question { font-size: clamp(20px, 3vw, 26px); font-weight: 800; line-height: 1.2; margin-bottom: 4px; }
.quiz-step__sub { font-size: 13px; color: var(--c-ink3); }

.quiz-step__options {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.quiz-step__options--multi { /* same */ }

.quiz-option {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 4px; padding: var(--sp-4) var(--sp-4);
  background: var(--c-paper); border: 2px solid var(--c-border-strong);
  border-radius: var(--r-xl); cursor: pointer; text-align: left;
  transition: border-color .15s, box-shadow .15s, background .15s;
  font-family: var(--ff);
}
.quiz-option:hover {
  border-color: var(--c-mint-ink); background: var(--c-mint-bg);
  box-shadow: 3px 3px 0 var(--c-mint-ink);
}
.quiz-option.is-selected {
  border-color: var(--c-mint-ink); background: var(--c-mint-bg);
  box-shadow: 3px 3px 0 var(--c-mint-ink);
}
.quiz-option__icon { font-size: 28px; line-height: 1; }
.quiz-option__label { font-size: 15px; font-weight: 700; color: var(--c-ink); }
.quiz-option__sub { font-size: 12px; color: var(--c-ink3); }

.quiz-step__footer { text-align: center; margin-top: var(--sp-4); }
.quiz-step__footer--results { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; padding-top: var(--sp-4); border-top: 2px dashed var(--c-border); }

/* Loading spinner */
.quiz-loading { display: flex; flex-direction: column; align-items: center; gap: var(--sp-4); padding: var(--sp-10) 0; color: var(--c-ink3); }
.quiz-loading__spinner {
  width: 44px; height: 44px; border: 3px solid var(--c-border-strong);
  border-top-color: var(--c-mint-ink); border-radius: 50%;
  animation: quiz-spin .7s linear infinite;
}
@keyframes quiz-spin { to { transform: rotate(360deg); } }

/* Result cards */
.quiz-results-list { display: flex; flex-direction: column; gap: var(--sp-4); margin-bottom: var(--sp-4); }
.quiz-result-card {
  display: grid; grid-template-columns: 100px 1fr; gap: var(--sp-4);
  background: var(--c-paper); border: 2px solid var(--c-border-strong);
  border-radius: var(--r-xl); padding: var(--sp-4);
  box-shadow: 3px 3px 0 var(--c-border-strong);
  animation: quiz-fadein .3s ease both;
}
.quiz-result-card__img img { width: 100%; height: auto; object-fit: contain; border-radius: var(--r-md); }
.quiz-result-card__body { display: flex; flex-direction: column; gap: 6px; }
.quiz-result-card__brand { font-size: 11px; text-transform: uppercase; letter-spacing: .6px; font-weight: 800; color: var(--c-mint-ink); }
.quiz-result-card__name { font-size: 16px; font-weight: 800; color: var(--c-ink); text-decoration: none; }
.quiz-result-card__name:hover { color: var(--c-mint-ink); text-decoration: underline; }
.quiz-result-card__verdict { font-size: 13px; color: var(--c-ink3); line-height: 1.5; margin: 0; }
.quiz-result-card__meta { display: flex; align-items: center; gap: var(--sp-2); font-size: 13px; font-weight: 600; }
.quiz-result-card__price { margin-left: auto; font-size: 18px; font-weight: 800; }
.quiz-result-card__actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-top: auto; }
.quiz-no-results { padding: var(--sp-6); text-align: center; color: var(--c-ink3); }
.quiz-no-results a { color: var(--c-mint-ink); text-decoration: underline; }
@keyframes quiz-fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.quiz-result-card:nth-child(2) { animation-delay: .1s; }
.quiz-result-card:nth-child(3) { animation-delay: .2s; }

/* Step enter/exit animation */
.quiz-step { animation: quiz-step-in .25s ease both; }
@keyframes quiz-step-in { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }

@media (max-width: 520px) {
  .quiz-modal__box { padding: var(--sp-6) var(--sp-4); }
  .quiz-step__options { grid-template-columns: 1fr; }
  .quiz-result-card { grid-template-columns: 80px 1fr; }
}

/* ─── Pagination ─────────────────────────────────────────────────── */
.pagination { padding-top: var(--sp-6); display: flex; justify-content: center; }
/* type=list daje <ul class="page-numbers"> — resetujemy kontener, by NIE dostał stylu kółka */
.pagination ul.page-numbers {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
  list-style: none; margin: 0; padding: 0; width: auto; height: auto;
  border: none; background: none; box-shadow: none;
}
.pagination ul.page-numbers li { display: flex; margin: 0; }
/* style kółek tylko dla linków/aktywnej pozycji */
.pagination a.page-numbers,
.pagination span.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--r-pill);
  border: 2px solid var(--c-border-strong); background: var(--c-bg);
  font-weight: 800; font-size: 14px; color: var(--c-ink2); text-decoration: none;
}
.pagination a.page-numbers:hover { border-color: var(--c-mint-ink); color: var(--c-mint-ink); }
.pagination .page-numbers.current {
  background: var(--c-mint); color: var(--c-mint-ink);
  border-color: var(--c-mint-ink); box-shadow: 2px 2px 0 var(--c-mint-ink);
}

/* ─── Compare tray ───────────────────────────────────────────────── */
.compare-tray {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  background: var(--c-mint-ink); color: #fff;
  box-shadow: 0 -6px 0 rgba(31,107,71,.15);
}
.compare-tray__inner {
  display: flex; align-items: center; gap: var(--sp-4);
  padding-block: var(--sp-4);
}
.compare-tray__icon {
  width: 40px; height: 40px; background: var(--c-mint);
  border: 2px solid #fff; border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-mint-ink); flex-shrink: 0;
}
.compare-tray__label { font-size: 11px; color: #cfe6d8; letter-spacing: .6px; text-transform: uppercase; font-weight: 800; }
.compare-tray__names { font-size: 13px; margin-top: 2px; font-weight: 600; }
.compare-tray__items { display: flex; gap: var(--sp-2); margin-left: auto; }
.compare-tray__clear { background: none; border: none; cursor: pointer; font-size: 12px; color: #cfe6d8; text-decoration: underline; font-family: var(--ff); }

/* ─── Stars (JS renders) ─────────────────────────────────────────── */
.stars { color: #e2a52f; letter-spacing: 1px; }

/* ─── Compare page ───────────────────────────────────────────────── */
.compare-page { padding-block: var(--sp-10) var(--sp-16); }
.compare-page__title { font-size: 28px; font-weight: 800; margin-block: var(--sp-4) var(--sp-8); }
.compare-page__empty { padding: var(--sp-10); text-align: center; color: var(--c-ink3); }
.compare-page__empty a { color: var(--c-mint-ink); text-decoration: underline; }

.compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%; border-collapse: collapse;
  border: 2px solid var(--c-border-strong);
  border-radius: var(--r-xl); overflow: hidden;
}
.compare-table thead th { background: var(--c-mint-bg); padding: var(--sp-4); vertical-align: top; }
.compare-table__label-col { width: 180px; min-width: 140px; }
.compare-table__product-col { min-width: 200px; }
.compare-table__product-header { display: flex; flex-direction: column; gap: var(--sp-3); align-items: center; text-align: center; }
.compare-table__thumb { width: 100%; max-width: 160px; }
.compare-table__thumb img { width: 100%; height: auto; object-fit: contain; border-radius: var(--r-md); }
.compare-table__brand { font-size: 11px; text-transform: uppercase; letter-spacing: .6px; color: var(--c-ink3); font-weight: 700; }
.compare-table__name { font-size: 14px; font-weight: 700; color: var(--c-ink); text-decoration: none; }
.compare-table__name:hover { color: var(--c-mint-ink); text-decoration: underline; }
.compare-table__score-wrap { display: flex; align-items: center; gap: var(--sp-2); }
.compare-table__score-wrap strong { font-size: 13px; }
.score-badge--sm { width: 44px; height: 44px; font-size: 16px; }
.compare-table__price { font-size: 20px; font-weight: 800; }
.compare-table__actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; justify-content: center; }

.compare-table tbody tr:nth-child(even) { background: var(--c-paper); }
.compare-table tbody tr:hover { background: var(--c-mint-bg); }
.compare-table__row td { padding: 12px var(--sp-4); border-top: 1px solid var(--c-border); font-size: 14px; }
.compare-table__row-label { font-weight: 600; color: var(--c-ink2); }
.compare-table__row-val { text-align: center; }
.compare-table__row-val--empty { color: var(--c-ink4); }

.btn--disabled { opacity: .45; pointer-events: none; }

/* ─── Guides page ────────────────────────────────────────────────── */
.guides-hero { background: var(--c-paper); padding: 36px 0 32px; }
.guides-hero__inner { display: flex; flex-direction: column; gap: var(--sp-4); }
.guides-hero__content {}
.guides-hero__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.03em;
  color: var(--c-ink); margin: 12px 0 10px;
}
.guides-hero__title span { color: var(--c-mint-ink); }
.guides-hero__desc { font-size: 1rem; color: var(--c-ink2); line-height: 1.6; margin: 0; max-width: 680px; }

/* Category pills bar */
.guides-cats {
  background: var(--c-paper);
  border-bottom: 2px solid var(--c-border-strong);
  padding: 14px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.guides-cats__inner {
  display: flex; gap: var(--sp-2); flex-wrap: nowrap;
  white-space: nowrap; align-items: center;
}
.guides-cats .pill { flex-shrink: 0; }
.guides-cats__count {
  display: inline-block;
  background: rgba(0,0,0,.08);
  border-radius: 999px;
  font-size: .65rem;
  padding: 0 6px;
  margin-left: 4px;
  font-weight: 700;
}

/* Grid */
.guides-grid-section { padding: 40px 0 64px; }
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .guides-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .guides-grid { grid-template-columns: 1fr; } }

/* Featured first card spans 2 columns */
.guide-card--featured {
  grid-column: span 2;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
@media (max-width: 1000px) { .guide-card--featured { grid-column: span 2; grid-template-columns: 1fr; } }
@media (max-width: 600px)  { .guide-card--featured { grid-column: span 1; grid-template-columns: 1fr; } }
.guide-card--featured .guide-card__img-wrap,
.guide-card--featured .guide-card__img-placeholder { height: 100%; min-height: 220px; }
.guide-card--featured .guide-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Guide card */
.guide-card {
  background: var(--c-bg);
  border: 2px solid var(--card-border, var(--c-mint-ink));
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 3px 3px 0 var(--card-border, var(--c-mint-ink));
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
  color: inherit;
}
.guide-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--card-border, var(--c-mint-ink));
}
.guide-card__img-wrap { display: block; overflow: hidden; flex-shrink: 0; }
.guide-card__img { width: 100%; height: 180px; object-fit: cover; display: block; }
.guide-card--featured .guide-card__img { height: 100%; }
.guide-card__img-placeholder {
  height: 180px;
  background: var(--card-bg, var(--c-mint-bg));
  flex-shrink: 0;
}
.guide-card__body {
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.guide-card__top {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}
.guide-card__cat {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--card-text, var(--c-mint-ink));
}
.guide-card__time {
  font-size: .68rem;
  color: var(--c-ink3);
  font-weight: 600;
  white-space: nowrap;
}
.guide-card__title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--c-ink);
  margin: 0;
}
.guide-card--featured .guide-card__title { font-size: 1.3rem; }
.guide-card__title a { text-decoration: none; color: inherit; }
.guide-card__title a:hover { color: var(--c-mint-ink); }
.guide-card__excerpt {
  font-size: .875rem;
  line-height: 1.6;
  color: var(--c-ink2);
  margin: 0;
}
.guide-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--c-border-strong);
}
.guide-card__date { font-size: .72rem; color: var(--c-ink3); font-weight: 600; }
.guide-card__cta {
  font-size: .8rem;
  font-weight: 800;
  color: var(--card-text, var(--c-mint-ink));
  text-decoration: none;
}
.guide-card__cta:hover { text-decoration: underline; }

/* Guides quiz CTA */
.guides-quiz-cta {
  background: var(--c-mint-bg);
  border-top: 2px solid var(--c-mint-ink);
  padding: 40px 0;
}
.guides-quiz-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.guides-quiz-cta__label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-mint-ink);
  margin-bottom: 6px;
}
.guides-quiz-cta__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-ink);
  margin: 0 0 6px;
  line-height: 1.2;
}
.guides-quiz-cta__text {
  font-size: .9rem;
  color: var(--c-ink2);
  margin: 0;
  max-width: 420px;
}

/* ─── Responsive — główna warstwa ───────────────────────────────── */

/* Strona główna + stopka — zwijanie gridów (≤ 980px / 600px) */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .how-we-test__grid { grid-template-columns: repeat(2, 1fr); }
  .guides-preview__grid { grid-template-columns: 1fr 1fr; }
  .quiz-cta__inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}
@media (max-width: 760px) {
  .top-picks__grid { grid-template-columns: 1fr; }
  .guides-preview__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .trust-bar__inner { grid-template-columns: 1fr; }
  .how-we-test__grid { grid-template-columns: 1fr; }
  .quiz-cta__questions { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* Tablet (≤ 1080px) */
@media (max-width: 1080px) {
  :root { --pad-x: 28px; }

  /* Product card — stack in 3 columns */
  .product-card__layout {
    grid-template-columns: 56px 200px 1fr 190px;
    gap: var(--sp-4);
  }
  /* responsywne aspect-ratio juz z głównej reguły */
}

/* Tablet narrow (≤ 860px) */
@media (max-width: 860px) {
  :root { --pad-x: 20px; }

  /* Header */
  .site-nav { display: none; }
  .site-search { display: none; }       /* search jest w mobile menu */
  .site-header__actions .js-open-quiz { display: none; } /* quiz w mobile menu */

  /* Logo (lewo) · hamburger (prawo); szukajka ukryta */
  .site-header__inner { gap: 12px; }
  .site-logo { order: 1; margin-right: auto; }
  .site-logo__tagline { display: none; }
  .site-burger { display: flex; order: 2; }
  .site-header__actions { display: none; }
  .site-mob-search { display: none; }

  /* Sortowanie desktop ukryte — mobilny pasek (Filtry / Ocena↓) ma swoje */
  .ranking-toolbar__sort { display: none; }
  .ranking-toolbar__inner { padding-block: var(--sp-3); }

  /* Ranking hero */
  .ranking-hero__content { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }

  /* Section header (tytuł + przycisk) — zwijanie pod sobą */
  .section-header { flex-direction: column; align-items: flex-start; gap: var(--sp-4); }
  .section-header .btn { width: 100%; justify-content: center; }

  /* Product card — pełny stack: rank → zdjęcie → ocena → treść → cena → dane techn. */
  .product-card__layout {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    grid-template-areas: none;
  }
  .product-card__rank-col   { order: 1; }
  .product-card__img-col    { order: 2; display: block; }
  .product-card__body       { order: 3; }
  .product-card__cta-col    { order: 4; }
  /* Rank + Porównaj w rzędzie */
  .product-card__rank-col { flex-direction: row; align-items: center; justify-content: space-between; }

  /* Filter bar — scrollable pills */
  .filter-bar__row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .filter-bar__group { flex-shrink: 0; }

  /* Compare table */
  .compare-table-wrap { overflow-x: auto; }
  .compare-table { min-width: 560px; }

  /* Ranking toolbar */
  .ranking-toolbar__inner { flex-wrap: wrap; gap: var(--sp-3); }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  :root { --pad-x: 16px; }

  /* Header */
  .site-header__inner { gap: var(--sp-3); }
  .site-logo__tagline { display: none; }
  .site-search { display: none; }
  .site-header__actions { gap: var(--sp-2); }

  /* Ranking hero */

  /* Product card — pełny stos (rank → zdjęcie → treść → cena).
     Ocena = scalony badge w nagłówku treści (po prawej od nazwy). */
  .product-card__layout { gap: var(--sp-4); padding: var(--sp-4); }
  .product-card__rank-col { order: 1; }
  .product-card__img-col  { order: 2; display: block; }
  .product-card__body     { order: 3; padding-top: 0; }
  .product-card__cta-col  { order: 4; }
  .product-card__img-wrap { aspect-ratio: 16 / 9; max-height: 240px; }
  .product-card__name { font-size: 22px; }

  /* CTA mobilnie: cena (lewa) + "Recenzja" (prawa) w jednej linii;
     długie przyciski wtórne (Ceneo / Sklep) pełną szerokością pod spodem
     — bez ściskania, etykiety zostają jak są. Oddzielone linią (strefa ceny). */
  .product-card__cta-col {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: var(--sp-2);
    padding-top: var(--sp-4);
    border-top: 2px solid var(--c-border);
  }
  .product-card__price { flex: 1 1 auto; min-width: 0; }
  .product-card__cta-col .btn { justify-content: center; }
  .product-card__cta-col .btn-primary { flex: 0 0 auto; }          /* "Recenzja" obok ceny */
  .product-card__cta-col .btn-secondary { flex: 1 1 100%; width: 100%; }  /* Ceneo / Sklep — własny rząd */

  /* Filter bar */
  .filter-bar { padding: var(--sp-4) 0; }
  .filter-bar__row { gap: var(--sp-2); }
  .filter-bar__group--range { flex: 1 1 100%; }

  /* Guides hero */
  .guides-hero__title { font-size: 1.7rem; }
  .guides-quiz-cta__inner { flex-direction: column; }
  .guides-quiz-cta__inner .btn { width: 100%; justify-content: center; }

  /* Compare table */
  .compare-page { padding-block: var(--sp-8); }

  /* Breadcrumb — wrap gracefully */
  .breadcrumb { white-space: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Review hero */
  .review-hero { grid-template-columns: 1fr; padding: var(--sp-4); }
}

/* Very small (≤ 400px) */
@media (max-width: 400px) {
  .product-card__price-value { font-size: 22px; }
  .quiz-float { right: var(--sp-4); bottom: var(--sp-4); padding: 10px 14px; }
  .quiz-float__cta { font-size: 13px; }
}

/* ─── Brand page ─────────────────────────────────────────────────── */
.brand-page { background: var(--c-paper); }

/* Hero — minimalny, samo "kto" */
.brand-hero { padding: var(--sp-6) 0 var(--sp-8); }
.brand-hero .breadcrumb { margin-bottom: var(--sp-5); }

.brand-hero__compact {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  margin-top: var(--sp-4);
}
.brand-hero__head { flex: 1; min-width: 0; }
.brand-hero__quick-stats {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 10px;
}
.brand-hero__quick-stats .pill { font-size: 13px; padding: 6px 12px; }
.brand-hero__quick-stats strong { font-weight: 800; }

/* Stary grid hero — zachowany dla wstecznej kompatybilności (nieużywany) */
.brand-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-16);
  align-items: start;
  margin-top: var(--sp-6);
}

.brand-hero__mark-row {
  display: flex; align-items: center;
  gap: var(--sp-5); margin-bottom: var(--sp-5);
}
.brand-hero__mark {
  width: 120px; height: 120px; flex-shrink: 0;
  border-radius: var(--r-xl);
  background: var(--c-bg);
  border: 2.5px solid var(--c-mint-ink);
  box-shadow: 5px 5px 0 var(--c-mint-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 42px; font-weight: 800;
  color: var(--c-mint-ink); letter-spacing: -1px;
}
.brand-hero__label {
  font-size: 12px; color: var(--c-mint-ink);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.brand-hero__name {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800; margin: 0; line-height: 1; letter-spacing: -0.5px;
}
.brand-hero__desc {
  font-size: 1.0625rem; color: var(--c-ink2);
  line-height: 1.65; margin: 0 0 var(--sp-6); max-width: 540px;
}

/* stats card */
.brand-hero__stats-wrap { position: relative; }
.brand-hero__stats-card {
  background: var(--c-bg);
  border: 2px solid var(--c-border-strong);
  border-radius: var(--r-2xl);
  padding: 28px;
  box-shadow: 5px 5px 0 var(--c-border-strong);
}
.brand-hero__stats-title {
  font-size: 12px; color: var(--c-mint-ink);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px;
  margin-bottom: var(--sp-4);
}
.brand-hero__stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-3); margin-bottom: var(--sp-4);
}
.brand-stat {
  background: var(--c-mint-bg-soft);
  border: 2px solid var(--c-mint-ink);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
}
.brand-stat__num {
  font-size: 2.2rem; font-weight: 800;
  color: var(--c-mint-ink); line-height: 1.05;
  letter-spacing: -0.5px;
}
.brand-stat__label { font-size: 12px; color: var(--c-ink); margin-top: 6px; font-weight: 700; line-height: 1.3; }
.brand-stat__sub { font-size: 11px; color: var(--c-ink3); margin-top: 3px; line-height: 1.35; }

.brand-hero__verified {
  display: flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  background: var(--c-sky-bg);
  border: 1.5px solid var(--c-sky-ink);
  border-radius: var(--r-lg);
  font-size: 12px; color: var(--c-sky-ink); font-weight: 600; line-height: 1.45;
}
.brand-hero__verified-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-sky-ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
}

/* ── Models list ── */
.brand-models {
  background: var(--c-bg);
  padding: var(--sp-16) 0 var(--sp-24);
  border-top: 2px solid var(--c-border-strong);
}
.brand-models__header {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: var(--sp-4);
  margin-bottom: 28px; flex-wrap: wrap;
}
.brand-models__title {
  font-size: clamp(1.375rem, 3vw, 2.25rem);
  font-weight: 800; margin: 0; line-height: 1.1;
}
.brand-models__title span {
  display: block; color: var(--c-ink3);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700; margin-top: 4px;
}
.brand-models__sort {
  display: flex; gap: 4px; flex-shrink: 0;
  background: var(--c-paper); padding: 4px;
  border-radius: var(--r-pill);
  border: 2px solid var(--c-border-strong);
}
.brand-sort-btn {
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  font-size: 13px; font-weight: 700; cursor: pointer;
  background: transparent; color: var(--c-ink2);
  font-family: var(--ff); transition: background .1s;
}
.brand-sort-btn.is-active {
  background: var(--c-mint); color: var(--c-mint-ink);
  border-color: var(--c-mint-ink);
}

.brand-models__list { display: flex; flex-direction: column; gap: var(--sp-4); }

.brand-model-card {
  background: var(--c-bg);
  border: 2px solid var(--c-border-strong);
  border-radius: 20px; padding: var(--sp-5);
  display: grid;
  grid-template-columns: 60px 180px minmax(0, 1fr) 200px;
  gap: var(--sp-6); align-items: center;
  box-shadow: 3px 3px 0 var(--c-border-strong);
  position: relative;
  transition: transform .12s, box-shadow .12s;
}
.brand-model-card:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--c-border-strong);
}
.brand-model-card--best {
  border-color: var(--c-mint-ink);
  box-shadow: 5px 5px 0 var(--c-mint-ink);
}
.brand-model-card--best:hover {
  box-shadow: 7px 7px 0 var(--c-mint-ink);
}
.brand-model-card__body { min-width: 0; }
.brand-model-card__badge {
  position: absolute; top: -2px; right: 28px;
  background: var(--c-mint); color: var(--c-mint-ink);
  padding: 6px 14px 8px;
  border-radius: 0 0 12px 12px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.6px; text-transform: uppercase;
  border: 2px solid var(--c-mint-ink); border-top: none;
}
.brand-model-card__rank {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: var(--c-bg); border: 2px solid var(--c-mint-ink);
  color: var(--c-mint-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; font-weight: 800;
  box-shadow: 3px 3px 0 var(--c-mint-ink);
  justify-self: center;
}
.brand-model-card__rank--best { background: var(--c-mint); }

.brand-model-card__img {
  border-radius: var(--r-lg);
  border: 2px solid var(--c-border-strong);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-bg);
  padding: 10px;
}
.brand-model-card__img img { width: 100%; height: 100%; object-fit: contain; }
.brand-model-card__img-placeholder {
  width: 100%; height: 100%;
  background: repeating-linear-gradient(135deg, var(--c-paper) 0 6px, var(--c-paper-deep) 6px 12px);
  border-radius: var(--r-md);
}

.brand-model-card__brand {
  font-size: 11px; color: var(--c-mint-ink);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px;
}
.brand-model-card__name {
  font-size: 1.25rem; font-weight: 800;
  margin: var(--sp-1) 0 var(--sp-2); letter-spacing: -0.2px; line-height: 1.2;
}
.brand-model-card__name a { color: var(--c-ink); text-decoration: none; }
.brand-model-card__name a:hover { color: var(--c-mint-ink); }
.brand-model-card__verdict {
  font-size: 14px; color: var(--c-ink2);
  line-height: 1.5; margin: 0 0 var(--sp-2);
}
.brand-model-card__chips {
  display: flex; gap: var(--sp-2); flex-wrap: wrap; align-items: center;
  margin-top: var(--sp-2);
}

.brand-model-card__meta {
  display: flex; flex-direction: column; gap: var(--sp-3); align-items: stretch;
}
.brand-model-card__score-price {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  padding-bottom: var(--sp-3);
  border-bottom: 1.5px dashed var(--c-border-strong);
}
.brand-model-card__score {
  background: var(--c-mint); color: var(--c-mint-ink);
  padding: 6px 14px; border-radius: var(--r-pill);
  font-weight: 800; font-size: 15px;
  border: 2px solid var(--c-mint-ink); flex-shrink: 0;
  box-shadow: 2px 2px 0 var(--c-mint-ink);
}
.brand-model-card__price {
  font-size: 1.2rem; font-weight: 800;
  color: var(--c-ink); white-space: nowrap;
}

/* ── Brand SEO content (pełen opis marki pod produktami) ───────── */
.brand-seo {
  padding: var(--sp-12) 0 var(--sp-8);
  background: var(--c-bg);
}
.brand-seo__inner { max-width: 820px; }
.brand-seo__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--c-ink);
  margin: 0 0 var(--sp-5);
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.brand-seo__content {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-ink2);
}
.brand-seo__content p { margin: 0 0 var(--sp-4); }
.brand-seo__content h2,
.brand-seo__content h3 {
  color: var(--c-ink);
  font-weight: 800;
  margin: var(--sp-6) 0 var(--sp-3);
  line-height: 1.3;
}
.brand-seo__content h2 { font-size: 1.4rem; }
.brand-seo__content h3 { font-size: 1.15rem; }
.brand-seo__content ul,
.brand-seo__content ol { padding-left: 1.5em; margin: 0 0 var(--sp-4); }
.brand-seo__content li { margin-bottom: var(--sp-2); }
.brand-seo__content strong,
.brand-seo__content b { color: var(--c-ink); font-weight: 700; }
.brand-seo__content a {
  color: var(--c-mint-ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.brand-seo__content a:hover { text-decoration: none; }
.brand-seo__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: var(--sp-3) 0;
}
.brand-seo__content blockquote {
  margin: var(--sp-5) 0;
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-mint-bg-soft);
  border-left: 4px solid var(--c-mint);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--c-ink);
}
.brand-seo__content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-4) 0;
}
.brand-seo__content th,
.brand-seo__content td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  text-align: left;
  font-size: 0.95rem;
}
.brand-seo__content th { background: var(--c-paper); font-weight: 700; }

/* ── Brand summary (statystyki + opis pod produktami) ──────────── */
.brand-summary {
  background: var(--c-paper-deep);
  padding: var(--sp-16) 0;
  border-top: 2px solid var(--c-border);
  border-bottom: 2px solid var(--c-border);
}
.brand-summary__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: var(--sp-10);
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .brand-summary__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
}
.brand-summary__about { min-width: 0; }
.brand-summary__title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--c-ink);
  margin: var(--sp-2) 0 var(--sp-4);
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.brand-summary__text {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--c-ink2);
  margin: 0 0 var(--sp-5);
}
.brand-summary__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-6);
  display: flex; flex-direction: column;
  gap: var(--sp-2);
}
.brand-summary__bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.95rem; line-height: 1.45;
  color: var(--c-ink2);
}
.brand-summary__bullets span {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-mint);
  color: var(--c-mint-ink);
  border: 2px solid var(--c-mint-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 11px;
  margin-top: 1px;
}

/* Right column: stats card */
.brand-summary__stats {
  background: var(--c-bg);
  border: 2px solid var(--c-border-strong);
  border-radius: var(--r-2xl);
  padding: var(--sp-5);
  box-shadow: 4px 4px 0 var(--c-border-strong);
}
.brand-summary__stats-title {
  font-size: 12px;
  color: var(--c-mint-ink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: var(--sp-4);
}
.brand-summary__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

/* ── About brand (jasny papierowy panel zamiast ciemnego mint-ink) ── */
.brand-about {
  background: var(--c-paper-deep);
  color: var(--c-ink2);
  padding: var(--sp-16) 0;
  border-top: 2px solid var(--c-border);
  border-bottom: 2px solid var(--c-border);
}
.brand-about__eyebrow {
  font-size: 12px; color: var(--c-mint-ink);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px;
}
.brand-about__title {
  font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 800;
  margin: var(--sp-3) 0 var(--sp-4); color: var(--c-ink); line-height: 1.15;
  letter-spacing: -0.3px;
}
.brand-about__text {
  font-size: 1.05rem; line-height: 1.7;
  margin: 0 0 var(--sp-6); max-width: 680px;
  color: var(--c-ink2);
}

/* ── Related brands ── */
.brand-related__title {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800;
  margin: 0 0 var(--sp-6); line-height: 1.1;
}
.brand-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--sp-4);
}
.brand-related-card {
  background: var(--c-bg);
  border: 2px solid var(--c-border-strong);
  border-radius: 18px; padding: var(--sp-5);
  display: flex; align-items: center; gap: var(--sp-4);
  text-decoration: none; color: var(--c-ink);
  box-shadow: 3px 3px 0 var(--c-border-strong);
  transition: transform .1s, box-shadow .15s;
}
.brand-related-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--c-border-strong);
}
.brand-related-card__mark {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--c-mint-bg);
  border: 2px solid var(--c-mint-ink);
  color: var(--c-mint-ink);
  font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.brand-related-card__name { font-size: 18px; font-weight: 800; }
.brand-related-card__count { font-size: 11px; color: var(--c-ink3); margin-top: 2px; font-weight: 600; }
.brand-related__all { margin-top: 28px; text-align: center; }

/* Brand page responsive */
@media (max-width: 960px) {
  .brand-hero__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .brand-hero__mark { width: 96px; height: 96px; font-size: 34px; }
  .brand-model-card {
    grid-template-columns: 52px 140px minmax(0, 1fr) 180px;
    gap: var(--sp-4);
  }
  .brand-models__header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 760px) {
  .brand-model-card {
    grid-template-columns: 56px 1fr;
    grid-template-areas:
      "rank  body"
      "img   img"
      "meta  meta";
    gap: var(--sp-3);
  }
  .brand-model-card__rank { grid-area: rank; justify-self: center; align-self: center; }
  .brand-model-card__img  { grid-area: img;  height: 160px; margin-block: var(--sp-1); }
  .brand-model-card__body { grid-area: body; }
  .brand-model-card__meta {
    grid-area: meta;
    flex-direction: row; flex-wrap: wrap; align-items: center; gap: var(--sp-2);
  }
  .brand-model-card__score-price { flex: 1; border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
  .brand-related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .brand-hero__mark { width: 72px; height: 72px; font-size: 28px; }
  .brand-hero__name { font-size: 2rem; }
  .brand-model-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "rank"
      "body"
      "img"
      "meta";
  }
  .brand-model-card__rank { justify-self: start; }
  .brand-related__grid { grid-template-columns: 1fr; }
}

/* ─── Mobile bottom-sheet filter ─────────────────────────────────── */

/* Mobile filter trigger row (hidden on desktop) */
.mob-filter-bar { display: none; }

@media (max-width: 860px) {
  /* On mobile: hide desktop filter bar, show mobile trigger row */
  .filter-bar { display: none !important; }
  .mob-filter-bar {
    display: flex;
    padding: 12px 0;
    background: var(--c-bg);
    border-top: 2px solid var(--c-mint-ink);
    border-bottom: 2px solid var(--c-mint-ink);
    position: sticky; top: 62px; z-index: 90;
  }
  .mob-filter-bar__inner {
    display: flex; gap: 10px; width: 100%;
  }
  /* Chunky pill buttons — wg projektu mobilnego */
  .mob-filter-btn {
    flex: 1; display: flex; align-items: center; justify-content: center;
    gap: 8px; padding: 12px 14px;
    border-radius: 999px; border: 2px solid var(--c-mint-ink);
    background: var(--c-mint); color: var(--c-mint-ink);
    font-family: var(--ff); font-size: 14px; font-weight: 800; cursor: pointer;
    box-shadow: 3px 3px 0 var(--c-mint-ink);
    line-height: 1;
  }
  .mob-filter-btn:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--c-mint-ink); }
  /* Sort = wariant jasny */
  .mob-filter-btn--sort {
    background: var(--c-bg); color: var(--c-ink);
    border-color: var(--c-border-strong);
    box-shadow: 3px 3px 0 var(--c-border-strong);
  }
  .mob-filter-btn--sort:active { box-shadow: 2px 2px 0 var(--c-border-strong); }
  /* Badge liczby filtrów — mintInk z białą cyfrą */
  .mob-filter-badge {
    background: var(--c-mint-ink);
    color: #fff;
    padding: 0 7px; min-width: 18px; height: 18px;
    border-radius: 999px;
    font-size: 11px; font-weight: 800;
    display: inline-flex; align-items: center; justify-content: center;
  }
}

/* Bottom sheet overlay */
.mob-sheet {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: flex-end;
  pointer-events: none; visibility: hidden;
}
.mob-sheet.is-open {
  pointer-events: auto; visibility: visible;
}
.mob-sheet__scrim {
  position: absolute; inset: 0;
  background: rgba(15,30,35,.45);
  opacity: 0; transition: opacity .25s;
}
.mob-sheet.is-open .mob-sheet__scrim { opacity: 1; }

.mob-sheet__panel {
  position: relative; z-index: 1; width: 100%;
  background: var(--c-bg);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -10px 40px rgba(0,0,0,.2);
  display: flex; flex-direction: column;
  max-height: 90vh;
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.32,0,.67,0);
}
.mob-sheet.is-open .mob-sheet__panel {
  transform: translateY(0);
  transition: transform .3s cubic-bezier(.33,1,.68,1);
}

.mob-sheet__drag {
  padding: 12px 0 2px;
  display: flex; justify-content: center; cursor: grab;
}
.mob-sheet__drag::before {
  content: '';
  width: 44px; height: 4px;
  border-radius: 2px; background: var(--c-border-strong);
}

.mob-sheet__header {
  padding: 4px var(--sp-5) var(--sp-4);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.mob-sheet__title { font-size: 1.25rem; font-weight: 800; }
.mob-sheet__clear {
  background: none; border: none; cursor: pointer;
  font-family: var(--ff); font-size: 13px;
  color: var(--c-mint-ink); font-weight: 700;
  text-decoration: underline; text-underline-offset: 3px;
}

.mob-sheet__body {
  padding: 0 var(--sp-5) var(--sp-4);
  overflow-y: auto; flex: 1;
  -webkit-overflow-scrolling: touch;
}

.mob-sheet__group { margin-bottom: var(--sp-6); }
.mob-sheet__group-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: var(--sp-3);
  font-size: 14px; font-weight: 700;
}
.mob-sheet__group-val {
  font-size: 13px; color: var(--c-ink2); font-weight: 400;
}

/* Range slider in sheet */
.mob-sheet__range-wrap {
  position: relative; height: 4px;
  background: var(--c-paper-deep); border-radius: 2px; margin-top: var(--sp-5);
}
.mob-sheet__range {
  position: absolute; inset: 0;
  width: 100%; margin: 0;
  -webkit-appearance: none; appearance: none;
  background: transparent; cursor: pointer;
  height: 24px; top: -10px;
}
.mob-sheet__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 2.5px solid var(--c-mint-ink);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.mob-sheet__range::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 2.5px solid var(--c-mint-ink);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.mob-sheet__range-fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  background: var(--c-mint-ink); border-radius: 2px;
  pointer-events: none;
}

/* Price inputs */
.mob-sheet__price-pair {
  display: flex; gap: var(--sp-2); align-items: center;
}
.mob-sheet__price-input {
  flex: 1; padding: var(--sp-3) var(--sp-3);
  background: var(--c-paper); border: 1.5px solid var(--c-border-strong);
  border-radius: var(--r-md);
  font-family: var(--ff); font-size: 14px; font-weight: 500;
  color: var(--c-ink); outline: none;
}
.mob-sheet__price-input:focus { border-color: var(--c-mint-ink); }
.mob-sheet__price-dash { color: var(--c-ink3); font-weight: 600; }

/* Brand checkbox list */
.mob-sheet__brand-list { display: flex; flex-direction: column; }
.mob-sheet__brand-item {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
  cursor: pointer; user-select: none;
}
.mob-sheet__brand-check {
  width: 22px; height: 22px; border-radius: 5px; flex-shrink: 0;
  background: var(--c-bg); border: 1.5px solid var(--c-border-strong);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: background .1s, border-color .1s;
}
.mob-sheet__brand-item.is-checked .mob-sheet__brand-check {
  background: var(--c-mint-ink); border-color: var(--c-mint-ink);
}
.mob-sheet__brand-name { flex: 1; font-size: 14px; }
.mob-sheet__brand-item.is-checked .mob-sheet__brand-name { font-weight: 600; }
.mob-sheet__brand-count { font-size: 12px; color: var(--c-ink3); }

/* Apply CTA footer */
.mob-sheet__footer {
  padding: var(--sp-4) var(--sp-5) var(--sp-8);
  border-top: 1px solid var(--c-border);
  background: var(--c-bg); flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   HUB PAGES — nawilżacze + klimatyzatory
   ═══════════════════════════════════════════════════════════════════ */

/* Sky pill variant */
.pill-sky {
  background: var(--c-sky-bg);
  color: var(--c-sky-ink);
  border-color: transparent;
}

/* ── Coming-soon banner ────────────────────────────────────────────── */
.hub-coming {
  background: var(--c-paper);
  border-top: 2px solid var(--c-border);
  border-bottom: 2px solid var(--c-border);
  padding: var(--sp-16) 0;
}
.hub-coming__inner {
  max-width: 560px; margin: 0 auto;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--sp-5);
}
.hub-coming__icon {
  width: 80px; height: 80px;
  background: var(--c-sky-bg);
  border: 2px solid var(--c-border-strong);
  border-radius: var(--r-2xl);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-sky-ink);
  box-shadow: 3px 3px 0 var(--c-border-strong);
}
.hub-coming__eyebrow {
  font-size: .68rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-sky-ink);
}
.hub-coming__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800; color: var(--c-ink);
  margin: 0;
}
.hub-coming__text {
  font-size: .95rem; color: var(--c-ink2); line-height: 1.7;
  margin: 0;
}

/* ── Types grid (3 cards) ──────────────────────────────────────────── */
.hub-types { background: var(--c-bg); }
.hub-types__title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800; color: var(--c-ink);
  margin: 0 0 var(--sp-2);
}
.hub-types__sub {
  font-size: .9rem; color: var(--c-ink3);
  margin: 0 0 var(--sp-8);
}
.hub-types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 700px) {
  .hub-types__grid { grid-template-columns: 1fr; }
}

.hub-type-card {
  background: var(--c-bg);
  border: 2px solid var(--c-border-strong);
  border-radius: var(--r-2xl);
  padding: var(--sp-6);
  box-shadow: 3px 3px 0 var(--c-border-strong);
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.hub-type-card__icon {
  width: 52px; height: 52px;
  background: var(--c-mint-bg);
  border: 1.5px solid var(--c-border-strong);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-mint-ink);
  flex-shrink: 0;
}
.hub-type-card__name {
  font-size: 1rem; font-weight: 800; color: var(--c-ink);
  margin: 0;
}
.hub-type-card__desc {
  font-size: .875rem; color: var(--c-ink2); line-height: 1.65;
  margin: 0; flex: 1;
}
.hub-type-card__tags { display: flex; gap: var(--sp-2); flex-wrap: wrap; }

/* ── Why / stats section ───────────────────────────────────────────── */
.hub-why {
  background: var(--c-mint-ink);
  color: #fff;
  padding: var(--sp-16) 0;
}
.hub-why__inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--sp-12);
  align-items: start;
}
@media (max-width: 760px) {
  .hub-why__inner { grid-template-columns: 1fr; }
}
.hub-why__eyebrow {
  font-size: .68rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: var(--sp-2);
}
.hub-why__title {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 800; color: #fff;
  margin: 0 0 var(--sp-4);
  line-height: 1.2;
}
.hub-why__lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #fff;
  margin: 0 0 var(--sp-5);
  opacity: 0.95;
}
.hub-why__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.hub-why__list li {
  font-size: .98rem;
  color: #fff;
  line-height: 1.6;
  padding-left: var(--sp-5);
  position: relative;
  opacity: 0.95;
}
.hub-why__list li strong {
  color: #fff;
  font-weight: 800;
}
.hub-why__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-mint);
  font-weight: 800;
}
.hub-why__cta {
  display: flex; flex-direction: column; gap: var(--sp-5);
}
.hub-why__stat {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--r-2xl);
  padding: var(--sp-5) var(--sp-6);
}
.hub-why__stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--c-mint);
  line-height: 1.05;
  letter-spacing: -0.5px;
  font-family: var(--ff-accent, var(--ff));
}
.hub-why__stat-label {
  font-size: .88rem;
  color: #fff;
  margin-top: var(--sp-2);
  opacity: 0.9;
  line-height: 1.35;
}
.hub-why__eyebrow {
  font-size: .68rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-mint);
  margin-bottom: var(--sp-2);
}

/* ── Guides strip ──────────────────────────────────────────────────── */
.hub-guides { background: var(--c-paper); }
.hub-guides__title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800; color: var(--c-ink);
  margin: 0 0 var(--sp-8);
}
.hub-guides__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 700px) {
  .hub-guides__grid { grid-template-columns: 1fr; }
}

.hub-guide-card {
  display: flex; flex-direction: column;
  background: var(--c-bg);
  border: 2px solid var(--c-border-strong);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--c-border-strong);
  text-decoration: none; color: inherit;
  transition: transform .15s, box-shadow .15s;
}
.hub-guide-card:hover {
  transform: translate(-2px,-2px);
  box-shadow: 5px 5px 0 var(--c-border-strong);
}
.hub-guide-card__img { overflow: hidden; height: 160px; flex-shrink: 0; }
.hub-guide-card__img img { width: 100%; height: 100%; object-fit: cover; }
.hub-guide-card__body { padding: var(--sp-5); flex: 1; display: flex; flex-direction: column; gap: var(--sp-2); }
.hub-guide-card__eyebrow {
  font-size: .65rem; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--c-mint-ink);
}
.hub-guide-card__title {
  font-size: .95rem; font-weight: 800; color: var(--c-ink);
  line-height: 1.35; margin: 0;
}
.hub-guide-card__desc {
  font-size: .82rem; color: var(--c-ink3); line-height: 1.55; margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   PAGE: MARKI OCZYSZCZACZY
   ═══════════════════════════════════════════════════════════════════ */

.marki-section { background: var(--c-bg); }

.marki-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-4);
}

.marki-card {
  display: flex; align-items: center; gap: var(--sp-4);
  background: var(--c-bg);
  border: 2px solid var(--c-border-strong);
  border-radius: var(--r-2xl);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: 3px 3px 0 var(--c-border-strong);
  text-decoration: none; color: inherit;
  transition: transform .15s, box-shadow .15s;
}
.marki-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--c-mint-ink);
  border-color: var(--c-mint-ink);
}
.marki-card__mark {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--c-mint-bg);
  border: 2px solid var(--c-border-strong);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; color: var(--c-mint-ink);
  box-shadow: 2px 2px 0 var(--c-border-strong);
}
.marki-card:hover .marki-card__mark {
  background: var(--c-mint-ink); color: #fff; border-color: var(--c-mint-ink);
}
.marki-card__body { flex: 1; min-width: 0; }
.marki-card__name {
  font-size: .95rem; font-weight: 800; color: var(--c-ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.marki-card__count { font-size: .78rem; color: var(--c-ink3); margin-top: 2px; }
.marki-card__arrow { color: var(--c-ink4); flex-shrink: 0; transition: color .15s, transform .15s; }
.marki-card:hover .marki-card__arrow { color: var(--c-mint-ink); transform: translateX(2px); }

.marki-cta { text-align: center; margin-top: var(--sp-12); }

/* ═══════════════════════════════════════════════════════════════════
   PAGE: RECENZJE OCZYSZCZACZY
   ═══════════════════════════════════════════════════════════════════ */

.recenzje-section { background: var(--c-bg); }

.recenzje-list {
  display: flex; flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
}

.recenzja-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px 180px 1fr 200px;
  gap: var(--sp-5);
  align-items: center;
  background: var(--c-bg);
  border: 2px solid var(--c-border-strong);
  border-radius: var(--r-2xl);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: 3px 3px 0 var(--c-border-strong);
  overflow: hidden;
  transition: box-shadow .15s, transform .15s;
}
.recenzja-card:hover {
  transform: translate(-1px,-1px);
  box-shadow: 4px 4px 0 var(--c-border-strong);
}
.recenzja-card--top {
  border-color: var(--c-mint-ink);
  box-shadow: 4px 4px 0 var(--c-mint-ink);
}
.recenzja-card--top:hover { box-shadow: 6px 6px 0 var(--c-mint-ink); }

.recenzja-card__ribbon {
  position: absolute; top: 12px; right: -22px;
  background: var(--c-mint-ink); color: #fff;
  font-size: .6rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 28px;
  transform: rotate(35deg);
}

.recenzja-card__rank {
  font-size: 1.1rem; font-weight: 800; color: var(--c-ink3);
  text-align: center; line-height: 1;
}
.recenzja-card__rank--gold { color: var(--c-mint-ink); }

.recenzja-card__img {
  height: 120px; border-radius: var(--r-xl); overflow: hidden;
  background: var(--c-paper-deep);
  display: flex; align-items: center; justify-content: center;
}
.recenzja-card__img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.recenzja-card__img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--c-paper) 0%, var(--c-paper-deep) 100%);
}

.recenzja-card__body { min-width: 0; }
.recenzja-card__brand {
  font-size: .68rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--c-mint-ink); margin-bottom: var(--sp-1);
}
.recenzja-card__title {
  font-size: 1rem; font-weight: 800; margin: 0 0 var(--sp-2);
}
.recenzja-card__title a { color: var(--c-ink); text-decoration: none; }
.recenzja-card__title a:hover { color: var(--c-mint-ink); }
.recenzja-card__excerpt {
  font-size: .82rem; color: var(--c-ink2); line-height: 1.55;
  margin: 0 0 var(--sp-3);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.recenzja-card__chips { display: flex; gap: var(--sp-2); flex-wrap: wrap; }

.recenzja-card__meta {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: var(--sp-3);
}
.recenzja-card__score-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-1); }
.recenzja-card__score-label {
  font-size: .72rem; font-weight: 700; color: var(--c-ink3);
  text-transform: uppercase; letter-spacing: .04em;
}
.recenzja-card__price {
  font-size: 1rem; font-weight: 800; color: var(--c-ink);
}

/* Mobile layout for recenzja-card */
@media (max-width: 860px) {
  .recenzja-card {
    grid-template-columns: 44px 1fr;
    grid-template-areas:
      "rank  body"
      "img   img"
      "meta  meta";
    gap: var(--sp-4);
  }
  .recenzja-card__rank { grid-area: rank; align-self: start; }
  .recenzja-card__img  { grid-area: img; height: 140px; }
  .recenzja-card__body { grid-area: body; }
  .recenzja-card__meta {
    grid-area: meta;
    flex-direction: row; align-items: center; flex-wrap: wrap;
    gap: var(--sp-2);
  }
  .recenzja-card__score-wrap { flex-direction: row; align-items: center; }
}
@media (max-width: 480px) {
  .recenzja-card { padding: var(--sp-4); }
  .marki-grid { grid-template-columns: 1fr; }
}

/* ── Page wrappers (background colour) ─────────────────────────────── */
.hub-page     { background: var(--c-bg); }
.marki-page   { background: var(--c-bg); }
.recenzje-page { background: var(--c-bg); }

/* ── Hub-why: grid children ─────────────────────────────────────────── */
.hub-why__content { min-width: 0; }

/* ── Brand hero: left column ─────────────────────────────────────────── */
.brand-hero__id { min-width: 0; }

/* ── Brand about: inner wrapper / content ───────────────────────────── */
.brand-about__inner  { max-width: 760px; }
.brand-about__content { /* flex-direction: column layout from parent */ }

/* ─── Nagłówek: responsywne zwijanie — nigdy poziomego paska ──────────
   Pełne menu (logo + podtytuł + nawigacja + szukajka + „Zrób quiz") jest
   szerokie (~1360px). Żeby nie wychodziło poza ekran na laptopach:
   1) na średnich ekranach chowamy długi podtytuł i ścieśniamy nawigację,
   2) poniżej 1200px zwijamy wszystko do hamburgera (menu mobilne ma szukajkę i quiz).
   overflow-x: clip na <html> to twarda gwarancja braku poziomego przewijania,
   niezależnie od szerokości okna i ewentualnych elementów dekoracyjnych. */
html { overflow-x: clip; }

@media (max-width: 1500px) {
  .site-logo__tagline { display: none; }
  .site-nav { margin-left: var(--sp-3); gap: 0; }
  .site-nav__link { padding-left: 11px; padding-right: 11px; }
  .site-search { width: 160px; }
}

@media (max-width: 1200px) {
  .site-nav,
  .site-search,
  .site-header__actions,
  .site-mob-search { display: none; }
  .site-header__inner { gap: 12px; }
  .site-logo { order: 1; margin-right: auto; }
  .site-burger { display: flex; order: 2; }
}
