:root{
  --smash-bg:#050816;
  --smash-bg-elevated:#071224;

  --smash-primary:#0ea5e9;
  --smash-primary-soft:#38bdf8;
  --smash-text-main:#f9fafb;
  --smash-text-soft:#e5e7eb;
  --smash-text-muted:#9ca3af;

  --accent-blue:#006ee0;

  --radius-xl:32px;
  --shadow-strong:0 30px 80px rgba(15,23,42,0.95);
  --page-max:1320px;

  /* iOS fix: prawdziwa wysokość */
  --app-height: 100vh;

  /* KAFELKI */
  --tilebar-w:64px;
  --tile:32px;
  --tile-step:64px;
  --tile-opacity:.28;
  --tile-color: rgba(0,110,224,.92);

  /* wspólny padding sekcji (symetryczny, żeby zawsze było “na środku”) */
  --section-pad: clamp(18px, 4vh, 34px);
}

* ,*::before,*::after{ box-sizing:border-box; }

html, body{
  height:100%;
  background-color: var(--smash-bg); /* Safari: bez białych pasków */
}

html{
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}

body{
  margin:0;
  min-height: var(--app-height);
  height: var(--app-height);
  font-family:"Red Hat Text",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--smash-text-main);
  overflow:hidden; /* fullpage */

  background:
    radial-gradient(circle at 18% 22%, rgba(56,189,248,.14), transparent 55%),
    radial-gradient(circle at 82% 74%, rgba(0,110,224,.12), transparent 60%),
    radial-gradient(circle at 50% 0%, rgba(14,165,233,.08), transparent 55%),
    linear-gradient(180deg, #040614 0%, #050816 40%, #040614 100%);
}

body{
  position: relative;
  isolation: isolate; /* ważne dla z-index:-1 */
}

body::before{
  content:"";
  position: fixed;
  inset: -1%;               /* większe niż ekran, żeby blur nie robił "ramki" */
  z-index: -1;               /* za całą treścią, ale nad background body */
  pointer-events: none;

  background: url("../images/bg.webp") center / cover no-repeat;
  filter: blur(7px);
  transform: scale(1.02);    /* maskuje krawędzie po rozmyciu */
  opacity: 0.2;             /* nisko, bo obraz ma małą rozdzielczość */
}

body.landing-uppercase,
body.landing-uppercase *,
body.landing-uppercase *::before,
body.landing-uppercase *::after {
  text-transform: uppercase !important;
}

body.landing-uppercase ::placeholder,
body.landing-uppercase input,
body.landing-uppercase textarea,
body.landing-uppercase select,
body.landing-uppercase option,
body.landing-uppercase button {
  text-transform: uppercase !important;
}

.page-shell{
  min-height:100%;
  display:flex;
  flex-direction:column;
  position:relative;
}

/* KAFELKI – fixed, stałe, przyciemnione, zawsze z tym samym cieniem */
.page-shell::before,
.page-shell::after{
  content:"";
  position:fixed;
  top:0;
  bottom:0;
  width:var(--tilebar-w);

  background-image:
    repeating-linear-gradient(
      to bottom,
      var(--tile-color) 0,
      var(--tile-color) var(--tile),
      transparent var(--tile),
      transparent var(--tile-step)
    ),
    repeating-linear-gradient(
      to bottom,
      var(--tile-color) 0,
      var(--tile-color) var(--tile),
      transparent var(--tile),
      transparent var(--tile-step)
    );

  background-size:var(--tile) var(--tile-step);
  background-position:0 0, var(--tile) var(--tile);
  background-repeat:repeat-y;

  opacity:var(--tile-opacity);
  pointer-events:none;
  z-index:999;

  transform: translateZ(0);
  will-change: transform;
}
.page-shell::before{
  left:0;
  box-shadow:
    inset 20px 0 28px rgba(0,0,0,.78),
    0 0 22px rgba(0,110,224,.10);
}
.page-shell::after{
  right:0;
  box-shadow:
    inset -20px 0 28px rgba(0,0,0,.78),
    0 0 22px rgba(0,110,224,.10);
}

.landing-main{
  position:relative;
  height: var(--app-height);
  overflow:hidden;
}

/* globalny overlay (jedno tło dla całej strony) */
.landing-main::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.03), transparent 35%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,.02), transparent 40%);
  opacity:.9;
  z-index:0;
}

.fx-layer{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:1;
  overflow:hidden;
}
.fx-canvas{
  width:100%;
  height:100%;
  display:block;
}
.fx-glow{
  position:absolute;
  inset:-20%;
  background:radial-gradient(circle at calc(var(--mx, .5) * 100%) calc(var(--my, .5) * 100%), rgba(56,189,248,.20), transparent 55%);
  opacity:.75;
  mix-blend-mode:screen;
}
.fx-grain{
  position:absolute;
  inset:0;
  opacity:.08;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
  mix-blend-mode:soft-light;
  animation:grainPulse 6s ease-in-out infinite;
}
.fx-sweep{
  position:absolute;
  inset:-40%;
  opacity:0;
  background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 48%, transparent 60%);
  transform:translate3d(-30%, -30%, 0) rotate(6deg);
  mix-blend-mode:screen;
}
@keyframes grainPulse{
  0%,100%{ opacity:.07; }
  50%{ opacity:.11; }
}

.landing-container{
  max-width:var(--page-max);
  margin:0 auto;
  /* odsunięcie od kafelków po bokach */
  padding:0 calc(1.1rem + var(--tilebar-w));
}

/* ===== TOP NAV (tylko język) ===== */
.top-nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1200;
  pointer-events:none;
  padding: calc(env(safe-area-inset-top) + 14px) 0 0;
}
.top-nav-inner{
  max-width:var(--page-max);
  margin:0 auto;
  display:flex;
  justify-content:flex-end;
  pointer-events:auto;
  padding: 0 calc(1.1rem + var(--tilebar-w));
}

.top-nav .order-nav__lang{
  display:flex;
  justify-self:center;
  align-items:center;
}
.top-nav .lang-switcher{
  position:relative;
  display:inline-flex;
  align-items:center;
}
.top-nav .lang-flags{
  display:inline-flex;
  gap:8px;
  align-items:center;
}
.top-nav .lang-flags--menu{
  position:absolute;
  top:50%;
  right:calc(100% + 8px);
  flex-direction:row;
  padding:8px;
  border-radius:999px;
  background:rgba(15, 23, 42, 0.92);
  box-shadow:0 12px 28px rgba(0, 0, 0, 0.35);
  opacity:0;
  pointer-events:none;
  transform:translateX(6px) translateY(-50%);
  transition:opacity 0.2s ease, transform 0.2s ease;
  z-index:10;
}
.top-nav .lang-switcher.is-open .lang-flags--menu{
  opacity:1;
  pointer-events:auto;
  transform:translateX(0) translateY(-50%);
}
.top-nav .lang-flag--active{ cursor:pointer; }
.top-nav .lang-flag{
  width:36px;
  height:36px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  padding:0;
  background:rgba(15,23,42,.68);
  box-shadow:0 10px 24px rgba(0,0,0,.25);
  transition:all .16s ease;
  color:inherit;
  border:none;
  text-decoration:none;
}
.top-nav .lang-flag::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  border:1px solid rgba(148,163,184,.28);
  pointer-events:none;
}
.top-nav .lang-flag .fi{
  width:100%;
  position:absolute;
  inset:0;
  display:block;
  border-radius:50%;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  transform:scale(1.06);
}
.top-nav .lang-flag:hover,
.top-nav .lang-flag:focus{
  background:rgba(59,130,246,.18);
  color:#fff;
}
.top-nav .lang-flag:hover::after,
.top-nav .lang-flag:focus::after{
  border-color:rgba(148,163,184,.5);
}

/* ===== FULLPAGE ===== */
.fullpage{
  position:relative;
  height:100%;
  width:100%;
  z-index:2;
}

.fp-section{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;   /* centrum pionowo */
  justify-content:center; /* centrum poziomo */
  padding:
    calc(env(safe-area-inset-top) + var(--section-pad))
    0
    calc(env(safe-area-inset-bottom) + var(--section-pad));

  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform: translate3d(0, 0, 0) scale(1);
}

.fp-section.is-active,
.fp-section.is-peek{
  visibility:visible;
}

.fp-section.is-active{
  pointer-events:auto;
}

/* ===== HERO ===== */
.landing-hero-inner{
  max-width:58rem;
  margin:0 auto;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.hero-logo-main{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.2rem;
  padding: 14px;
  overflow: hidden;
  width: 280px;
  height: 280px;
}

.hero-logo-main img{
  position: relative;
  z-index: 1;
  height: 330px;
  width: auto;
  padding-bottom: 1rem;
}

.hero-heading{
  font-size:clamp(2.4rem,5vw,4.5rem);
  line-height:1.05;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:.8rem;
  color:#ffffff;
}
.hero-subtitle{
  font-size:1rem;
  color:var(--smash-text-soft);
  max-width:34rem;
  margin-bottom:1.4rem;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.65rem 1.2rem;
  margin-bottom:1.7rem;
  font-size:.86rem;
  color:#ffffff;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.42rem 1rem;
  border-radius:999px;
  border:1px solid var(--accent-blue);
  background:rgba(7,18,36,0.55);
  backdrop-filter: blur(10px);
  color:#ffffff;
}
.hero-badge-dot{
  width:7px;
  height:7px;
  border-radius:999px;
  background:var(--accent-blue);
  box-shadow:0 0 10px var(--accent-blue);
}

.landing-ordering-notice{
  width:min(640px, 100%);
  margin:0 auto 1.2rem;
  padding:1rem 1.2rem;
  border-radius:1rem;
  border:1px solid rgba(56,189,248,.55);
  background:rgba(7,18,36,.68);
  backdrop-filter:blur(8px);
  color:#e2e8f0;
  text-align:left;
  box-shadow:0 18px 45px rgba(15,23,42,.45);
}
.landing-ordering-notice strong{
  display:block;
  margin-bottom:.35rem;
  font-size:.98rem;
  letter-spacing:.02em;
  color:#f8fafc;
}
.landing-ordering-notice p{
  margin:0;
  font-size:.92rem;
  line-height:1.55;
}

.hero-cta-row{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.6rem;
}

.hero-cta-main{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  padding:1rem 2.6rem;
  border-radius:999px;
  border:1px solid rgba(15,23,42,0.9);
  background:linear-gradient(135deg,#006ee0 0%,#38bdf8 45%,#0ea5e9 100%);
  color:#f9fafb;
  font-family:"Poppins",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-weight:800;
  font-size:.96rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  text-decoration:none;
  box-shadow:0 24px 60px rgba(15,23,42,0.9);
  position:relative;
  overflow:hidden;
}
.hero-cta-main span.icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  border-radius:999px;
  background:#020617;
  color:#f9fafb;
  font-size:.85rem;
}
.hero-cta-main::before{
  content:"";
  position:absolute;
  top:-40%;
  left:-20%;
  width:40%;
  height:200%;
  background:linear-gradient(115deg,rgba(255,255,255,.85),transparent 70%);
  opacity:0;
  transform:translateX(-110%);
  transition:opacity .24s ease,transform .24s ease;
}
.hero-cta-main:hover::before{ opacity:.7; transform:translateX(300%); }
.hero-cta-main:hover{ filter:brightness(1.05); transform:translateY(-1px); }
.hero-cta-main:active{ transform:translateY(1px); }
.hero-cta-main .ripple{
  position:absolute;
  border-radius:9999px;
  transform:scale(0);
  opacity:.35;
  background:rgba(255,255,255,.8);
  pointer-events:none;
}

.hero-scroll-hint{
  margin-top:1.7rem;
  border:0;
  background:transparent;
  cursor:pointer;
  opacity:.82;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-scroll-hint .material-symbols-outlined{
  font-size:34px;
  color:rgba(148,163,184,.92);
  animation:hintFloat 1.6s ease-in-out infinite;
}
@keyframes hintFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(6px);}
}

/* ===== SEKCJE ===== */
.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 1.9rem;
}
.section-kicker{
  font-family:"Poppins",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:800;
  font-size:.78rem;
  color:rgba(148,163,184,.95);
  margin-bottom:.6rem;
}
.section-title{
  font-family:"Playfair Display","Times New Roman",serif;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:#fff;
  font-size:clamp(1.9rem, 3vw, 2.7rem);
  margin:0 0 .75rem 0;
}
.section-subtitle{
  color:rgba(229,231,235,.92);
  margin:0 auto;
  max-width:52ch;
  font-size:.98rem;
  line-height:1.6;
}

/* ===== KARTY ===== */
.cards-grid{ display:grid; gap:1.15rem; }
.cards-grid--products{ grid-template-columns:repeat(3, minmax(0, 1fr)); }
.cards-grid--proof{ grid-template-columns:repeat(3, minmax(0, 1fr)); }

.card{
  position:relative;
  border-radius:22px;
  border:1px solid rgba(148,163,184,.18);
  background:rgba(7,18,36,0.62);
  backdrop-filter: blur(12px);
  box-shadow:0 18px 40px rgba(0,0,0,.45);
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(circle at 0% 0%, rgba(56,189,248,.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(0,110,224,.14), transparent 60%);
  opacity:.85;
  pointer-events:none;
}
.card > *{ position:relative; z-index:1; }

.card--product{
  text-decoration:none;
  color:inherit;
  padding:1.1rem 1.1rem 1rem;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
[data-fx="tilt-card"]{
  transform-style:preserve-3d;
  perspective:900px;
}
[data-fx="tilt-card"]::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:radial-gradient(circle at calc(var(--hx, .5) * 100%) calc(var(--hy, .5) * 100%), rgba(255,255,255,.18), transparent 60%);
  opacity:0;
  transition:opacity .2s ease;
  pointer-events:none;
}
[data-fx="tilt-card"].is-tilting::after{
  opacity:.9;
}
.card--product:hover{
  transform:translateY(-2px);
  border-color:rgba(56,189,248,.34);
  box-shadow:0 26px 64px rgba(0,0,0,.62);
}
.card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:.85rem;
}
.card-badge{
  display:inline-flex;
  align-items:center;
  padding:.35rem .75rem;
  border-radius:999px;
  border:1px solid rgba(0,110,224,.55);
  background:rgba(5,10,30,.55);
  color:#fff;
  font-weight:800;
  font-family:"Poppins",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:.68rem;
}
.card-price{
  font-family:"Poppins",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-weight:900;
  letter-spacing:.08em;
  color:rgba(56,189,248,.95);
  font-size:.9rem;
}
.card-title{
  font-family:"Poppins",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:.45rem;
  color:#fff;
  font-size:1.05rem;
}
.card-desc{
  color:rgba(229,231,235,.9);
  line-height:1.6;
  font-size:.95rem;
  margin-bottom:1.05rem;
}
.card-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#fff;
  font-weight:800;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-family:"Poppins",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:.78rem;
  opacity:.92;
}

/* ===== BESTSELLERS: compact card (image left, content right) ===== */
#bestsellers{
  --bs-media: clamp(84px, 22vw, 112px);
  --bs-gap: .95rem;
}

/* układ karty: lewa miniatura + prawa treść */
#bestsellers .card--product{
  display:grid;
  grid-template-columns: var(--bs-media) minmax(0, 1fr);
  gap: var(--bs-gap);
  align-items:stretch;

  /* mniej „powietrza” = mniej wysokości */
  padding: .95rem .95rem .85rem;
}

#bestsellers [data-fx="tilt-card"]{
  will-change:transform, opacity, filter;
  transform:translateZ(0);
  content-visibility:auto;
}

/* miniatura nie ma się centrować jak „hero”, tylko siedzieć po lewej */
#bestsellers .card-media{
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

/* KWADRAT + overlay ramki */
#bestsellers .product-image-frame{
  position:relative;
  width:100%;
  aspect-ratio: 1 / 1;       /* <— klucz: kwadrat */
  border-radius:18px;
  overflow:hidden;
}

/* ramka */
#bestsellers .product-image-frame::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:url("/images/product-frame.webp");
  background-repeat:no-repeat;
  background-position:center;
  background-size:107% 107%;
  border-radius:inherit;
}

#bestsellers .product-image{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:translate(var(--img-offset-x, 0px), var(--img-offset-y, 0px)) scale(var(--img-scale, 1));
  transition:transform .4s ease;
}

#bestsellers .card--product:hover .product-image{
  transform:translate(var(--img-offset-x, 0px), var(--img-offset-y, 0px)) scale(calc(var(--img-scale, 1) * 1.04));
}

#bestsellers .product-image-placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.7rem;
  font-weight:600;
  color:rgba(226,232,240,.8);
  background:rgba(148,163,184,.12);
}

/* treść: ścinamy opis, żeby karta nie rosła */
#bestsellers .card-top{ margin-bottom:.55rem; }
#bestsellers .card-title{ margin-bottom:.25rem; }
#bestsellers .card-desc{
  margin-bottom:.65rem;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;   /* 2 linie remember: mniej wysokości */
  overflow:hidden;
}

.card--proof{ padding:1.25rem 1.15rem 1.05rem; }
.proof-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(56,189,248,.35);
  background:rgba(0,110,224,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:1rem;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}
.proof-icon .material-symbols-outlined{
  font-size:24px;
  color:rgba(56,189,248,.95);
}

.section-bottom-cta{
  margin-top:1.5rem;
  display:flex;
  justify-content:center;
}

/* ===== CTA ===== */
.btn-secondary,.btn-ghost,.btn-primary{
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  border-radius:999px;
  padding:.9rem 1.35rem;
  font-family:"Poppins",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:.78rem;
}
.btn-secondary{
  color:#fff;
  border:1px solid rgba(148,163,184,.28);
  background:rgba(7,18,36,.50);
  box-shadow:0 18px 44px rgba(0,0,0,.45);
}
.btn-secondary:hover{ border-color:rgba(56,189,248,.35); transform:translateY(-1px); }

.btn-ghost{
  color:#fff;
  border:1px solid rgba(0,110,224,.45);
  background:rgba(0,110,224,.10);
}
.btn-ghost:hover{ border-color:rgba(56,189,248,.45); transform:translateY(-1px); }

.btn-primary{
  border:1px solid rgba(15,23,42,0.9);
  background:linear-gradient(135deg,#006ee0 0%,#38bdf8 45%,#0ea5e9 100%);
  color:#f9fafb;
  box-shadow:0 24px 60px rgba(15,23,42,0.9);
  padding:1rem 2.1rem;
}
.btn-primary .icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  border-radius:999px;
  background:#020617;
  color:#f9fafb;
  font-size:.85rem;
}
.btn-primary:hover{ filter:brightness(1.05); transform:translateY(-1px); }

/* ===== HOW ===== */
.how-grid{ display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:1.15rem; }
.how-step{
  border-radius:22px;
  border:1px solid rgba(148,163,184,.18);
  background:rgba(7,18,36,0.58);
  backdrop-filter: blur(12px);
  box-shadow:0 18px 40px rgba(0,0,0,.45);
  padding:1.15rem 1.1rem 1.05rem;
  position:relative;
  overflow:hidden;
}
.how-step::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(circle at 0% 0%, rgba(56,189,248,.16), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(0,110,224,.12), transparent 60%);
  opacity:.9;
  pointer-events:none;
}
.how-step > *{ position:relative; z-index:1; }
.how-number{
  font-family:"Jersey 25", system-ui, sans-serif;
  font-size:2.2rem;
  letter-spacing:.08em;
  color:rgba(56,189,248,.95);
  margin-bottom:.35rem;
}
.how-title{
  font-family:"Poppins",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:.45rem;
}
.how-desc{
  color:rgba(229,231,235,.9);
  line-height:1.6;
  font-size:.95rem;
}

/* ===== LOCATION ===== */
.location-grid{
  display:grid;
  gap:1.15rem;
  align-items:stretch;
}
.location-card{
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding:1.15rem 1.1rem;
}
.location-row + .location-row{
  margin-top:1rem;
  padding-top:1rem;
  border-top:1px solid rgba(148,163,184,.12);
}
.location-label{
  font-family:"Poppins",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(148,163,184,.92);
  font-size:.72rem;
  margin-bottom:.35rem;
}
.location-value{ color:#fff; line-height:1.6; }
.location-value a{ color:#fff; text-decoration:none; }
.location-value a:hover{ color:var(--accent-blue); }
.location-actions{
  margin-top:1.15rem;
  display:flex;
  flex-wrap:wrap;
  gap:.7rem;
}

.map-wrap{
  border-radius:22px;
  border:1px solid rgba(148,163,184,.18);
  overflow:hidden;
  background:rgba(7,18,36,0.55);
  box-shadow:0 18px 40px rgba(0,0,0,.45);
}
.map-frame{ width:100%; height:100%; min-height:120px; }
.map-frame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
  filter:grayscale(.08) saturate(1.15) contrast(1.05);
}

/* ===== FOOTER ===== */
.footer_section{
  background:transparent !important;
  padding:22px 0 18px;
  border-top:1px solid rgba(31,41,55,0.35);
  color:var(--smash-text-main);
}
.footer_section .footer-inner{
  max-width:var(--page-max);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,0.9fr);
  gap:2rem;
  align-items:flex-start;
  font-size:.86rem;
  padding: 0 calc(1.1rem + var(--tilebar-w));
}
.footer-logo{
  font-size:1.02rem;
  font-weight:800;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#ffffff;
  margin-bottom:.1rem;
}
.footer-contact-line span{ color:var(--smash-text-soft); margin-right:.4rem; }
.footer-contact-line a{ color:#ffffff; text-decoration:none; }
.footer-contact-line a:hover{ color:var(--accent-blue); }
.footer-right{ text-align:right; display:flex; flex-direction:column; gap:.4rem; }
.footer-right-title{
  font-size:.86rem;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:var(--smash-text-soft);
}
.footer-privacy-link{
  display:inline-flex;
  align-items:center;
  justify-content:flex-end;
  gap:.35rem;
  color:#ffffff;
  text-decoration:none;
  font-weight:600;
}
.footer-privacy-link:hover{ color:var(--accent-blue); }
.footer-copy{
  margin-top:14px;
  text-align:center;
  font-size:.76rem;
  color:var(--smash-text-soft);
  padding: 0 calc(1.1rem + var(--tilebar-w));
}

/* ===== REVEAL ===== */
[data-reveal]{
  opacity:0;
  transform:translate3d(0, 10px, 0);
  filter:blur(6px);
  transition:
    opacity .45s ease,
    transform .45s cubic-bezier(.2,.8,.2,1),
    filter .45s ease;
  transition-delay:0ms;
  will-change:opacity, transform, filter;
}
[data-reveal].is-visible{
  opacity:1;
  transform:translate3d(0, 0, 0);
  filter:blur(0);
}

html.fx-reduced .fx-layer{ display:none; }
html.fx-reduced body{
  overflow:auto;
  height:auto;
  min-height:100%;
}
html.fx-reduced .landing-main,
html.fx-reduced .fullpage{
  position:static;
  height:auto;
  overflow:visible;
}
html.fx-reduced .fp-section{
  position:relative;
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:none;
}
html.fx-reduced .fp-section + .fp-section{
  margin-top: clamp(2rem, 6vh, 4rem);
}
html.fx-reduced [data-reveal]{
  opacity:1;
  transform:none;
  filter:none;
  transition:none;
}

/* ===== RESPONSYWNOŚĆ (kafelki + układ) ===== */
@media(max-width:1199.98px){
  :root{ --tilebar-w:56px; --tile:28px; --tile-step:56px; --tile-opacity:.26; }
}

@media(max-width:991.98px){
  :root{ --tilebar-w:48px; --tile:24px; --tile-step:48px; --tile-opacity:.24; }
  .location-grid{ grid-template-columns:minmax(0,1fr); }
  .footer_section .footer-inner{ grid-template-columns:minmax(0,1fr); }
  .footer-right{ text-align:left; align-items:flex-start; }
  #bestsellers .cards-grid--products{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
  #bestsellers .card--product{ grid-template-columns:minmax(0, 150px) minmax(0, 1fr); }
}

@media(max-width:768px){
  :root{ --tilebar-w:36px; --tile:18px; --tile-step:36px; --tile-opacity:.22; --section-pad: 18px; }

  /* mobile: karty jako poziomy slider (żeby sekcja się mieściła) */
  .cards-grid--products,
  .cards-grid--proof,
  .how-grid{
    grid-auto-flow: dense;
    grid-auto-columns: minmax(260px, 82vw);
    grid-template-columns: unset;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom:.35rem;
  }
  .cards-grid--products .card,
  .cards-grid--proof .card,
  .how-grid .how-step{
    scroll-snap-align: center;
  }
  .cards-grid--products::-webkit-scrollbar,
  .cards-grid--proof::-webkit-scrollbar,
  .how-grid::-webkit-scrollbar{
    display:none;
  }

  #bestsellers .cards-grid--products{
    grid-template-columns:minmax(0, 1fr);
    grid-auto-flow: initial;
    grid-auto-columns: unset;
    overflow: visible;
  }

  #bestsellers{ --bs-media: 92px; --bs-gap: .85rem; }

  #bestsellers .card--product{
    grid-template-columns: var(--bs-media) minmax(0, 1fr); /* dalej 2 kolumny na mobile */
  }


  .hero-logo-main{ width:240px; height:240px; }
  .hero-logo-main img{ height:280px; }
  .hero-heading{ letter-spacing:.10em; }
}

@media(max-width:575.98px){
  :root{ --tilebar-w:32px; --tile:16px; --tile-step:32px; --tile-opacity:.20; }

  .landing-container{ padding:0 calc(1rem + var(--tilebar-w)); }
  .top-nav-inner{ padding: 0 calc(1rem + var(--tilebar-w)); }

  .hero-logo-main{ width:220px; height:220px; margin-bottom:1.7rem; }
  .hero-logo-main img{ height:250px; }
  .hero-heading{ font-size:2.2rem; }

}

@media(max-width:420px){
  :root{ --tilebar-w:26px; --tile:13px; --tile-step:26px; --tile-opacity:.18; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  body{ overflow:auto; height:auto; min-height:100vh; }
  .landing-main{ height:auto; }
  .fp-section{
    position:static;
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
  }
  [data-reveal]{ opacity:1; transform:none; filter:none; transition:none; }
}

/* ===== Desktop scaling (większe sekcje na dużych ekranach) ===== */
:root{
  --container-scale: 1;
}

/* Skalujemy realną zawartość sekcji */
.fp-section .landing-container{
  transform: translateZ(0) scale(var(--container-scale));
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden; /* Safari */
}

/* Breakpointy – dobierz jak chcesz */
@media (min-width: 992px){
  html{ font-size: 17px; }      /* było ~16px */
  :root{ --page-max: 1480px; }  /* szerszy kontener */
}

@media (min-width: 1200px){
  html{ font-size: 18px; }
  :root{ --page-max: 1560px; }
}

@media (min-width: 1600px){
  html{ font-size: 19px; }
  :root{ --page-max: 1700px; }
}

/* STATUS DOT + obwódka badge zależnie od stanu */
:root{
  --status-ok: var(--accent-blue); /* niebieski */
  --status-off: #ef4444;           /* czerwony */
}

.hero-badge.badge--ok{
  border-color: var(--status-ok);
}
.hero-badge.badge--ok .hero-badge-dot{
  background: var(--status-ok);
  box-shadow: 0 0 10px var(--status-ok);
}

.hero-badge.badge--off{
  border-color: rgba(239, 68, 68, .75);
}
.hero-badge.badge--off .hero-badge-dot{
  background: var(--status-off);
  box-shadow: 0 0 10px rgba(239, 68, 68, .85);
}
