/* =====================================================================
   PANNA & PARA — style sklepu
   Paleta: blush / róż pudrowy + złoto + kość słoniowa + głęboka czerń
   ===================================================================== */

:root {
  --ivory:      #fbf7f3;   /* tło główne, kość słoniowa */
  --cream:      #f3e9e1;   /* sekcje alt */
  --blush:      #f7d9d2;   /* róż pudrowy jasny */
  --rose:       #e9a8a1;   /* róż */
  --rose-deep:  #c8736d;   /* róż mocniejszy (akcent) */
  --gold:       #c9a24b;   /* złoto */
  --gold-light: #e6cd8f;
  --noir:       #20191c;   /* prawie-czerń, ciepła */
  --noir-soft:  #3a2f33;
  --ink:        #2b2226;   /* tekst */
  --muted:      #8a7a7f;   /* tekst drugorzędny */
  --line:       #ece0d8;   /* delikatne linie */
  --white:      #ffffff;

  --grad-gold:  linear-gradient(135deg, #e6cd8f 0%, #c9a24b 55%, #a87f2f 100%);
  --grad-rose:  linear-gradient(135deg, #f7d9d2 0%, #e9a8a1 60%, #c8736d 100%);
  --grad-noir:  linear-gradient(135deg, #3a2f33 0%, #20191c 100%);
  --grad-sage:  linear-gradient(135deg, #cdd9c8 0%, #9fb39a 100%);
  --grad-blush: linear-gradient(135deg, #fce7e2 0%, #f7d9d2 60%, #efc3bb 100%);

  /* Lżejsze, "papierowe" cienie — styl editorial/premium */
  --shadow-sm:  0 2px 12px rgba(43, 34, 38, .05);
  --shadow-md:  0 6px 24px rgba(43, 34, 38, .08);
  --shadow-lg:  0 16px 48px rgba(43, 34, 38, .13);

  --radius:     18px;
  --radius-sm:  12px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Montserrat", system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
}

/* ===== WARIANTY GRAFICZNE (motywy) =====
   Przełączane przez data-theme na <html>. Zmieniają tylko paletę i gradienty,
   więc cały layout zostaje, a sklep dostaje nowy charakter. */

/* BOHO — terakota, piasek, szałwia, ciepły brąz */
html[data-theme="boho"] {
  --ivory:#f7f0e6; --cream:#efe3d3; --blush:#f0ddc9; --rose:#cf9b7d;
  --rose-deep:#b06b4e; --gold:#b3895a; --gold-light:#d8b388;
  --noir:#3f322a; --noir-soft:#574639; --ink:#3b3027; --muted:#9a8674;
  --line:#e6d6c2; --sage:#9fb39a;
  --grad-gold:linear-gradient(135deg,#d8b388 0%,#b3895a 55%,#8c6a42 100%);
  --grad-rose:linear-gradient(135deg,#f0ddc9 0%,#cf9b7d 60%,#b06b4e 100%);
  --grad-noir:linear-gradient(135deg,#574639 0%,#3f322a 100%);
  --grad-blush:linear-gradient(135deg,#f7ecdd 0%,#f0ddc9 60%,#e6c9a8 100%);
  --grad-sage:linear-gradient(135deg,#d4d8c4 0%,#a7b196 100%);
}

/* BIAŁY KWIATOWY — biel, blush, szałwiowa zieleń, lekko i romantycznie */
html[data-theme="kwiatowy"] {
  --ivory:#ffffff; --cream:#f5f7f2; --blush:#fbe6ea; --rose:#e7b7c0;
  --rose-deep:#cf8a99; --gold:#9bb088; --gold-light:#c2d2b3;
  --noir:#46504a; --noir-soft:#5d6960; --ink:#3f4742; --muted:#92998f;
  --line:#eef0ea; --sage:#9bb088;
  --grad-gold:linear-gradient(135deg,#c2d2b3 0%,#9bb088 55%,#7d9468 100%);
  --grad-rose:linear-gradient(135deg,#fbe6ea 0%,#e7b7c0 60%,#cf8a99 100%);
  --grad-noir:linear-gradient(135deg,#5d6960 0%,#46504a 100%);
  --grad-blush:linear-gradient(135deg,#fdf2f4 0%,#fbe6ea 60%,#f6d3da 100%);
  --grad-sage:linear-gradient(135deg,#dfe7d6 0%,#b5c5a3 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--noir); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: italic; color: var(--rose-deep); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; }

/* ---------- PRZYCISKI ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--sans); font-weight: 600; font-size: .9rem;
  /* +letter-spacing na przyciskach = efekt luksusu (styl modowy) */
  letter-spacing: .08em; text-transform: uppercase;
  padding: 14px 30px; border-radius: 100px;
  border: 1.5px solid transparent; cursor: pointer; transition: all .25s ease;
  text-align: center; white-space: nowrap;
}
.btn-sm { padding: 9px 20px; font-size: .78rem; letter-spacing: .07em; }
.btn-lg { padding: 17px 38px; font-size: .92rem; }
/* Główny przycisk hero: głęboka czerń → mocny kontrast na jasnym tle */
.btn-primary { background: var(--noir); color: var(--ivory); box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--noir-soft); }
/* Złoty akcent tylko dla CTA-band i gier (klasa helper) */
.btn-gold-accent { background: var(--grad-gold); color: var(--noir); }
.btn-gold-accent:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); filter: brightness(1.04); }
.btn-ghost { background: transparent; border-color: var(--noir); color: var(--noir); }
.btn-ghost:hover { background: var(--noir); color: var(--ivory); }
.btn-dark { background: var(--noir); color: var(--ivory); }
.btn-dark:hover { background: var(--noir-soft); transform: translateY(-2px); }
.btn[disabled], .btn.is-disabled { opacity: .55; cursor: not-allowed; pointer-events: none; }
.btn-block { width: 100%; }

.eyebrow {
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase; color: var(--rose-deep);
  margin-bottom: 14px;
}

/* ---------- NAGŁÓWEK ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 243, .82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; display: block; }
/* Motyw boho/kwiatowy ma jaśniejszy nagłówek — logo (czarne) zostaje czytelne. */
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-size: .92rem; font-weight: 500; transition: color .2s; }
.main-nav a:not(.btn):hover { color: var(--rose-deep); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--noir); transition: .3s; }

/* ---------- HERO ---------- */
.hero { position: relative; text-align: center; padding: 96px 0 84px; overflow: hidden;
  background:
    radial-gradient(60% 80% at 50% -10%, var(--blush) 0%, transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}
.hero-glow { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(40% 50% at 80% 30%, rgba(201,162,75,.16), transparent 70%),
              radial-gradient(40% 50% at 15% 60%, rgba(232,168,161,.18), transparent 70%); }
.hero { text-align: left; }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.04fr .96fr;
  align-items: center; gap: 48px; }
.hero-title { font-size: clamp(2.6rem, 5.4vw, 4.6rem); letter-spacing: -.01em; margin: 8px 0 22px; }
.hero-sub { max-width: 520px; margin: 0 0 34px; font-size: 1.12rem; color: var(--muted); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-badges { display: flex; gap: 22px; flex-wrap: wrap; list-style: none;
  font-size: .86rem; color: var(--ink); font-weight: 500; }
.hero-badges li { opacity: .85; }
/* warianty badge z ikoną SVG zamiast emoji — ikona + tekst w jednej linii */
.icon-badges li { display: inline-flex; align-items: center; gap: 8px; opacity: 1; }
.icon-badges svg { flex: 0 0 auto; color: var(--gold); }
.game-band .icon-badges svg { color: var(--gold-light); }
/* SVG wewnątrz przycisku dziedziczy kolor tekstu przycisku */
.btn svg { flex: 0 0 auto; }

/* wachlarz okładek produktów w hero */
.hero-art { position: relative; height: 460px; display: grid; place-items: center; }
.hero-blob { position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--blush), var(--rose) 70%); opacity: .35; filter: blur(8px); }
.hero-art .fan { position: absolute; width: 47%; border-radius: 6px;
  box-shadow: 0 26px 56px rgba(32,25,28,.32); border: 4px solid #fff; }
/* cień rzucany "na podłogę" — daje głębię */
.hero-art .fan::after {
  content: ""; position: absolute; bottom: -18px; left: 10%; right: 10%;
  height: 22px; background: rgba(32,25,28,.22); filter: blur(14px); border-radius: 50%;
  z-index: -1;
}
.fan-c { z-index: 3; transform: translateY(-4px) rotate(-2deg); }
.fan-l { z-index: 2; transform: translate(-64%, 14px) rotate(-13deg); }
.fan-r { z-index: 2; transform: translate(64%, 10px) rotate(12deg); }
.hero-tag { position: absolute; z-index: 4; background: #fff; border-radius: 100px;
  padding: 8px 16px; font-size: .8rem; font-weight: 600; box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: 7px; }
.hero-tag svg { flex: 0 0 auto; }
.hero-tag-1 { top: 8%; left: 2%; color: var(--noir); }
.hero-tag-2 { bottom: 10%; right: 4%; color: var(--gold); }

/* mikrokopia pod CTA — kotwica cenowa + odwrócenie ryzyka (demo) */
.hero-reassure { margin-top: 16px; font-size: .92rem; color: var(--muted); }
.hero-reassure strong { color: var(--rose-deep); font-weight: 600; }

/* animacje pojawiania się przy przewijaniu (włączane przez JS) */
.reveal-on .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal-on .reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal-on .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- PASEK ZAUFANIA (jeżdżący marquee) ---------- */
.trust-bar { background: var(--noir); color: var(--ivory); overflow: hidden; }
.trust-marquee { display: flex; width: max-content; padding: 15px 0;
  animation: trust-scroll 26s linear infinite; }
/* dwa identyczne tory obok siebie -> przesuw z -50% do 0 daje płynny ruch w PRAWO */
.trust-track { display: flex; align-items: center; flex: 0 0 auto; }
.trust-track span { padding: 0 22px; font-size: .82rem; letter-spacing: .04em; white-space: nowrap; }
.trust-sep { color: var(--gold); padding: 0 4px !important; }
@keyframes trust-scroll {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.trust-bar:hover .trust-marquee { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .trust-marquee { animation: none; transform: translateX(-50%); }
}

/* ---------- SEKCJE ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--cream); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
.section-lead { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }

/* ---------- FILTRY ---------- */
.filters { display: flex; gap: 16px 24px; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 40px; }
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* MOBILE: filtry ułożone czytelnie — kategorie w równym, przewijalnym pasku,
   dropdown stylu osobno pod spodem na pełną szerokość */
@media (max-width: 560px) {
  .filters { flex-direction: column; gap: 14px; align-items: stretch; margin-bottom: 30px; }
  .filter-row { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start;
    padding-bottom: 6px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-btn { flex: 0 0 auto; white-space: nowrap; }
  .style-filter { justify-content: center; }
  .style-filter select { flex: 1; max-width: 260px; }
}
/* dropdown wyboru stylu (druga oś filtrowania) */
.style-filter { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans);
  font-size: .85rem; font-weight: 600; color: var(--muted); }
.style-filter select { font-family: var(--sans); font-size: .85rem; font-weight: 600; color: var(--noir);
  padding: 8px 30px 8px 14px; border: 1.5px solid var(--line); border-radius: 100px; background: var(--white);
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a7a7f' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; }
.style-filter select:focus { outline: 2px solid var(--gold); border-color: var(--gold); }

/* kropki kolorów = KLIKALNY wybór stylu na kaflu (podgląd) */
.style-dots { display: inline-flex; gap: 8px; margin: 4px 0 10px; align-items: center; }
.style-dots .sd { width: 16px; height: 16px; border-radius: 50%; padding: 0; cursor: pointer;
  border: 2px solid transparent; box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
  transition: transform .12s, border-color .12s; }
.style-dots .sd:hover { transform: scale(1.18); }
.style-dots .sd.on { border-color: var(--ink); }
.filter-btn {
  font-family: var(--sans); font-size: .85rem; font-weight: 500;
  padding: 9px 20px; border-radius: 100px; border: 1.5px solid var(--line);
  background: var(--white); color: var(--ink); cursor: pointer; transition: all .2s;
}
.filter-btn:hover { border-color: var(--rose); }
.filter-btn.active { background: var(--noir); color: var(--ivory); border-color: var(--noir); }

/* ---------- SIATKA PRODUKTÓW ---------- */
.produkty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.produkt-card {
  position: relative; background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s;
}
.produkt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-cover { position: relative; aspect-ratio: 4 / 3; display: grid; place-items: center; overflow: hidden; }
.card-cover.rose  { background: var(--grad-rose); }
.card-cover.gold  { background: var(--grad-gold); }
.card-cover.noir  { background: var(--grad-noir); }
.card-cover.sage  { background: var(--grad-sage); }
.card-cover.blush { background: var(--grad-blush); }
.card-cover::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,.22), transparent 60%); }

/* SVG mockupy kart gry i personalizatora */
.card-mockup { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; height: 100%; width: 100%; }
.card-mockup-phone { align-items: flex-end; padding-bottom: 6px; }
.card-mockup-phone svg { height: 148px; width: auto; filter: drop-shadow(0 14px 28px rgba(0,0,0,.5)); transition: transform .35s ease; }
.card-mockup-doc { align-items: center; }
.card-mockup-doc svg { height: 118px; width: auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,.2)); transform: rotate(-3deg); transition: transform .35s ease; }
.produkt-card:hover .card-mockup-doc svg { transform: rotate(0deg) scale(1.04); }
.produkt-card:hover .card-mockup-phone svg { transform: translateY(-5px) scale(1.03); }
.card-emoji { font-size: 3.4rem; filter: drop-shadow(0 6px 14px rgba(0,0,0,.18)); position: relative; z-index: 1; }
.card-cover.noir .card-emoji { filter: drop-shadow(0 6px 14px rgba(0,0,0,.5)); }

/* podgląd strony jako „kartka" na okładce karty */
.card-shot { position: relative; z-index: 1; height: 88%; max-width: 78%; width: auto;
  object-fit: contain; border-radius: 3px; box-shadow: 0 12px 28px rgba(32,25,28,.34);
  transform: rotate(-1.6deg); transition: transform .35s ease; }
.produkt-card:hover .card-shot { transform: rotate(0deg) scale(1.04); }

.card-pages { position: absolute; bottom: 12px; right: 14px; z-index: 1;
  font-size: .72rem; letter-spacing: .04em; padding: 4px 11px; border-radius: 100px;
  background: rgba(255,255,255,.85); color: var(--noir); font-weight: 600; backdrop-filter: blur(4px); }

.card-badge { position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; padding: 6px 14px;
  border-radius: 100px; background: var(--noir); color: var(--gold-light); text-transform: uppercase; }

.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card-kat { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--rose-deep); font-weight: 700; margin-bottom: 8px; }
.card-title { font-size: 1.45rem; margin-bottom: 8px; }
.card-desc { font-size: .9rem; color: var(--muted); flex: 1; margin-bottom: 18px; }
/* stopka karty: cena w osobnym rzędzie, akcje na pełną szerokość poniżej (nie ucina przycisków) */
.card-foot { display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
.card-price { display: flex; align-items: baseline; gap: 8px; font-family: var(--serif); }
.card-price .now { font-size: 1.7rem; font-weight: 600; color: var(--noir); }
.card-price-free { font-size: 1.05rem !important; letter-spacing: .12em; text-transform: uppercase; color: var(--gold) !important; font-family: var(--sans) !important; white-space: nowrap; }
.card-price .was { font-size: 1rem; color: var(--muted); text-decoration: line-through; }
.card-actions { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.card-actions .btn { flex: 1 1 auto; min-width: 0; text-align: center; }
.card-actions .btn-info { flex: 0 0 auto; }
.card-soon { font-size: .8rem; color: var(--muted); font-style: italic; }
.btn-info { background: none; border: none; cursor: pointer; color: var(--rose-deep); flex: 0 0 auto;
  font-family: var(--sans); font-size: .82rem; font-weight: 600; text-decoration: underline; padding: 6px 2px; }

/* ---------- JAK TO DZIAŁA ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { text-align: center; padding: 10px; }
.step-num { width: 58px; height: 58px; margin: 0 auto 20px; display: grid; place-items: center;
  border-radius: 50%; background: var(--white); border: 1.5px solid var(--gold);
  color: var(--gold); box-shadow: none; }
.step-num svg { stroke: var(--gold); }
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--muted); }

/* ---------- DLACZEGO MY ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature { background: var(--white); border: 1px solid rgba(43,34,38,.06); border-radius: var(--radius);
  padding: 32px 26px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-ico { display: flex; justify-content: center; margin-bottom: 18px; color: var(--gold); }
.feature-ico svg { stroke: var(--gold); }
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { font-size: .88rem; color: var(--muted); }

/* ---------- OPINIE ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); }
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.review blockquote { font-family: var(--serif); font-size: 1.2rem; line-height: 1.4; color: var(--noir); margin-bottom: 16px; }
.review figcaption { font-size: .85rem; color: var(--muted); font-weight: 500; }
.reviews-note { text-align: center; margin-top: 26px; font-size: .82rem; color: var(--muted); font-style: italic; }

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 36px 18px 4px; position: relative;
  font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: var(--noir); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--gold); transition: transform .25s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 4px 20px; color: var(--muted); font-size: .95rem; }
.faq details p a { color: var(--rose-deep); text-decoration: underline; }

/* ---------- CTA BAND / NEWSLETTER ---------- */
.cta-band { background: var(--grad-noir); color: var(--ivory); text-align: center; padding: 76px 0; }
.cta-band h2 { color: var(--ivory); font-size: clamp(2rem, 4vw, 2.8rem); }
.cta-band p { max-width: 520px; margin: 14px auto 30px; color: rgba(251,247,243,.78); }
.newsletter { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter input { flex: 1; min-width: 220px; padding: 14px 20px; border-radius: 100px; border: none;
  font-family: var(--sans); font-size: .95rem; background: rgba(255,255,255,.95); }
.newsletter input:focus { outline: 2px solid var(--gold); }
/* przycisk newslettera na ciemnym tle: złoty, żeby się nie zlewał z grad-noir */
.cta-band .newsletter .btn-primary { background: var(--grad-gold); color: var(--noir); }
.cta-band .newsletter .btn-primary:hover { background: var(--grad-gold); filter: brightness(1.06); transform: translateY(-2px); }
.newsletter-note { margin-top: 18px; color: var(--gold-light); font-size: .9rem; }

/* ---------- STOPKA ---------- */
.site-footer { background: var(--noir); color: rgba(251,247,243,.82); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 48px; }
.footer-brand p { margin-top: 10px; }
/* osobny biały plik logo dla ciemnej stopki (czystsze niż filtr invert) */
.footer-logo { height: 56px; width: auto; margin-bottom: 14px; }
.footer-tag { font-size: .85rem; color: rgba(251,247,243,.55); max-width: 240px; }
.footer-col h4 { color: var(--gold-light); font-family: var(--sans); font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.footer-col a { display: block; font-size: .9rem; padding: 5px 0; color: rgba(251,247,243,.75); transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: .8rem; color: rgba(251,247,243,.5); }
.payment-icons { display: inline-flex; align-items: center; gap: 6px; }
.payment-icons svg { color: var(--gold-light); }

/* ---------- MODAL ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-overlay { position: absolute; inset: 0; background: rgba(32,25,28,.6); backdrop-filter: blur(4px); }
.modal-box { position: relative; background: var(--ivory); border-radius: var(--radius);
  max-width: 600px; width: 100%; max-height: 88vh; overflow-y: auto; box-shadow: var(--shadow-lg);
  animation: pop .3s ease; }
@keyframes pop { from { transform: scale(.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close { position: absolute; top: 14px; right: 16px; z-index: 2; width: 38px; height: 38px;
  border-radius: 50%; border: none; background: rgba(255,255,255,.85); font-size: 1.6rem; line-height: 1;
  cursor: pointer; color: var(--noir); }
.modal-close:hover { background: var(--white); }
.modal-cover { aspect-ratio: 16/9; display: grid; place-items: center; }
.modal-cover .card-emoji { font-size: 4.5rem; }
.modal-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px 20px 0; background: var(--cream); }
.modal-gallery img { width: 100%; border: 1px solid var(--line); border-radius: 6px; box-shadow: var(--shadow-md); }
@media (max-width: 520px) { .modal-gallery { grid-template-columns: 1fr; } }
.modal-content { display: flex; flex-direction: column; }
.modal-inner { padding: 28px 32px 34px; }
.modal-inner .card-kat { margin-bottom: 10px; }
.modal-inner h3 { font-size: 2rem; margin-bottom: 14px; }
.modal-list { list-style: none; margin: 0 0 24px; }
.modal-list li { position: relative; padding: 7px 0 7px 28px; font-size: .95rem; color: var(--ink); }
.modal-list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.modal-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--line); }

/* ---------- WYBÓR STYLU QUIZU (modal) ---------- */
/* podgląd pojedynczego stylu — jeden duży obraz (nie siatka 2-kol.) */
#style-preview { grid-template-columns: 1fr; place-items: center; padding: 20px 20px 4px; }
#style-preview img { max-width: 320px; width: 100%; }
.style-label { font-family: var(--sans); font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin: 4px 0 12px; }
.style-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 24px; }
.style-pick { display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: pointer;
  background: none; border: 2px solid transparent; border-radius: 10px; padding: 6px; transition: border-color .15s, transform .15s; }
.style-pick img { width: 100%; border-radius: 6px; border: 1px solid var(--line); display: block; }
.style-pick span { font-size: .72rem; font-weight: 600; color: var(--ink); }
.style-pick:hover { transform: translateY(-2px); }
.style-pick.active { border-color: var(--rose-deep); }
.style-pick.active span { color: var(--rose-deep); }
@media (max-width: 520px) { .style-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- TOAST ---------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--noir); color: var(--ivory); padding: 14px 24px; border-radius: 100px;
  box-shadow: var(--shadow-md); font-size: .9rem; z-index: 200; transition: transform .35s ease; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- RESPONSYWNOŚĆ ---------- */
@media (max-width: 980px) {
  .produkty-grid, .reviews { grid-template-columns: repeat(2, 1fr); }
  .features, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero { text-align: center; }
  .hero-inner { grid-template-columns: 1fr; gap: 18px; }
  .hero-copy { order: 1; }
  .hero-art { order: 2; height: 340px; margin-top: 6px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-badges { justify-content: center; }
}
@media (max-width: 680px) {
  .main-nav { position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--ivory); border-bottom: 1px solid var(--line); padding: 12px 24px 24px;
    transform: translateY(-130%); transition: transform .3s ease; box-shadow: var(--shadow-md); }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .main-nav .btn { margin-top: 10px; }
  .nav-toggle { display: flex; }
  .produkty-grid, .reviews, .features, .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 60px 0; }
  .hero { padding: 64px 0 56px; }
  .hero-badges { gap: 14px; }
  .hero-art { height: 300px; }
  .hero-art .fan { width: 44%; }
  .hero-blob { width: 250px; height: 250px; }
  /* na małym ekranie etykiety mniejsze i odsunięte, by nie wchodziły na okładki */
  .hero-tag { font-size: .72rem; padding: 6px 12px; }
  .hero-tag-1 { top: -2%; left: -1%; }
  .hero-tag-2 { bottom: 2%; right: -1%; }
  .game-band-inner { grid-template-columns: 1fr; text-align: center; gap: 26px; }
  .game-band-copy .eyebrow, .game-band-copy .hero-cta, .game-band-copy .hero-badges { justify-content: center; }
  .game-band-art { order: -1; }
}

/* ===== HIGHLIGHT GRY INTERAKTYWNEJ ===== */
.game-band {
  background: var(--grad-noir);
  color: var(--ivory);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.game-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .6;
  background:
    radial-gradient(circle at 15% 20%, rgba(201,162,75,.22), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(232,168,161,.18), transparent 42%);
}
.game-band-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 40px;
}
@media (max-width: 860px) {
  .game-band-inner { grid-template-columns: 1fr; text-align: center; gap: 26px; }
  .game-band-copy .eyebrow, .game-band-copy .hero-cta, .game-band-copy .hero-badges { justify-content: center; }
  .game-band-copy p { margin-left: auto; margin-right: auto; }
  .game-band-art { order: -1; }
}
.game-band-copy .eyebrow { color: var(--gold-light); display: flex; gap: 8px; }
.game-band-copy h2 { color: var(--ivory); font-size: clamp(28px, 4.6vw, 44px); line-height: 1.06; }
.game-band-copy h2 em { color: var(--gold-light); font-style: italic; }
.game-band-copy p { color: rgba(251,247,243,.82); margin: 14px 0 22px; max-width: 540px; }
.game-band-copy strong { color: var(--ivory); }
.game-band .hero-badges li { color: rgba(251,247,243,.9); }
.btn-on-dark { color: var(--ivory); border: 1.5px solid rgba(251,247,243,.45); }
.btn-on-dark:hover { border-color: var(--gold-light); color: var(--gold-light); background: rgba(255,255,255,.04); }

/* ===== GALERIA GIER (strona główna) ===== */
.gry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .gry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gry-grid { grid-template-columns: 1fr; } }
.gry-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); text-decoration: none; color: inherit;
  transition: transform .18s ease, box-shadow .18s ease; }
.gry-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.gry-cover { height: 104px; position: relative; display: grid; place-items: center; }
.gry-cover.gold { background: var(--grad-gold); } .gry-cover.rose { background: var(--grad-rose); } .gry-cover.noir { background: var(--grad-noir); }
.gry-ico { display: grid; place-items: center; filter: drop-shadow(0 5px 10px rgba(0,0,0,.18)); }
.gry-ico svg { display: block; }
/* okładki ciemne → ikona jasna; okładki jasne (gold/rose) → ikona ciemna */
.gry-cover.noir .gry-ico { color: var(--ivory); }
.gry-cover.gold .gry-ico,
.gry-cover.rose .gry-ico { color: var(--noir); }
.gry-tag { position: absolute; top: 10px; right: 10px; font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; background: rgba(255,255,255,.9); color: var(--noir); border-radius: 99px; padding: 4px 9px; }
.gry-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.gry-body h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--ink); line-height: 1.12; }
.gry-body p { font-size: 13px; color: var(--muted); margin: 6px 0 12px; flex: 1; }
.gry-cta { align-self: flex-start; font-weight: 600; font-size: 13.5px; color: var(--rose-deep); transition: letter-spacing .15s; }
.gry-card:hover .gry-cta { letter-spacing: .02em; }
.gry-more { text-align: center; margin-top: 26px; }

/* ===== PORÓWNANIE: my vs gotowce PDF ===== */
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
@media (max-width: 680px) { .vs { grid-template-columns: 1fr; } }
.vs-col { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; position: relative; }
.vs-them { background: var(--cream); }
.vs-them h3 { color: var(--muted); }
.vs-us { border: 2px solid var(--gold); box-shadow: var(--shadow-md); }
.vs-badge { position: absolute; top: -13px; left: 24px; background: var(--grad-gold); color: #fff; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700; padding: 5px 13px; border-radius: 99px; text-shadow: 0 1px 1px rgba(0,0,0,.15); }
.vs-col h3 { font-family: var(--serif); font-size: 23px; font-weight: 700; margin-bottom: 14px; color: var(--ink); }
.vs-col ul { list-style: none; }
.vs-col li { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; line-height: 1.45; display: flex; gap: 10px; overflow-wrap: anywhere; }
.vs-col li::before { min-width: 1em; }
@media (max-width: 680px) { .vs-col { padding: 22px 18px; } }
.vs-col li:last-child { border-bottom: none; }
.vs-them li { color: var(--muted); }
.vs-them li::before { content: "✕"; color: var(--rose-deep); font-weight: 700; flex: 0 0 auto; }
.vs-us li::before { content: "✓"; color: var(--gold); font-weight: 700; flex: 0 0 auto; }

/* makieta telefonu */
.game-band-art { display: flex; justify-content: center; }
.phone {
  width: 220px; aspect-ratio: 9 / 18; border-radius: 34px;
  background: linear-gradient(160deg, #2c2429, #161013);
  padding: 12px; box-shadow: var(--shadow-lg), 0 0 0 2px rgba(201,162,75,.25) inset;
  transform: rotate(-4deg); transition: transform .4s ease;
}
.phone:hover { transform: rotate(0deg) translateY(-4px); }
.phone-screen {
  height: 100%; border-radius: 24px; background: var(--ivory);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 22px 14px; text-align: center;
}
.ps-crown { font-size: 34px; filter: drop-shadow(0 4px 10px rgba(201,162,75,.4)); }
.ps-q { font-family: var(--serif); font-weight: 600; font-size: 17px; color: var(--noir); line-height: 1.15; margin-bottom: 4px; }
.ps-opt {
  width: 100%; font-size: 12px; font-weight: 500; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 9px; padding: 9px 10px;
}
.ps-opt.ps-sel { border-color: var(--gold); background: #fff9ec; color: var(--noir); font-weight: 600; }
