/* =========================================================================
   WolfBrothers — arkusz stylów
   Mobile-first. Wszystkie odstępy/typografia skalują się płynnie (clamp).
   Punkty łamania: 600px (duży telefon), 900px (tablet), 1100px (desktop)
   ========================================================================= */

/* ---------- 1. Zmienne motywu ---------- */
:root {
  --bg: #0b0b0c;
  --fg: #f2f2f0;
  --txt: #b8b8b2;
  --txt-dim: #a9a9a3;
  --label: #8b8b85;
  --nav: #cfcfca;
  --accent: #fec721;
  --accent-hi: #ffdd6b;

  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.09);
  --line-btn: rgba(255, 255, 255, 0.18);
  --card: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
  --panel: rgba(255, 255, 255, 0.035);

  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: Manrope, "Segoe UI", system-ui, -apple-system, sans-serif;

  --gutter: clamp(18px, 5vw, 40px);
  --section-y: clamp(64px, 9vw, 110px);
  --radius: 24px;
  --header-h: 68px;
}

/* ---------- 2. Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* offset dla kotwic, żeby sticky header nie zasłaniał nagłówka sekcji */
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; border: 0; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hi); }

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

::selection { background: var(--accent); color: var(--bg); }

/* Widoczny focus dla nawigacji klawiaturą */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- 3. Elementy pomocnicze ---------- */
.container { width: 100%; max-width: 1180px; margin: 0 auto; }
.container--narrow { max-width: 900px; }

.section {
  padding: var(--section-y) var(--gutter);
  border-bottom: 1px solid var(--line);
}
.section--flush { border-bottom: 0; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--label);
}
.label--accent { color: var(--accent); margin-bottom: 8px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 8px; top: -60px;
  z-index: 200;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 8px; color: var(--bg); }

/* Przyciski */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
  /* wygodny cel dotykowy na mobile */
  min-height: 44px;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--accent); color: var(--bg); }
.btn--primary:hover { background: var(--accent-hi); color: var(--bg); }

.btn--ghost {
  background: transparent;
  border: 1px solid var(--line-btn);
  color: var(--fg);
  font-weight: 600;
}
.btn--ghost:hover { border-color: var(--accent); color: var(--fg); }

.btn--sm { padding: 11px 22px; font-size: 14px; }

@keyframes wbFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* ---------- 4. Nagłówek strony + nawigacja ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--gutter);
  min-height: var(--header-h);
  background: rgba(11, 11, 12, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header__logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Hamburger — widoczny tylko na mobile */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-btn);
  border-radius: 12px;
  background: transparent;
  color: var(--fg);
  cursor: pointer;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.18s ease;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

/* Menu — na mobile rozwijany panel pod headerem */
.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px var(--gutter) 20px;
  /* pełne krycie — treść strony nie może prześwitywać przez otwarte menu */
  background: #0b0b0c;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.site-nav.is-open { display: flex; animation: wbFade 0.22s ease both; }

.site-nav a {
  color: var(--nav);
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}
.site-nav a:last-child { border-bottom: 0; }
.site-nav a:hover { color: var(--accent); }
.site-nav .btn {
  margin-top: 10px;
  align-self: flex-start;
  border-bottom: 0;
  color: var(--bg);
}
.site-nav .btn:hover { color: var(--bg); }

@media (min-width: 900px) {
  .site-header { padding: 18px var(--gutter); }
  .site-header__logo img { height: 38px; }
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 34px;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    font-size: 14px;
  }
  .site-nav a { padding: 0; border-bottom: 0; }
  .site-nav .btn { margin: 0; align-self: auto; }
}

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  padding: clamp(56px, 10vw, 140px) var(--gutter) clamp(56px, 9vw, 120px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  /* lekka wersja tła dla telefonów (60 kB), pełna dopiero od 700px */
  background-image: url("../img/hero-mobile.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  pointer-events: none;
}
@media (min-width: 700px) {
  .hero__bg { background-image: url("../img/hero.jpg"); }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 520px at 78% 12%, rgba(254, 199, 33, 0.13), transparent 62%),
    linear-gradient(90deg, rgba(11, 11, 12, 0.85) 0%, rgba(11, 11, 12, 0.55) 55%, rgba(11, 11, 12, 0.7) 100%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 6vw, 70px);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.15fr 0.85fr; }
}

.hero__copy { animation: wbFade 0.7s ease both; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(254, 199, 33, 0.35);
  border-radius: 999px;
  font-size: clamp(11px, 2.6vw, 12px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: clamp(20px, 4vw, 32px);
}

.hero h1 {
  font-weight: 700;
  font-size: clamp(34px, 8vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 clamp(18px, 3vw, 26px);
}
.hero h1 .accent { color: var(--accent); }

.hero__lead {
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.65;
  color: var(--txt-dim);
  max-width: 540px;
  margin: 0 0 clamp(24px, 4vw, 32px);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 clamp(28px, 5vw, 40px);
  padding: 0;
  list-style: none;
}
.tags li {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  color: #d8d8d2;
}

.hero__figure {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: var(--card);
  animation: wbFade 0.7s 0.12s ease both;
}
.hero__figure img {
  width: 100%;
  max-width: 330px;
  filter: brightness(0) invert(1);
}
/* na małych ekranach obraz obok tekstu tylko zabiera miejsce — chowamy */
@media (max-width: 599px) {
  .hero__figure { display: none; }
}

/* ---------- 6. Ozdobny separator ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 22px);
  padding: clamp(34px, 6vw, 52px) var(--gutter);
}
.divider span:first-child,
.divider span:last-child { flex: 1; max-width: 380px; height: 1px; }
.divider span:first-child { background: linear-gradient(90deg, transparent, rgba(254, 199, 33, 0.55)); }
.divider span:last-child { background: linear-gradient(270deg, transparent, rgba(254, 199, 33, 0.55)); }
.divider .dot { width: 7px; height: 7px; transform: rotate(45deg); background: var(--accent); opacity: 0.55; }
.divider .dot--big { width: 11px; height: 11px; opacity: 1; }

/* ---------- 7. O nas ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
@media (min-width: 900px) {
  .about__grid { grid-template-columns: 0.75fr 1.25fr; }
}
.about h2 { font-size: clamp(28px, 6vw, 48px); margin: 0 0 28px; }
.about__mark { width: clamp(160px, 40vw, 230px); opacity: 0.9; filter: brightness(0) invert(1); }

.about__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.75;
  color: var(--txt);
  max-width: 660px;
}
.about__text strong { color: var(--fg); font-weight: 600; }

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ---------- 8. Nasze sklepy ---------- */
.shops h2 { font-size: clamp(28px, 6vw, 48px); margin: 0 0 clamp(32px, 5vw, 52px); }
.shops__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 28px);
}
@media (min-width: 800px) {
  .shops__grid { grid-template-columns: repeat(2, 1fr); }
}
.shop-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--card);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.shop-card:hover { border-color: rgba(254, 199, 33, 0.35); transform: translateY(-2px); }
.shop-card__logo {
  height: 64px;
  display: flex;
  align-items: center;
}
.shop-card__logo img {
  max-height: 64px;
  width: auto;
  filter: invert(1);
}
.shop-card h3 { font-size: clamp(22px, 4vw, 26px); letter-spacing: -0.02em; }
.shop-card p { font-size: clamp(15px, 2vw, 17px); line-height: 1.7; color: var(--txt-dim); }

/* ---------- 9. Kontakt ---------- */
.contact { background: radial-gradient(900px 460px at 20% 0%, rgba(254, 199, 33, 0.1), transparent 60%); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 70px);
}
@media (min-width: 900px) {
  .contact__grid { grid-template-columns: 1fr 1fr; }
}
.contact h2 { font-size: clamp(28px, 6vw, 48px); margin: 0 0 30px; }

.contact__mail {
  display: inline-block;
  font-family: var(--font-display);
  /* na wąskich ekranach adres musi się zmieścić */
  font-size: clamp(17px, 5.2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  border-bottom: 2px solid rgba(254, 199, 33, 0.45);
  padding-bottom: 4px;
  word-break: break-word;
}

.people {
  margin-top: clamp(28px, 5vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 22px;
}
.person { display: flex; flex-direction: column; gap: 6px; }
.person a { font-size: clamp(17px, 2.4vw, 19px); color: var(--fg); font-weight: 600; }
.person a:hover { color: var(--accent); }

.company-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.company-card__name {
  font-family: var(--font-display);
  font-size: clamp(19px, 3vw, 22px);
  font-weight: 700;
}
.company-card address {
  font-style: normal;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  color: var(--txt-dim);
}
.reg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}
.reg-grid div { display: flex; flex-direction: column; gap: 4px; }
.reg-grid span:last-child { font-size: clamp(15px, 2vw, 17px); word-break: break-word; }

/* ---------- 10. Stopka ---------- */
.site-footer {
  padding: clamp(28px, 5vw, 40px) var(--gutter);
  border-top: 1px solid var(--line);
}
.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.site-footer img { height: 28px; width: auto; opacity: 0.75; filter: brightness(0) invert(1); }
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  font-size: 14px;
  color: var(--label);
}
.site-footer__links a { color: var(--label); }
.site-footer__links a:hover { color: var(--accent); }
.site-footer__links button {
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: var(--label);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer__links button:hover { color: var(--accent); }

@media (min-width: 800px) {
  .site-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }
  .site-footer img { height: 30px; }
}

/* ---------- 11. Podstrona: Polityka Prywatności ---------- */
.page-hero {
  padding: clamp(48px, 8vw, 100px) var(--gutter) clamp(36px, 5vw, 60px);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(900px 420px at 20% 0%, rgba(254, 199, 33, 0.1), transparent 62%);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--label); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb [aria-current] { color: var(--accent); }
.page-hero h1 {
  font-weight: 700;
  font-size: clamp(30px, 7vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.prose h2 {
  font-size: clamp(22px, 5vw, 34px);
  letter-spacing: -0.02em;
  margin: 0 0 26px;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 3.4vw, 21px);
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--accent);
}
.prose p,
.prose li {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.8;
  color: var(--txt);
}
.prose > p { margin: 0 0 30px; }
.prose strong { color: var(--fg); font-weight: 600; }
.prose ol,
.prose ul {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.prose ol ul,
.prose ol ol {
  margin: 12px 0 0;
  gap: 8px;
}
.prose li p { margin: 12px 0 0; }
.prose li::marker { color: var(--accent); }
.prose .stack-gap { margin-bottom: clamp(32px, 6vw, 48px); }

.info-card {
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}
.info-card address {
  font-style: normal;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  color: var(--txt-dim);
}
.info-card__reg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
}
.info-card__reg div { display: flex; flex-direction: column; gap: 4px; }
.info-card__reg span:last-child { font-size: clamp(15px, 2vw, 17px); word-break: break-word; }
.info-card__mail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
}
.info-card__mail a {
  font-size: clamp(16px, 3vw, 19px);
  font-weight: 600;
  word-break: break-word;
}

/* ---------- 12. Baner zgody na cookies ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: none;
  padding: clamp(18px, 4vw, 26px) var(--gutter);
  background: rgba(16, 16, 18, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(254, 199, 33, 0.28);
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.55);
  /* zapas na pasek gestów w iOS */
  padding-bottom: calc(clamp(18px, 4vw, 26px) + env(safe-area-inset-bottom, 0px));
}
.cookie-banner.is-visible { display: block; animation: wbFade 0.3s ease both; }

.cookie-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-banner__text { font-size: 14px; line-height: 1.7; color: var(--txt); }
.cookie-banner__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}
/* Na telefonie: „Akceptuję wszystkie” pełną szerokość, dwa pozostałe w jednym rzędzie
   — baner zajmuje wtedy wyraźnie mniej ekranu. */
.cookie-banner__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cookie-banner__actions .btn:first-child { grid-column: 1 / -1; }
.cookie-banner__actions .btn { padding: 13px 14px; font-size: 14px; }

@media (min-width: 600px) {
  .cookie-banner__actions { display: flex; flex-wrap: wrap; }
  .cookie-banner__actions .btn { flex: 0 0 auto; padding: 14px 26px; font-size: 15px; }
}
@media (min-width: 1000px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .cookie-banner__actions { flex-wrap: nowrap; flex-shrink: 0; }
}

/* Okno ustawień cookies */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  background: rgba(0, 0, 0, 0.72);
}
.cookie-modal.is-visible { display: flex; }

.cookie-modal__box {
  width: 100%;
  max-width: 640px;
  max-height: min(86vh, 760px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #131315;
  animation: wbFade 0.25s ease both;
}
.cookie-modal__box h2 {
  font-size: clamp(20px, 4vw, 26px);
  margin-bottom: 12px;
}
.cookie-modal__intro {
  font-size: 14px;
  line-height: 1.7;
  color: var(--txt);
  margin-bottom: 22px;
}

.cookie-opt {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line-strong);
}
.cookie-opt__body { flex: 1; }
.cookie-opt__title {
  display: block;
  font-weight: 700;
  color: var(--fg);
  font-size: 15px;
  margin-bottom: 4px;
}
.cookie-opt__desc { font-size: 13px; line-height: 1.6; color: var(--txt-dim); }
.cookie-opt__req { font-size: 12px; color: var(--accent); white-space: nowrap; }

/* przełącznik */
.switch {
  position: relative;
  flex-shrink: 0;
  width: 46px;
  height: 26px;
  margin-top: 2px;
}
.switch input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.switch__track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transition: background-color 0.2s ease;
  pointer-events: none;
}
.switch__track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}
.switch input:checked + .switch__track { background: var(--accent); }
.switch input:checked + .switch__track::after { transform: translateX(20px); }
.switch input:focus-visible + .switch__track { outline: 2px solid var(--accent); outline-offset: 3px; }
.switch input:disabled { cursor: not-allowed; }
.switch input:disabled + .switch__track { opacity: 0.55; }

.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
}
.cookie-modal__actions .btn { flex: 1 1 100%; }
@media (min-width: 560px) {
  .cookie-modal__actions .btn { flex: 1 1 auto; }
}

/* blokada scrolla tła gdy modal otwarty */
body.has-modal { overflow: hidden; }
