/* Kraina Zabawy — homepage */
/* Font stack: Baloo 2 for headings, Inter for body */
:root{
  --b
.site-header .wave{ z-index: 0; }
.site-header .header-inner{ z-index: 2; }
g: #0ec4ff;
  --cream: #fff5d7;
  --sun: #ffb627;
  --sky: #e9fbff;
  --ink: #13304c;
  --ink-soft: rgba(19,48,76,.78);
  --white: #ffffff;

  --pink: #ff5aa7;
  --green: #2bdc9f;
  --purple: #6a5cff;
  --red: #ff3b3b;

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;

  --shadow: 0 14px 40px rgba(0,0,0,.12);
  --shadow-soft: 0 10px 28px rgba(0,0,0,.10);

  --container: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.55;
}

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

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 12px;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 12px; }

.sr-only{
  position:absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Header */
.site-header{
  background: radial-gradient(1200px 500px at 50% 10%, rgba(255,255,255,.55), rgba(255,255,255,0) 60%),
              linear-gradient(180deg, #0ec4ff 0%, #12b7ff 55%, #0ec4ff 100%);
  position: relative;
  /* Dropdown "Oferta" wychodzi poza header — nie może być przycinany. */
  overflow: visible;
  z-index: 50;
}

.header-inner{
  padding: 26px 0 8px;
  display: grid;
  justify-items: center;
  gap: 14px;  position: relative;
  z-index: 1001;
}


.brand-logo{
  width: min(520px, 86vw);
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.16));
}

/* Nav */
.nav{
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.nav-toggle{
  display: none;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 44px;
  border: 2px solid rgba(255,255,255,.65);
  background: rgba(255,255,255,.18);
  border-radius: 16px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);  position: relative;
  z-index: 1002;
  pointer-events: auto;
}

.nav-toggle__bar{
  width: 22px;
  height: 2px;
  background: #fff;
  display:block;
  margin: 3px 0;
  border-radius: 999px;
}

.nav-menu{
  position: relative;
  z-index: 20;

  list-style: none;
  margin: 0;
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255,255,255,.24);
  border: 2px solid rgba(255,255,255,.42);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.nav-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #08304f;
  font-weight: 700;
  letter-spacing: .2px;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 18px;
  background: rgba(255,255,255,.7);
  border: 2px solid rgba(255,255,255,.85);
  transition: transform .18s ease, background .18s ease;
}
.nav-link:hover{ transform: translateY(-1px) scale(1.02); background: #fff; }
.nav-link.is-active{
  background: #fff;
  border-color: rgba(255,255,255,1);
  box-shadow: 0 10px 20px rgba(0,0,0,.10);
}

/* Hero */
.hero{
  position: relative;
  padding: 28px 0 0;
}
.hero-inner{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 70px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}

/* Hero — wejście (tylko strona główna)
   - całość „wjeżdża” z lewej
   - elementy wewnątrz mają lekkie opóźnienia (stagger)
   - nie ukrywamy nic, jeśli JS jest wyłączony */
html.js body.page-home .hero-inner{
  opacity: 0;
  transform: translateX(-100px);
  transition:
    transform .92s cubic-bezier(.2,.9,.2,1),
    opacity .92s ease;
  will-change: transform, opacity;
}
html.js body.page-home.is-loaded .hero-inner{
  opacity: 1;
  transform: translateX(0);
}

html.js body.page-home .hero-copy > *,
html.js body.page-home .hero-art{
  opacity: 0;
  transform: translateX(-100px);
  transition:
    transform .74s cubic-bezier(.2,.9,.2,1),
    opacity .74s ease;
  will-change: transform, opacity;
}
html.js body.page-home.is-loaded .hero-copy > *,
html.js body.page-home.is-loaded .hero-art{
  opacity: 1;
  transform: translateX(0);
}

/* Stagger (kolejność) */
html.js body.page-home .hero-kicker{ transition-delay: .06s; }
html.js body.page-home .hero h1{ transition-delay: .14s; }
html.js body.page-home .hero-lead{ transition-delay: .22s; }
html.js body.page-home .hero-actions{ transition-delay: .30s; }
html.js body.page-home .hero-badges{ transition-delay: .38s; }
html.js body.page-home .hero-art{ transition-delay: .26s; }

/* Dodatkowy delikatny stagger dla badge */
html.js body.page-home .hero-badges .badge{ opacity: 0; transform: translateX(-100px); transition: transform .60s cubic-bezier(.2,.9,.2,1), opacity .60s ease; }
html.js body.page-home.is-loaded .hero-badges .badge{ opacity: 1; transform: translateX(0); }
html.js body.page-home .hero-badges .badge:nth-child(1){ transition-delay: .44s; }
html.js body.page-home .hero-badges .badge:nth-child(2){ transition-delay: .50s; }
html.js body.page-home .hero-badges .badge:nth-child(3){ transition-delay: .56s; }

@media (prefers-reduced-motion: reduce){
  html.js body.page-home .hero-inner,
  html.js body.page-home .hero-copy > *,
  html.js body.page-home .hero-art,
  html.js body.page-home .hero-badges .badge{
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.hero-kicker{
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: .4px;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 2px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-soft);
  margin: 0 0 14px;
}

.hero h1{
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 14px;
  font-size: clamp(34px, 3.4vw, 54px);
  color: #062843;
  text-shadow: 0 10px 26px rgba(0,0,0,.10);
}

.hero-lead{
  margin: 0 0 18px;
  font-size: 18px;
  color: rgba(6,40,67,.85);
  max-width: 54ch;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 18px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.03); }
.btn:active{ transform: translateY(0); }

.btn-primary{
  background: linear-gradient(135deg, var(--pink), var(--red));
  color: #fff;
}
.btn-secondary{
  background: linear-gradient(135deg, var(--green), #20b5ff);
  color: #05324f;
  border: 2px solid rgba(255,255,255,.8);
}
.btn-ghost{
  background: rgba(255,255,255,.75);
  border: 2px solid rgba(255,255,255,.9);
  color: #05324f;
}

.hero-badges{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 14px;
}
.badge{
  background: rgba(255,255,255,.75);
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 18px;
  padding: 12px 12px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  box-shadow: var(--shadow-soft);
}
.badge-icon{ font-size: 26px; }
.badge-text{
  font-size: 13px;
  color: rgba(6,40,67,.82);
  line-height: 1.15;
}
.badge-text strong{ font-family: "Baloo 2", system-ui, sans-serif; font-size: 16px; color: #05263f; }

/* Hero art (simple SVG-like shapes with CSS) */
.hero-art{
  position: relative;
  justify-self: end;
}

.hero-fb{
  width: min(420px, 86vw);
  border-radius: var(--radius-xl);
  padding: 10px;
  background: rgba(255,255,255,.72);
  border: 2px solid rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow), 0 0 0 6px rgba(32,181,255,.14);
  overflow: hidden;
  position: relative;
}
.hero-fb::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}

.hero-fb iframe{
  width: 100%;
  height: 520px;
  display: block;
  border: 0;
  border-radius: calc(var(--radius-xl) - 10px);
  overflow: hidden;
}

.art-card{
  width: min(420px, 86vw);
  aspect-ratio: 1 / 1.05;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.65);
  border: 2px solid rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.art-shadow{
  width: min(420px, 86vw);
  height: 24px;
  background: radial-gradient(closest-side, rgba(0,0,0,.28), rgba(0,0,0,0));
  filter: blur(6px);
  opacity: .45;
  margin: 10px auto 0;
}
.art-sky{
  position:absolute; inset:0;
  background: radial-gradient(180px 120px at 20% 20%, rgba(255,255,255,.85), rgba(255,255,255,0) 65%),
              radial-gradient(220px 140px at 70% 10%, rgba(255,255,255,.70), rgba(255,255,255,0) 70%),
              linear-gradient(180deg, rgba(14,196,255,.65), rgba(14,196,255,.20));
}
.art-ground{
  position:absolute; left:-30%; right:-30%; bottom:-28%;
  height: 55%;
  background: radial-gradient(closest-side, rgba(255,255,255,.55), rgba(255,255,255,0)),
              linear-gradient(180deg, rgba(255,204,102,.95), rgba(255,182,39,.95));
  border-radius: 1000px;
  transform: rotate(-2deg);
}

.art-toy{
  position:absolute;
  width: 58px; height: 58px;
  border-radius: 18px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.16));
}
.art-toy--1{ right: 18px; top: 22px; background: var(--purple); transform: rotate(18deg); }
.art-toy--2{ right: 52px; top: 64px; background: var(--green); border-radius: 999px; }
.art-toy--3{ right: 8px; top: 82px; background: var(--red); clip-path: polygon(50% 0, 100% 70%, 0 70%); border-radius: 0; }
.art-toy--4{ right: 72px; top: 16px; background: var(--sun); clip-path: polygon(50% 0, 65% 35%, 100% 40%, 72% 62%, 82% 100%, 50% 80%, 18% 100%, 28% 62%, 0 40%, 35% 35%); border-radius: 0; }

.art-slide{
  position:absolute;
  left: 60px;
  bottom: 70px;
  width: 260px;
  height: 200px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.45)),
    radial-gradient(120px 60px at 40% 30%, rgba(255,255,255,.9), rgba(255,255,255,0));
  border: 2px solid rgba(255,255,255,.9);
  transform: rotate(-3deg);
  box-shadow: 0 18px 30px rgba(0,0,0,.12);
}
.art-slide::before{
  content:"";
  position:absolute;
  left: 26px; top: 34px;
  width: 90px; height: 120px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(32,181,255,.75), rgba(106,92,255,.75));
  border: 2px solid rgba(255,255,255,.8);
}
.art-slide::after{
  content:"";
  position:absolute;
  right: 30px; bottom: 30px;
  width: 140px; height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,90,167,.85), rgba(255,59,59,.85));
  border: 2px solid rgba(255,255,255,.85);
}

.art-kids .kid{
  position:absolute;
  width: 34px; height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 2px solid rgba(255,255,255,.95);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.16));
}
.kid--1{ left: 72px; bottom: 78px; background: rgba(255,90,167,.75); }
.kid--2{ left: 142px; bottom: 104px; background: rgba(43,220,159,.78); }
.kid--3{ left: 248px; bottom: 86px; background: rgba(106,92,255,.78); }

.wave{
  display:block;
  width: 100%;
  height: 88px;
  position: absolute;
  left: 0; right: 0;  z-index: 0;
  pointer-events: none;
}

.wave--bottom{ bottom: -1px; }
.wave path{ fill: var(--cream); }
.wave--cream path{ fill: var(--cream); }
.wave--sun path{ fill: var(--sun); }
.wave--sky path{ fill: var(--sky); }

/* Sections */
.section{
  position: relative;
  padding: 78px 0 88px;
}
.section--cream{ background: var(--cream); }
.section--sun{ background: var(--sun); }
.section--sky{ background: var(--sky); }

.section-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}

.section-head{
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.section h2{
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.1;
  margin: 0;
}
.section-lead{
  margin: 0;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 70ch;
}

.section-copy p{ margin: 12px 0; color: rgba(19,48,76,.88); }

.checklist{
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.checklist li{
  background: rgba(255,255,255,.62);
  border: 2px solid rgba(255,255,255,.82);
  border-radius: 18px;
  padding: 10px 12px 10px 42px;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.checklist li::before{
  content: "✅";
  position: absolute;
  left: 12px;
  top: 9px;
}

.section-card{
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.65);
  border: 2px solid rgba(255,255,255,.85);
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  gap: 14px;
}
.stat{
  border-radius: 20px;
  padding: 14px 16px;
  background: rgba(255,255,255,.75);
  border: 2px solid rgba(255,255,255,.9);
}
.stat-num{
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.stat-label{
  margin-top: 14px;
  color: rgba(19,48,76,.82);
}

/* Offer cards */
.offer-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-top: 14px;
}
.offer{
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.75);
  border: 2px solid rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  padding: 20px;
  display: grid;
  gap: 10px;
  min-height: 240px;
}
.offer-icon{
  width: 54px; height: 54px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 18px;
  background: rgba(255,255,255,.75);
  border: 2px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-soft);
  font-size: 26px;
}
.offer h3{
  margin: 0;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 24px;
  line-height: 1.1;
}
.offer p{ margin: 0; color: rgba(19,48,76,.86); }
.offer-link{
  margin-top: auto;
  font-weight: 800;
  text-decoration: none;
  color: #062843;
  display: inline-flex;
  width: fit-content;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 2px solid rgba(255,255,255,.92);
}
.offer-link:hover{ transform: translateY(-1px); }

/* CTA banner */
.cta-banner{
  margin-top: 14px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
  border: 2px solid rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cta-banner h3{
  margin: 0 0 6px;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 24px;
}
.cta-banner p{
  margin: 0;
  color: rgba(19,48,76,.86);
}

/* Contact */
.section-grid--contact{
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.contact-cards{
  margin-top: 14px;
  display: grid;
  gap: 12px;
}
.contact-card{
  border-radius: 20px;
  background: rgba(255,255,255,.75);
  border: 2px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-soft);
  padding: 12px 14px;
}
.contact-title{
  font-weight: 700;
  color: rgba(19,48,76,.72);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.contact-value{
  display: inline-block;
  margin-top: 14px;
  font-weight: 900;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 20px;
  color: #062843;
  text-decoration: none;
}

.form{
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.78);
  border: 2px solid rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  padding: 18px;
}
.form-row{ margin-bottom: 12px; }
.form-row--two{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label{
  display: grid;
  gap: 6px;
  font-weight: 800;
  font-family: "Baloo 2", system-ui, sans-serif;
  color: rgba(6,40,67,.9);
}
input, textarea{
  width: 100%;
  border-radius: 16px;
  border: 2px solid rgba(6,40,67,.14);
  padding: 12px 12px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  outline: none;
  background: rgba(255,255,255,.92);
}
input:focus, textarea:focus{
  border-color: rgba(32,181,255,.75);
  box-shadow: 0 0 0 4px rgba(32,181,255,.18);
}

.form-actions{
  display: grid;
  gap: 8px;
  align-items: start;
}
.form-note{
  margin: 0;
  color: rgba(19,48,76,.72);
  font-size: 13px;
}

/* Footer */
.footer{
  background: #061f33;
  color: rgba(255,255,255,.88);
  padding: 22px 0;
}
.footer-inner{
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 16px;
  align-items: center;
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo{
  width: 62px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.2));
}
.footer-links{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 800;
  font-family: "Baloo 2", system-ui, sans-serif;
}
.footer-small{ color: rgba(255,255,255,.70); font-size: 13px; }

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; padding-bottom: 58px; }
  .hero-art{ justify-self: center; }
  .hero-badges{ grid-template-columns: 1fr; }
  .section-grid{ grid-template-columns: 1fr; }
  .offer-grid{ grid-template-columns: 1fr; }
  .cta-banner{ flex-direction: column; align-items: flex-start; }
  .section-grid--contact{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; text-align: center; }
  .footer-brand{ justify-content: center; }
  .footer-links{ justify-content: center; }
}
@media (max-width: 720px){
  .nav-toggle{ display: inline-flex; }
  .nav-menu{
    display: none;
    width: min(var(--container), calc(100% - 40px));
    border-radius: 24px;
    padding: 12px;
  }
  .nav-menu.is-open{ display: flex; flex-direction: column; align-items: stretch; }
  .nav-link{ width: 100%; }
  .form-row--two{ grid-template-columns: 1fr; }
}


/* === Scroll reveal animations (added safely, no layout overrides) === */
.js-reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

.js-reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Szacunek dla preferencji użytkownika (reduced motion) */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* Stagger for lists/cards (applies only if JS sets style="transition-delay") */
.js-reveal[data-reveal-stagger="true"]{}

/* Respect accessibility */
@media (prefers-reduced-motion: reduce){
  .js-reveal{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* === Logo animation === */
.brand-logo{
  animation: logoFloat 4s ease-in-out infinite,
             logoGlow 6s ease-in-out infinite;
}

@keyframes logoFloat{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-12px); }
  100%{ transform: translateY(0); }
}

@keyframes logoGlow{
  0%{ filter: drop-shadow(0 12px 28px rgba(0,0,0,.16)); }
  50%{ filter: drop-shadow(0 16px 32px rgba(255,182,39,.55)); }
  100%{ filter: drop-shadow(0 12px 28px rgba(0,0,0,.16)); }
}


/* === Dropdown: Oferta (lista placów zabaw) === */
.nav-item{ position: relative; }

.nav-item--dropdown{ position: relative;  z-index: 25; }

.nav-item--dropdown .dropdown-menu{
  /* hover-bridge: pozwala przejść kursorem z przycisku na listę bez zamykania */
  list-style: none;
  margin: 0;
  padding: 10px;
  position: absolute;
  top: 100%;
  margin-top: 14px;
  margin-top: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: rgba(255,255,255,.96);
  border: 2px solid rgba(255,255,255,1);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);

  z-index: 1000;
  pointer-events: auto;


  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .14s ease, transform .14s ease, visibility 0s linear .14s;
}

.nav-item--dropdown:hover .dropdown-menu,
.nav-item--dropdown .dropdown-menu:hover,
.nav-item--dropdown:focus-within .dropdown-menu,
.nav-item--dropdown.is-open .dropdown-menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .18s ease, transform .18s ease, visibility 0s;
}


.nav-item--dropdown .dropdown-menu::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}


/* === Dropdown: unikalne kolory dla każdego domku === */
.dropdown-link{
  --hover-bg: rgba(8,48,79,.06);
  --hover-border: rgba(8,48,79,.18);
  --hover-color: #08304f;
}

.dropdown-link{
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  color: #08304f;
  font-family: "Baloo 2", system-ui, sans-serif;
  background: rgba(8,48,79,.02);
  border: 2px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.dropdown-link:hover,
.dropdown-link:focus-visible{
  background: var(--hover-bg);
  border-color: var(--hover-border);
  color: var(--hover-color);
  transform: translateY(-1px);
}
@media (max-width: 720px){
  .nav-item--dropdown .dropdown-menu{
  /* hover-bridge: pozwala przejść kursorem z przycisku na listę bez zamykania */
    /* Na telefonach dropdown nie jest używany ("Place zabaw" działa jak zwykły link).
       Ukrywamy go display:none, aby nie zostawiał pustej przestrzeni
       (opacity/visibility przy position:static nadal zajmuje miejsce).
    */
    display: none !important;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
  }
}

/* === Zachęcająca animacja przycisku "Oferta" === */
@keyframes oferta-jump{
  0%{ transform: translateY(0); color: inherit; }
  30%{ transform: translateY(-6px); }
  60%{ transform: translateY(0); color: #d60000; }
  100%{ transform: translateY(0); color: inherit; }
}

.oferta-link.oferta-animate{
  animation: oferta-jump 1s ease;
}




.nav-item--dropdown:hover .dropdown-menu li,
.nav-item--dropdown .dropdown-menu:hover li,
.nav-item--dropdown:focus-within .dropdown-menu li,
.nav-item--dropdown.is-open .dropdown-menu li{
  opacity: 1;
  transform: translateY(0);
}

.nav-item--dropdown:hover .dropdown-menu li:nth-child(1),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(1),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(1),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(1){ transition-delay: 0ms; }

.nav-item--dropdown:hover .dropdown-menu li:nth-child(2),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(2),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(2),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(2){ transition-delay: 640ms; }

.nav-item--dropdown:hover .dropdown-menu li:nth-child(3),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(3),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(3),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(3){ transition-delay: 640ms; }

.nav-item--dropdown:hover .dropdown-menu li:nth-child(4),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(4),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(4),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(4){ transition-delay: 480ms; }

.nav-item--dropdown:hover .dropdown-menu li:nth-child(5),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(5),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(5),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(5){ transition-delay: 640ms; }

.nav-item--dropdown:hover .dropdown-menu li:nth-child(6),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(6),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(6),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(6){ transition-delay: 400ms; }

.nav-item--dropdown:hover .dropdown-menu li:nth-child(7),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(7),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(7),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(7){ transition-delay: 480ms; }

.nav-item--dropdown:hover .dropdown-menu li:nth-child(8),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(8),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(8),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(8){ transition-delay: 560ms; }

.nav-item--dropdown:hover .dropdown-menu li:nth-child(9),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(9),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(9),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(9){ transition-delay: 640ms; }

.nav-item--dropdown:hover .dropdown-menu li:nth-child(10),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(10),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(10),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(10){ transition-delay: 720ms; }


/* === Dropdown items stagger animation (open: góra->dół, close: dół->góra) === */
.nav-item--dropdown .dropdown-menu li{
  opacity: 0;
  transform: translateY(-10px);
  /* close speed */
  transition: opacity .18s ease, transform .18s ease;
}

/* OPEN state for items */
.nav-item--dropdown:hover .dropdown-menu li,
.nav-item--dropdown .dropdown-menu:hover li,
.nav-item--dropdown:focus-within .dropdown-menu li,
.nav-item--dropdown.is-open .dropdown-menu li{
  opacity: 1;
  transform: translateY(0);
  /* open speed */
  transition: opacity .35s ease, transform .35s ease;
}

/* OPEN delays: góra -> dół */
.nav-item--dropdown:hover .dropdown-menu li:nth-child(1),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(1),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(1),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(1){ transition-delay: 0ms; }

.nav-item--dropdown:hover .dropdown-menu li:nth-child(2),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(2),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(2),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(2){ transition-delay: 120ms; }

.nav-item--dropdown:hover .dropdown-menu li:nth-child(3),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(3),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(3),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(3){ transition-delay: 240ms; }

.nav-item--dropdown:hover .dropdown-menu li:nth-child(4),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(4),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(4),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(4){ transition-delay: 360ms; }

.nav-item--dropdown:hover .dropdown-menu li:nth-child(5),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(5),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(5),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(5){ transition-delay: 480ms; }

.nav-item--dropdown:hover .dropdown-menu li:nth-child(6),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(6),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(6),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(6){ transition-delay: 600ms; }

.nav-item--dropdown:hover .dropdown-menu li:nth-child(7),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(7),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(7),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(7){ transition-delay: 720ms; }

.nav-item--dropdown:hover .dropdown-menu li:nth-child(8),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(8),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(8),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(8){ transition-delay: 840ms; }

.nav-item--dropdown:hover .dropdown-menu li:nth-child(9),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(9),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(9),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(9){ transition-delay: 960ms; }

.nav-item--dropdown:hover .dropdown-menu li:nth-child(10),
.nav-item--dropdown .dropdown-menu:hover li:nth-child(10),
.nav-item--dropdown:focus-within .dropdown-menu li:nth-child(10),
.nav-item--dropdown.is-open .dropdown-menu li:nth-child(10){ transition-delay: 1080ms; }

/* CLOSE delays: dół -> góra (ustawione w stanie bazowym, gdy menu się zamyka) */
.nav-item--dropdown .dropdown-menu li:nth-child(1){ transition-delay: 360ms; }
.nav-item--dropdown .dropdown-menu li:nth-child(2){ transition-delay: 320ms; }
.nav-item--dropdown .dropdown-menu li:nth-child(3){ transition-delay: 280ms; }
.nav-item--dropdown .dropdown-menu li:nth-child(4){ transition-delay: 240ms; }
.nav-item--dropdown .dropdown-menu li:nth-child(5){ transition-delay: 200ms; }
.nav-item--dropdown .dropdown-menu li:nth-child(6){ transition-delay: 160ms; }
.nav-item--dropdown .dropdown-menu li:nth-child(7){ transition-delay: 120ms; }
.nav-item--dropdown .dropdown-menu li:nth-child(8){ transition-delay: 80ms; }
.nav-item--dropdown .dropdown-menu li:nth-child(9){ transition-delay: 40ms; }
.nav-item--dropdown .dropdown-menu li:nth-child(10){ transition-delay: 0ms; }



.nav-item--dropdown .dropdown-menu li:nth-child(1) .dropdown-link{ --hover-bg: rgba(0,145,255,.12); --hover-border: rgba(0,145,255,.45); --hover-color: #0077cc; }
.nav-item--dropdown .dropdown-menu li:nth-child(2) .dropdown-link{ --hover-bg: rgba(255,184,0,.18); --hover-border: rgba(255,184,0,.55); --hover-color: #b87500; }
.nav-item--dropdown .dropdown-menu li:nth-child(3) .dropdown-link{ --hover-bg: rgba(0,200,83,.14); --hover-border: rgba(0,200,83,.45); --hover-color: #0a8f3f; }
.nav-item--dropdown .dropdown-menu li:nth-child(4) .dropdown-link{ --hover-bg: rgba(186,104,200,.16); --hover-border: rgba(186,104,200,.5); --hover-color: #7b2f8a; }
.nav-item--dropdown .dropdown-menu li:nth-child(5) .dropdown-link{ --hover-bg: rgba(255,82,82,.14); --hover-border: rgba(255,82,82,.5); --hover-color: #c62828; }
.nav-item--dropdown .dropdown-menu li:nth-child(6) .dropdown-link{ --hover-bg: rgba(0,188,212,.14); --hover-border: rgba(0,188,212,.5); --hover-color: #00838f; }
.nav-item--dropdown .dropdown-menu li:nth-child(7) .dropdown-link{ --hover-bg: rgba(255,112,67,.16); --hover-border: rgba(255,112,67,.55); --hover-color: #c4512d; }
.nav-item--dropdown .dropdown-menu li:nth-child(8) .dropdown-link{ --hover-bg: rgba(63,81,181,.16); --hover-border: rgba(63,81,181,.5); --hover-color: #2c3aa6; }
.nav-item--dropdown .dropdown-menu li:nth-child(9) .dropdown-link{ --hover-bg: rgba(156,204,101,.18); --hover-border: rgba(156,204,101,.6); --hover-color: #558b2f; }
.nav-item--dropdown .dropdown-menu li:nth-child(10) .dropdown-link{ --hover-bg: rgba(255,64,129,.16); --hover-border: rgba(255,64,129,.55); --hover-color: #ad1457; }


/* === Ramka i estetyka dropdownu Oferta === */
.nav-item--dropdown .dropdown-menu{
  border: 2px solid rgba(8,48,79,.18);
  box-shadow:
    0 18px 40px rgba(0,0,0,.18),
    inset 0 0 0 2px rgba(255,255,255,.65);
}


/* === Strzałka wychodząca bezpośrednio spod przycisku "Oferta" (z animacją) === */
.nav-item--dropdown{
  position: relative;
}

.nav-item--dropdown .oferta-link{
  position: relative;
}

.nav-item--dropdown .oferta-link::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid rgba(255,255,255,.96);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-2px);
  transition: opacity .18s ease, transform .18s ease;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.15));
}

@keyframes oferta-arrow-bounce{
  0%, 100% { transform: translateX(-50%) translateY(-1px); }
  50%      { transform: translateX(-50%) translateY(2px); }
}

/* Strzałka widoczna + animowana tylko gdy dropdown otwarty */
.nav-item--dropdown:hover .oferta-link::after,
.nav-item--dropdown.is-open .oferta-link::after{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  animation: oferta-arrow-bounce .9s ease-in-out infinite;
}

/* Szanuj ustawienie systemowe „mniej animacji” */
@media (prefers-reduced-motion: reduce){
  .nav-item--dropdown:hover .oferta-link::after,
  .nav-item--dropdown.is-open .oferta-link::after{
    animation: none;
  }
}

/* =========================
   Product pages (shared)
   Extracted from timon.html and unified for all product subpages
   ========================= */

/* Headings on product pages */
.section-title{
  font-family:"Baloo 2",system-ui,sans-serif;
  font-size:clamp(30px,3vw,46px);
  line-height:1.1;
  margin:0;
}
.section-subtitle{
  margin:0;
  font-size:18px;
  color:rgba(19,48,76,.78);
  max-width:70ch;
}

/* Product layout */
.product-wrap{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:20px;
  align-items:start;
  max-width:1200px;
  margin:0 auto;
}
@media (max-width: 980px){
  .product-wrap{grid-template-columns:1fr;gap:18px}
}

/* Gallery */
.product-gallery{
  background:rgba(255,255,255,.7);
  border:1px solid rgba(15,23,42,.08);
  border-radius:18px;
  overflow:hidden;
}
.product-main{
  position:relative;

  /* unify main image window across all products */
  aspect-ratio:1/1;
  max-width:520px;
  margin:0 auto;
  overflow:hidden;
}

/* NOTE: height:100% is needed to fill the 1:1 window reliably */
.product-main img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;

  background:#fff;
  border-radius:16px;
  border:4px solid rgba(15,23,42,.22);
  box-shadow:0 12px 30px rgba(15,23,42,.18);

  transition:opacity .25s ease, transform .25s ease;
  will-change:opacity, transform;
}
.product-main img.is-fading{opacity:0;transform:scale(.985)}

/* Gallery arrows */
.gallery-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  border:1px solid rgba(15,23,42,.18);
  background:rgba(255,255,255,.88);
  backdrop-filter:saturate(140%) blur(6px);
  border-radius:999px;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.gallery-btn:hover{background:#fff}
.gallery-btn:active{transform:translateY(-50%) scale(.98)}
.gallery-btn--prev{left:12px}
.gallery-btn--next{right:12px}
.gallery-btn svg{width:18px;height:18px}

/* Thumbnails */
.product-thumbs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
  justify-content:center;
  padding:0 12px 14px;
}
.thumb{
  width:86px;
  height:64px;
  border:1px solid rgba(15,23,42,.14);
  border-radius:12px;
  overflow:hidden;
  background:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.thumb[aria-current="true"]{
  outline:3px solid rgba(34,197,94,.35);
  border-color:rgba(34,197,94,.55);
}
.thumb img{width:100%;height:100%;object-fit:cover;display:block}

/* Right panel */
.product-panel{
  background:rgba(255,255,255,.7);
  border:1px solid rgba(15,23,42,.08);
  border-radius:18px;
  padding:18px;
}
.product-title{
  font-family:"Baloo 2",system-ui,sans-serif;
  font-size:38px;
  line-height:1.05;
  margin:0 0 8px;
}
.product-desc{color:rgba(15,23,42,.78);margin:0 0 14px}
.product-note{font-size:14px;color:rgba(15,23,42,.65);margin:0 0 16px}
.product-note a{color:inherit}

/* Addons */
.addons{margin-top:14px}
.addons h2{font-size:18px;margin:0 0 10px}
.addon{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid rgba(15,23,42,.1);
  border-radius:14px;
  background:#fff;
}
.addon + .addon{margin-top:10px}
.addon input[type="checkbox"]{
  width:16px;height:16px;margin:0;
  accent-color:#16a34a;
  flex:0 0 auto
}
.addon label{
  display:flex;
  align-items:center;
  gap:10px;
  flex:1;
  cursor:pointer;
  margin:0
}
.addon-title{display:flex;align-items:center;gap:8px;flex:1;min-width:0}
.addon-title strong{font-weight:700}
.addon-price{font-weight:700;color:rgba(15,23,42,.9)}
.addon-help{display:none}

.addon-qty{margin-left:auto;display:flex;gap:8px;align-items:center}
.addon-qty input{
  width:70px;
  padding:8px 10px;
  border:1px solid rgba(15,23,42,.18);
  border-radius:12px;
  font:inherit
}

/* Price box */
.pricebox{margin-top:16px;border-top:1px solid rgba(15,23,42,.08);padding-top:14px}
.price-row{display:flex;align-items:baseline;justify-content:space-between;gap:12px}
.price-label{color:rgba(15,23,42,.7)}
.price-value{font-family:"Baloo 2",system-ui,sans-serif;font-size:28px;margin:0}
.price-sub{margin:6px 0 0;color:rgba(15,23,42,.65);font-size:14px}
.product-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
.product-actions .btn{flex:0 0 auto}

/* Spec table */
.spec-card{margin-top:22px;max-width:1000px;margin-left:auto;margin-right:auto}
.spec-card h2{margin:0 0 12px}
.spec-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  border:1px solid rgba(15,23,42,.12);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
}
.spec-table th,.spec-table td{
  padding:12px 14px;
  border-right:1px solid rgba(15,23,42,.08);
  border-bottom:1px solid rgba(15,23,42,.08);
  text-align:left;
  vertical-align:top;
}
.spec-table th:last-child,.spec-table td:last-child{border-right:none}
.spec-table tr:last-child td{border-bottom:none}
.spec-table tr:nth-child(odd) td{background:rgba(15,23,42,.02)}
.spec-table thead th{background:rgba(15,23,42,.04);font-weight:700}
.spec-hint{margin:10px 0 0;color:rgba(15,23,42,.62);font-size:14px}

/* Forced separators (used in some product tables) */
.spec-table .spec-divider td{
  padding:0 !important;
  height:0 !important;
  border:0 !important;
  border-top:1px solid rgba(0,0,0,.12) !important;
  background:transparent !important;
}
.spec-table .spec-after-divider td{padding-top:16px !important}

/* Optional stable checkerboard rows (if you use these classes in tbody) */
table.spec-table tbody tr.kb-spec-row td{background:#f7f5f1 !important}
table.spec-table tbody tr.kb-spec-row.kb-alt td{background:#e2ded6 !important}

/* Why-us section (used on timon.html, safe for others) */
.why-us{margin-top:24px;max-width:1000px;margin-left:auto;margin-right:auto}
.why-us .section-title{margin:0 0 16px}
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
@media (max-width: 1100px){.why-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width: 600px){.why-grid{grid-template-columns:1fr}}
.why-item{
  padding:16px;
  border:1px solid rgba(15,23,42,.12);
  border-radius:18px;
  background:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  text-align:center
}
.why-icon{
  width:54px;height:54px;border-radius:16px;
  display:grid;place-items:center;
  background:rgba(37,99,235,.10);
  border:1px solid rgba(37,99,235,.18);
  color:#2563eb
}
.why-icon svg{width:26px;height:26px;display:block}
.why-item h3{margin:0;font-size:16px}
.why-item p{margin:0;color:rgba(15,23,42,.72);font-size:14px;line-height:1.45}

/* Modal: inquiry form (safe shared) */
.modal{position:fixed;inset:0;display:none;z-index:9999}
.modal.is-open{display:block}
.modal__overlay{position:absolute;inset:0;background:rgba(0,0,0,.55);backdrop-filter:saturate(1.2) blur(3px)}
.modal__dialog{
  position:relative;
  max-width:720px;
  width:calc(100% - 28px);
  margin:60px auto;
  background:#fff;
  border-radius:18px;
  box-shadow:0 25px 70px rgba(0,0,0,.25);
  padding:22px 20px 18px
}
.modal__title{
  margin:0 0 14px;
  font-family:"Baloo 2",system-ui,sans-serif;
  font-size:28px;
  line-height:1.1;
  color:#13304c
}
.modal__close{
  position:absolute;top:10px;right:12px;
  border:0;background:transparent;
  font-size:28px;line-height:1;color:#13304c;
  cursor:pointer;padding:6px 10px;border-radius:10px
}
.modal__close:hover{background:rgba(19,48,76,.08)}
.modal__summary{
  border:1px solid rgba(19,48,76,.14);
  border-radius:14px;
  padding:14px 14px;
  margin-bottom:14px;
  background:rgba(19,48,76,.03)
}
.summary-row{display:grid;grid-template-columns:170px 1fr;gap:10px;align-items:start}
.summary-row--total{margin-top:10px;padding-top:10px;border-top:1px dashed rgba(19,48,76,.22);align-items:center}
.summary-label{font-weight:700;color:#13304c}
.summary-list{margin:0;padding-left:18px;color:rgba(19,48,76,.9)}
.summary-list li{margin:4px 0}
.summary-total{font-weight:800;font-size:18px;color:#13304c}
.modal__form .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.field{display:flex;flex-direction:column;gap:6px}
.field__label{font-size:14px;color:rgba(19,48,76,.85);font-weight:600}
.field__input{
  height:44px;border-radius:12px;
  border:1px solid rgba(19,48,76,.18);
  padding:0 12px;font-size:16px;outline:none
}
.field__input:focus{border-color:rgba(19,48,76,.45);box-shadow:0 0 0 4px rgba(19,48,76,.08)}
.modal__actions{display:flex;gap:10px;justify-content:flex-end;margin-top:14px}
.modal__hint{margin:10px 0 0;color:rgba(19,48,76,.75);font-size:13px}
@media (max-width: 720px){
  .modal__dialog{margin:22px auto;padding:18px 16px 14px}
  .summary-row{grid-template-columns:1fr}
  .modal__form .form-grid{grid-template-columns:1fr}
  .modal__actions{flex-direction:column-reverse;align-items:stretch}
}
.field-error{margin-top:6px;font-size:12px;line-height:1.3;color:#c81e1e}

/* Product logo block (used on some pages) */
.product-logo{text-align:center;margin-bottom:20px}
.product-logo img{max-width:100%;height:auto}

/* Korekta odstępu po usuniętym podtytule (legacy selectors) */
.gallery,
.product-gallery,
.images,
.photos{margin-top:10px !important}

/* SLIDER: paleta kolorów (kb-slider) */
.kb-slider{
  display:grid;
  grid-template-columns:44px 1fr 44px;
  gap:12px;
  align-items:center;
  max-width:980px;
  margin:0 auto 14px;
}
.kb-slider-main{
  border-radius:18px;
  border:3px solid rgba(15,23,42,.25);
  background:#fff;
  padding:8px;
  box-shadow:0 12px 32px rgba(0,0,0,.18);
  overflow:hidden;
}
.kb-slider-main-img{
  width:100%;
  height:auto;
  display:block;
  border-radius:12px;
  max-height:72vh;
  object-fit:contain;

  opacity:1;
  transition:opacity .45s ease;
  will-change:opacity;
}
.kb-slider-main.is-fading .kb-slider-main-img{opacity:0}
.kb-slider-btn{
  height:44px;width:44px;border-radius:999px;
  border:2px solid rgba(255,255,255,.5);
  background:rgba(0,0,0,.25);
  color:#fff;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.kb-slider-btn:hover{transform:scale(1.05);background:rgba(0,0,0,.35);border-color:rgba(34,197,94,.75)}
.kb-slider-thumbs{
  max-width:980px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(8,minmax(0,1fr));
  gap:10px;
}
@media (max-width: 900px){
  .kb-slider-thumbs{grid-template-columns:repeat(4,minmax(0,1fr))}
}
@media (max-width: 520px){
  .kb-slider{grid-template-columns:36px 1fr 36px}
  .kb-slider-btn{height:36px;width:36px;font-size:24px}
  .kb-slider-thumbs{grid-template-columns:repeat(3,minmax(0,1fr))}
  .kb-slider-main-img{max-height:62vh}
}
.kb-thumb{
  border-radius:14px;
  border:2px solid rgba(15,23,42,.18);
  background:#fff;
  padding:4px;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
  transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.kb-thumb img{width:100%;height:auto;display:block;border-radius:10px}
.kb-thumb:hover{transform:translateY(-2px);border-color:rgba(34,197,94,.65);box-shadow:0 12px 26px rgba(0,0,0,.18)}
.kb-thumb.is-active{border-color:rgba(34,197,94,.9);box-shadow:0 14px 30px rgba(0,0,0,.22)}

/* KB COLOR SLIDER (legacy variant) */
.kb-color-slider{
  display:grid;
  grid-template-columns:44px 1fr 44px;
  gap:12px;
  align-items:center;
  max-width:920px;
  margin:0 auto 14px;
}
.kb-color-main{
  border-radius:18px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  padding:10px;
  box-shadow:0 12px 32px rgba(0,0,0,.12);
  overflow:hidden;
}
.kb-color-main-img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
  max-height:60vh;
  object-fit:contain;
  opacity:1;
  transition:opacity .45s ease;
}
.kb-color-main.is-fading .kb-color-main-img{opacity:0}
.kb-color-btn{
  height:44px;width:44px;border-radius:999px;
  border:1px solid rgba(15,23,42,.18);
  background:rgba(255,255,255,.85);
  backdrop-filter:saturate(140%) blur(6px);
  color:rgba(15,23,42,.9);
  font-size:28px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.kb-color-btn:hover{background:#fff}
.kb-color-thumbs{
  max-width:920px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(8,minmax(0,1fr));
  gap:10px;
}
@media (max-width: 900px){
  .kb-color-thumbs{grid-template-columns:repeat(4,minmax(0,1fr))}
}
@media (max-width: 520px){
  .kb-color-slider{grid-template-columns:36px 1fr 36px}
  .kb-color-btn{height:36px;width:36px;font-size:24px}
  .kb-color-main-img{max-height:52vh}
  .kb-color-thumbs{grid-template-columns:repeat(3,minmax(0,1fr))}
}
.kb-color-thumb{
  border-radius:14px;
  border:1px solid rgba(15,23,42,.14);
  background:#fff;
  padding:4px;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(0,0,0,.10);
}
.kb-color-thumb img{width:100%;height:auto;display:block;border-radius:10px}
.kb-color-thumb.is-active{
  outline:3px solid rgba(34,197,94,.35);
  border-color:rgba(34,197,94,.55);
}

/* Social icons */
.social-icons{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:center;
  margin-top: -4px;
}

.social-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:999px;
  color: rgba(255,255,255,.82);
  transition: transform .2s ease, color .2s ease, background-color .2s ease;
}

.social-icon img{
  width:22px;
  height:22px;
  display:block;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.12));
}

.social-icon:hover{
  color: rgba(255,255,255,1);
  background-color: rgba(255,255,255,.12);
  transform: translateY(-1px);
}

/* Social media section */
.social-wrapper{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.social-title{
  font-weight:700;
  letter-spacing:2px;
  font-size:14px;
  color:#ffffff;
  opacity:.9;
}
.social-icons{
  display:flex;
  gap:16px;
}
.social-icon{
  width:52px;
  height:52px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.6);
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.1);
  transition:.3s;
}
.social-icon img{
  width:28px;
  height:28px;
  opacity:.85;
}
.social-icon:hover{
  background:rgba(255,255,255,.25);
  transform:scale(1.08);
}

/* Social media titles */
.social-find{
  font-size:18px;
  font-weight:800;
  letter-spacing:2px;
  color:#ffffff;
}
.social-title{
  font-size:11px;
  letter-spacing:2px;
  opacity:.85;
}

/* Social media background panel */
.social-wrapper{
  padding:14px 20px;
  border-radius:16px;
  background:rgba(0,0,0,.35);
  backdrop-filter: blur(4px);
}

/* Alternative social media background */
.social-wrapper{
  background:linear-gradient(135deg, rgba(0,0,0,.55), rgba(0,0,0,.25));
  border:1px solid rgba(255,255,255,.15);
  box-shadow:0 8px 20px rgba(0,0,0,.25);
}

/* Layout: titles and icons in one row */
.social-wrapper{
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
.social-find, .social-title{
  margin:0;
  line-height:1;
  white-space:nowrap;
}
.social-icons{
  display:flex;
  gap:14px;
  align-items:center;
}

/* Force single row: text + icons */
.social-row{
  display:flex;
  align-items:center;
  gap:20px;
}
.social-text{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  line-height:1.1;
}
.social-icons{
  display:flex;
  gap:14px;
}

/* Brand colors for social icons */
.social-icon[aria-label="Facebook"]{
  border-color:#1877f2;
  background:rgba(24,119,242,.15);
}
.social-icon[aria-label="Instagram"]{
  border-color:#E1306C;
  background:rgba(225,48,108,.15);
}
.social-icon[aria-label="OLX"]{
  border-color:#6f2cff;
  background:rgba(111,44,255,.15);
}
.social-icon[aria-label="Facebook"] img{ filter:none; }
.social-icon[aria-label="Instagram"] img{ filter:none; }
.social-icon[aria-label="OLX"] img{ filter:none; }

/* Color SVG icons themselves */
.social-icon{
  color: inherit;
}
.social-icon[aria-label="Facebook"]{
  color:#1877f2;
}
.social-icon[aria-label="Instagram"]{
  color:#E1306C;
}
.social-icon[aria-label="OLX"]{
  color:#6f2cff;
}
.social-icon img,
.social-icon svg{
  filter:none;
}

/* Inline SVG icons should inherit color */
.social-icon .social-svg{
  width:28px;
  height:28px;
  display:block;
}

/* Brand icons 1:1 (full color) */
.social-icon{
  border:none !important;
  background:transparent !important;
  width:auto !important;
  height:auto !important;
  padding:0 !important;
  border-radius:0 !important;
  display:flex;
  align-items:center;
  justify-content:center;
}
.brand-svg{
  width:44px;
  height:44px;
  display:block;
}
.social-icon:hover .brand-svg{
  transform:scale(1.06);
  transition:transform .2s ease;
}

/* Black frame around brand icons */
.social-icon{
  border:2px solid #000 !important;
  border-radius:50% !important;
  padding:6px !important;
}
.brand-svg{
  border-radius:50%;
}

/* Frame flush to icon */
.social-icon{
  padding:0 !important;
  border:2px solid #000 !important;
  border-radius:50% !important;
}
.brand-svg{
  display:block;
}

/* Frame only on hover */
.social-icon{
  border:none !important;
}
.social-icon:hover{
  border:2px solid #000 !important;
  border-radius:50%;
}

/* Disable hover effects for social icons */
.social-icon:hover{
  border:none !important;
  transform:none !important;
}
.brand-svg{
  transition:none !important;
}

/* Square social icons */
.social-icon{
  border-radius:0 !important;
}
.brand-svg{
  border-radius:0 !important;
}

/* Ensure square appearance */
.brand-svg{
  width:44px;
  height:44px;
}

/* Rounded square brand icons (Instagram style) */
.brand-svg{
  width:44px;
  height:44px;
  display:block;
}

/* Rounded-square icons (Instagram-like) */
.brand-svg{
  border-radius:12px !important;
  overflow:hidden;
}

/* Unified size for all social brand icons */
.social-icon{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.brand-svg{
  width:48px;
  height:48px;
}

/* Visual size equalization */
.instagram-svg{
  transform:scale(1.08);
  transform-origin:center;
}

/* Smaller icons to better match 'ZNAJDŹ NAS' / 'SOCIAL MEDIA' */
.social-icon{
  width:34px !important;
  height:34px !important;
}
.brand-svg{
  width:34px !important;
  height:34px !important;
}
/* keep optical equalization but slightly gentler at smaller size */
.instagram-svg{
  transform:scale(1.06) !important;
}

/* Animated hover for social icons */
.social-icon{
  transition: transform .25s ease, filter .25s ease;
}
.social-icon:hover{
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.25));
}

/* Alternative hover: soft glow + slight press */
.social-icon{
  transition: box-shadow .25s ease, transform .25s ease;
}
.social-icon:hover{
  transform: scale(0.97);
  box-shadow: 0 0 0 3px rgba(0,0,0,.12);
}

/* ===============================
   HOVER VARIANTS – choose ONE
   =============================== */

/* VARIANT A – Lift & shadow (dynamic) */
/*
.social-icon{
  transition: transform .25s ease, filter .25s ease;
}
.social-icon:hover{
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.25));
}
*/

/* VARIANT B – Press & outline (elegant UI) */
/*
.social-icon{
  transition: transform .25s ease, box-shadow .25s ease;
}
.social-icon:hover{
  transform: scale(0.97);
  box-shadow: 0 0 0 3px rgba(0,0,0,.15);
}
*/

/* VARIANT C – Soft glow (minimal & premium) */
/*
.social-icon{
  transition: box-shadow .25s ease;
}
.social-icon:hover{
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}
*/

/* FINAL HOVER – Variant B (Press & outline) */
.social-icon{
  transition: transform .25s ease, box-shadow .25s ease;
}
.social-icon:hover{
  transform: scale(0.97);
  box-shadow: 0 0 0 3px rgba(0,0,0,.15);
}

/* FIX: rounded outline matching icon shape */
.social-icon{
  border-radius:12px; /* match rounded-square icons */
}
.social-icon:hover{
  border-radius:12px;
  box-shadow: 0 0 0 3px rgba(0,0,0,.15);
}

/* FIXED HOVER: rounded outline + lift (works for all icons incl. Instagram) */
.social-icon{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.icon-inner{
  width:34px;
  height:34px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.icon-inner svg{
  width:100%;
  height:100%;
  border-radius:12px;
  display:block;
}

.social-icon:hover .icon-inner{
  transform: translateY(-2px) scale(0.97);
  box-shadow: 0 0 0 3px rgba(0,0,0,.15);
}

/* ===============================
   FINAL OVERRIDE: clean hover + rounded outline
   (prevents old accumulated hover rules)
   =============================== */
.social-icon,
.social-icon:hover{
  border:none !important;
  box-shadow:none !important;
  filter:none !important;
  transform:none !important;
}

.social-icon{
  width:34px !important;
  height:34px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}

.icon-inner{
  position:relative !important;
  width:34px !important;
  height:34px !important;
  border-radius:12px !important;
  overflow:hidden !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  transition: transform .22s ease !important;
}

.icon-inner svg{
  width:100% !important;
  height:100% !important;
  border-radius:12px !important;
  display:block !important;
}

/* Rounded outline drawn by pseudo-element so it's never square */
.icon-inner::after{
  content:"";
  position:absolute;
  inset:-3px;
  border:3px solid rgba(0,0,0,.18);
  border-radius:14px;
  opacity:0;
  transition: opacity .18s ease;
  pointer-events:none;
}

.social-icon:hover .icon-inner{
  transform: translateY(-2px) scale(0.97) !important;
}

.social-icon:hover .icon-inner::after{
  opacity:1;
}

/* Phone number next to social icons */
.social-phone{
  display:flex;
  flex-direction:column;
  justify-content:center;
  margin-left:16px;
  line-height:1.1;
}
.phone-label{
  font-size:11px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  opacity:.8;
}
.phone-number{
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
}

/* Phone text styled like 'ZNAJDŹ NAS / SOCIAL MEDIA' */
.social-phone{
  text-align:left;
}
.social-phone .phone-label{
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#ffffff;
  opacity:1;
}
.social-phone .phone-number{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#ffffff;
  opacity:.85;
  font-weight:600;
}

/* Phone text styled like 'ZNAJDŹ NAS / SOCIAL MEDIA' */
.social-phone{
  text-align:left;
}
.social-phone .phone-label{
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#ffffff;
}
.social-phone .phone-number{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#ffffff;
  opacity:.85;
  font-weight:600;
}

/* Phone text – reversed hierarchy to match request */
.social-phone{
  text-align:left;
}
.social-phone .phone-number{
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#ffffff;
  opacity:1;
}
.social-phone .phone-label{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#ffffff;
  opacity:.85;
  font-weight:600;
}

/* Bigger phone number for emphasis */
.social-phone .phone-number{
  font-size:18px;
}

/* Alternative background for social bar – neutral dark */
.social-wrapper{
  background:rgba(20,20,20,.6);
}

/* Graphite background for social section */
.social-wrapper{
  background:linear-gradient(180deg, rgba(45,45,45,.95), rgba(30,30,30,.95));
}


/* Oferta — kafelki produktów */
.offer-grid--products{
  margin-top: 18px;
}

.offer--product{
  padding: 14px;
  text-decoration: none;
  align-content: start;
  min-height: unset;
  overflow: hidden;
}

.offer--product:hover{
  transform: translateY(-2px);
}

.offer-product-media{
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.85);
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
  display:flex;
  align-items:center;
  justify-content:center;
}

.offer-product-photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.offer-product-name{
  width: min(180px, 82%);
  height: auto;
  margin: 10px auto 2px;
  display:block;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.12));
}




/* ================================
   PREMIUM PRICE BADGE – BRĄZ / ZŁOTO
   (WERSJA POPRAWIONA / BEZ BUGÓW)
================================ */

/* centrowanie elementów w karcie */
.offer--product{
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* badge cenowy */
.offer--product .offer-price-badge{
  position: relative;        /* 🔑 KLUCZ – ogranicza ::after */
  overflow: hidden;          /* 🔑 KLUCZ – nie „wylewa się” */

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 10px auto 0;
  align-self: center;

  padding: 10px 18px;
  border-radius: 16px;

  /* brązowo-złoty gradient */
  background: linear-gradient(
    180deg,
    #5c3a1e 0%,     /* ciepły brąz */
    #3b2414 100%    /* głęboki brąz */
  );

  /* złoty akcent */
  border: 1px solid rgba(212,175,55,.55);
  box-shadow:
    0 12px 28px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,215,120,.25);

  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;

  color: #fdf6e3; /* ciepła kość słoniowa */

  transition: transform .2s ease, box-shadow .2s ease;
}

/* subtelny złoty blik (TYLKO w badge) */
.offer--product .offer-price-badge::after{
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 14px;
  pointer-events: none;

  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,215,120,.18) 50%,
    transparent 70%
  );
}

/* hover – premium, ale spokojny */
.offer--product:hover .offer-price-badge{
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,215,120,.35);
}

/* mobile */
@media (max-width: 520px){
  .offer--product .offer-price-badge{
    margin-top: 8px;
    padding: 8px 14px;
    font-size: 12px;
    border-radius: 14px;
  }

  /* brak „skakania” na dotyku */
  .offer--product:hover .offer-price-badge{
    transform: none;
  }
}




/* Korekta wysokości sekcji produktu */
.product-main {
    margin-top: 60px;
    padding-top: 40px;
}


/* --- Poprawka: dropdown "Place zabaw" nie znika przy przejściu kursorem --- */
/* Powiększamy "mostek" między linkiem a listą (hover-bridge) oraz zmniejszamy przerwę. */
.nav-item--dropdown .dropdown-menu{
  margin-top: 8px !important;
}
.nav-item--dropdown .dropdown-menu::before{
  top: -28px !important;
  height: 28px !important;
}

/* --- Mobile overflow hardening (prevents horizontal scroll caused by social/phone bar) --- */
.social-wrapper,
.social-row,
.social-icons,
.social-phone{
  max-width: 100%;
}

@media (max-width: 768px){
  .social-wrapper{
    width: 100%;
    padding: 10px 12px;
    gap: 10px;
  }

  .social-row{
    width: 100%;
    gap: 12px;
    justify-content: space-between;
  }

  .social-icons{
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .social-phone{
    margin-left: 0;
    text-align: center;
    align-items: center;
  }

  .social-find,
  .social-title{
    white-space: normal;
  }

  .social-phone .phone-number{
    white-space: normal;
    overflow-wrap: anywhere;
    letter-spacing: 1px;
  }
}


/* --- Opinie (statyczne) --- */
.reviews-grid{ align-items: start; }
.reviews-cta{ display:flex; flex-wrap:wrap; gap:12px; margin-top:18px; }
.reviews-list{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:16px;
}
.review-card{
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.review-top{ display:flex; align-items:baseline; justify-content:space-between; gap:12px; margin-bottom:8px; }
.review-name{ font-weight: 800; }
.review-meta{ font-size: 14px; opacity: 0.8; white-space: nowrap; }
.review-stars{ letter-spacing: 1px; font-size: 16px; margin-bottom: 10px; }
.review-text{ margin: 0; line-height: 1.45; }

@media (max-width: 980px){
  .reviews-list{ grid-template-columns: 1fr; }
  .review-meta{ white-space: normal; text-align: right; }
}



/* Opinie – rozwijanie dłuższych recenzji */
.review-more{
  margin-top: 10px;
}
.review-more summary{
  cursor: pointer;
  font-weight: 700;
  text-decoration: underline;
  list-style: none;
}
.review-more summary::-webkit-details-marker{ display:none; }
.review-more[open] summary{
  margin-bottom: 8px;
}
.review-text--full{
  margin: 0;
}



/* Opinie – kompaktowe kafelki + rozwijanie bez dublowania */
.reviews-grid{align-items:start}
.reviews-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
  max-width:760px;
  margin-left:auto;
}
@media (max-width: 980px){
  .reviews-list{grid-template-columns:1fr; max-width:520px;}
}
.review-card{
  padding:16px 16px 14px;
  border-radius:18px;
}
.review-top{gap:10px}
.review-name{font-size:15px}
.review-meta{font-size:13px}
.review-stars{font-size:14px; letter-spacing:1px}
.review-text{font-size:14px; line-height:1.5; margin:10px 0 0}
.review-text--clamp{
  display:-webkit-box;
  -webkit-line-clamp:5;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.review-toggle{
  margin-top:10px;
  padding:0;
  border:0;
  background:transparent;
  font-weight:700;
  text-decoration:underline;
  cursor:pointer;
}
.review-toggle:focus{outline:2px solid currentColor; outline-offset:4px; border-radius:6px;}


/* ================================
   HOME: mini siatka modeli w sekcji Oferta (index)
   ================================ */
.page-home .offer-mini{
  margin-top: 16px;
}

.page-home .offer-mini-title{
  margin: 6px 0 10px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .2px;
  opacity: .9;
}

.page-home .offer-grid--mini{
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

/* HOME — większe kafelki modeli (prawie szerokość 3 kafelków z góry) */
.page-home .offer-grid--mini-wide{
  /* zachowaj 3 kolumny jako bazę, ale każdy element poniżej rozciąga się na całą szerokość */
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-home .offer-grid--mini-wide > .offer--product-mini{
  grid-column: 1 / -1;
  justify-self: center;
  width: min(920px, calc(100% - 18px));
  padding: 14px;
}

.page-home .offer-grid--mini-wide > .offer--product-mini .offer-product-media{
  aspect-ratio: 16 / 8;
}

.page-home .offer-grid--mini-wide > .offer--product-mini .offer-product-name{
  width: min(180px, 60%);
  margin: 10px auto 0;
}

.page-home .offer--product-mini{
  padding: 10px;
}

.page-home .offer--product-mini .offer-product-media{
  aspect-ratio: 1 / 1;
  border-width: 1px;
}

.page-home .offer--product-mini .offer-product-name{
  width: min(120px, 80%);
  margin: 8px auto 0;
}

.page-home .offer-mini-more{
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  text-decoration: none;
}

.page-home .offer-mini-more:hover{
  text-decoration: underline;
}

@media (max-width: 560px){
  .page-home .offer-grid--mini{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .offer-grid--mini-wide{
    grid-template-columns: 1fr;
  }
}

/* Wyśrodkowanie sekcji wybranych modeli względem kafelków powyżej */
.page-home .offer-grid--mini-wide{
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}


/* HOME — Wybrane modele placów zabaw: większe kafelki (prawie jak 3 kafelki powyżej) */
.page-home .offer-grid[aria-label="Wybrane modele placów zabaw"]{
  grid-template-columns: repeat(3, minmax(0, 360px)) !important;
  justify-content: center !important;
  gap: 22px !important;
}

@media (max-width: 1100px){
  .page-home .offer-grid[aria-label="Wybrane modele placów zabaw"]{
    grid-template-columns: repeat(3, minmax(0, 320px)) !important;
  }
}
@media (max-width: 900px){
  .page-home .offer-grid[aria-label="Wybrane modele placów zabaw"]{
    grid-template-columns: repeat(2, minmax(0, 320px)) !important;
  }
}
@media (max-width: 560px){
  .page-home .offer-grid[aria-label="Wybrane modele placów zabaw"]{
    grid-template-columns: 1fr !important;
  }
}

.page-home .offer-grid[aria-label="Wybrane modele placów zabaw"] > .offer{
  width: 100% !important;
  max-width: none !important;
  padding: 16px !important;
}

.page-home .offer-grid[aria-label="Wybrane modele placów zabaw"] .offer-product-media{
  aspect-ratio: 16 / 9 !important;
}

.page-home .offer-grid[aria-label="Wybrane modele placów zabaw"] .offer-product-name{
  width: min(200px, 60%) !important;
}


/* FIX: wymuś 3 w rzędzie w sekcji "Wybrane modele placów zabaw" (bez rozciągania na całą szerokość) */
.page-home .offer-grid[aria-label="Wybrane modele placów zabaw"]{
  display: grid !important;
  grid-auto-flow: row !important;
  grid-template-columns: repeat(3, minmax(0, 360px)) !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 22px !important;
}

/* jeśli wcześniejsze reguły kazały kafelkom zajmować całą szerokość, wyłącz to */
.page-home .offer-grid[aria-label="Wybrane modele placów zabaw"] > .offer{
  grid-column: auto !important;
  justify-self: stretch !important;
  width: 100% !important;
  max-width: none !important;
}

@media (max-width: 900px){
  .page-home .offer-grid[aria-label="Wybrane modele placów zabaw"]{
    grid-template-columns: repeat(2, minmax(0, 320px)) !important;
  }
}
@media (max-width: 560px){
  .page-home .offer-grid[aria-label="Wybrane modele placów zabaw"]{
    grid-template-columns: 1fr !important;
  }
}


/* ================================
   HOME: Wybrane modele placów zabaw — duże kafle + nazwy (jak w oferta.html)
   ================================ */

/* 3 kolumny, szerokość jak kafelki powyżej */
.page-home .offer-grid[aria-label="Wybrane modele placów zabaw"]{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  justify-content: center !important;
  gap: 22px !important;
  margin-top: 14px;
}

/* Klikalny "produkt" bez tła, ale z zachowaniem układu */
.page-home .offer-grid[aria-label="Wybrane modele placów zabaw"] > .offer{
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  width: 100% !important;
  max-width: none !important;
  grid-column: auto !important;
  text-decoration: none;
}

/* Samo zdjęcie jako duży kafel (wizualnie pod kafelkami u góry) */
.page-home .offer-grid[aria-label="Wybrane modele placów zabaw"] .offer-product-media{
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  aspect-ratio: 16 / 10 !important;
  background: transparent !important;
  box-shadow: 0 16px 34px rgba(0,0,0,.18) !important;
}

.page-home .offer-grid[aria-label="Wybrane modele placów zabaw"] .offer-product-photo{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Nazwa pod zdjęciem (obrazek z nazwą jak w oferta.html) */
.page-home .offer-grid[aria-label="Wybrane modele placów zabaw"] .offer-product-name{
  display: block !important;
  width: min(220px, 70%);
  height: auto;
  margin: 12px auto 0;
}

/* Hover: delikatne uniesienie zdjęcia */
.page-home .offer-grid[aria-label="Wybrane modele placów zabaw"] > .offer:hover .offer-product-media{
  transform: translateY(-3px);
  transition: transform .18s ease;
}

/* Ostatni kafel (Dyzio+Lili) na środku w 4. rzędzie */
@media (min-width: 901px){
  .page-home .offer-grid[aria-label="Wybrane modele placów zabaw"] > .offer:last-child{
    grid-column: 2;
  }
}

/* Responsywność */
@media (max-width: 900px){
  .page-home .offer-grid[aria-label="Wybrane modele placów zabaw"]{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 560px){
  .page-home .offer-grid[aria-label="Wybrane modele placów zabaw"]{
    grid-template-columns: 1fr !important;
  }
}




/* ================================
   HOME – Wybrane modele: SZEROKOŚĆ x3 (jak 3 kafelki powyżej)
   ================================ */

/* Tworzymy siatkę 9 kolumn (3x szerokość górnych kafelków) */
.page-home .offer-grid[aria-label="Wybrane modele placów zabaw"]{
  display: grid !important;
  grid-template-columns: repeat(9, 1fr) !important;
  gap: 22px !important;
  justify-content: center !important;
}

/* Każdy plac zabaw zajmuje 3 kolumny */
.page-home .offer-grid[aria-label="Wybrane modele placów zabaw"] > .offer{
  grid-column: span 3 !important;
  width: 100% !important;
}

/* Ostatni (Dyzio+Lili) – wyśrodkowany */
@media (min-width: 901px){
  .page-home .offer-grid[aria-label="Wybrane modele placów zabaw"] > .offer:last-child{
    grid-column: 4 / span 3 !important;
  }
}

/* Tablet */
@media (max-width: 900px){
  .page-home .offer-grid[aria-label="Wybrane modele placów zabaw"]{
    grid-template-columns: repeat(6, 1fr) !important;
  }
  .page-home .offer-grid[aria-label="Wybrane modele placów zabaw"] > .offer{
    grid-column: span 3 !important;
  }
}

/* Mobile */
@media (max-width: 560px){
  .page-home .offer-grid[aria-label="Wybrane modele placów zabaw"]{
    grid-template-columns: 1fr !important;
  }
  .page-home .offer-grid[aria-label="Wybrane modele placów zabaw"] > .offer{
    grid-column: auto !important;
  }
}



/* ================================
   HOME FIX: sekcja "Wybrane modele" ma zajmować całą szerokość (od 1. do 3. kafelka u góry)
   ================================ */
.page-home .offer-grid > .offer-mini{
  grid-column: 1 / -1 !important; /* rozciągnij na całą szerokość gridu 3-kolumnowego */
  width: 100% !important;
}

/* Wewnątrz: 3 kolumny na pełnej szerokości sekcji */
.page-home .offer-mini .offer-grid[aria-label="Wybrane modele placów zabaw"]{
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  width: 100% !important;
  justify-content: stretch !important;
}

/* Każdy element nie może wymuszać pełnej szerokości ani spanów */
.page-home .offer-mini .offer-grid[aria-label="Wybrane modele placów zabaw"] > .offer{
  grid-column: auto !important;
  width: 100% !important;
}

/* Ostatni kafel (Dyzio+Lili) na środku w 4. rzędzie */
@media (min-width: 901px){
  .page-home .offer-mini .offer-grid[aria-label="Wybrane modele placów zabaw"] > .offer:last-child{
    grid-column: 2 !important;
  }
}


/* ================================
   O FIRMIE — CHMURKI (zamiast checklisty)
   ================================ */
.about-clouds{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 22px 0 26px;
}

/* "bąbelki" chmurki */
.about-cloud__num{
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  color: #18b6ff;
  margin-bottom: 8px;
}

.about-cloud__txt{
  font-size: 16px;
  line-height: 1.45;
  color: var(--about-orange);
}

@media (max-width: 900px){
  .about-clouds{
    grid-template-columns: 1fr;
  }
  }



/* === About: clouds as full-width row under text+image === */
.about-clouds.about-clouds--full{
  width: 100%;
  margin-top: 26px;
  margin-bottom: 18px;
}

/* left bumps */
/* right bump */
/* keep button clear of clouds */
#o-firmie .btn{
  margin-top: 18px;
}

/* responsive stacking */
@media (max-width: 900px){
  .about-clouds{
    grid-template-columns: 1fr;
  }
  }


/* === About clouds (Happy Gardens-like) === */
:root{
  --about-orange:#f59b16;--about-ink: var(--ink, #13304c);
  --about-sun: var(--sun, #fbb627);
}

.about-clouds{
  display:flex;
  width:100%;
  justify-content:space-between;
  gap:40px;
  margin:46px 0 0;
}

.about-clouds.is-visible .about-cloud:nth-child(1){ transition-delay: .05s; }
.about-cloud:nth-child(2){ transition-delay: .12s; }
.about-cloud:nth-child(3){ transition-delay: .19s; }

/* Puffy cloud shape around the card */
.about-cloud__num{
  font-size:44px;
  line-height:1;
  font-weight:900;
  color: var(--about-ink);
  letter-spacing:-.5px;
  margin-bottom:10px;
}

.about-cloud__suffix{
  font-weight:900;
  color: var(--about-ink);
  margin-left:2px;
}

.about-cloud__txt{
  font-size:16.5px;
  line-height:1.25;
  font-weight:800;
  color: var(--about-sun);
}

/* keep clouds from touching the button above */
.section--cream #o-firmie .section-copy .btn,
#o-firmie .btn{
  margin-bottom: 28px;
}

@media (max-width: 980px){
  .about-clouds{
    flex-direction:column;
    gap:22px;
  }
  .about-cloud__num{ font-size:40px; }
}

/* About clouds color fix */
.about-cloud__num,.about-cloud__suffix{color:var(--about-ink) !important;}
.about-cloud__txt{color:var(--about-orange) !important;}


/* About clouds - full cloud shape + shadow */
.about-cloud{
  position: relative;
  padding: 64px 38px 58px;
  min-height: 190px;
}

.about-cloud > *{
  position: relative;
  z-index: 1;
}
.about-cloud > *{
  position: relative;
  z-index: 1;
}



/* === About clouds: full cloud card (text sits on one big cloud) === */
.about-cloud{
  position: relative;
  background: transparent !important;
  padding: 64px 34px 54px !important;
  min-height: 200px;
}

.about-cloud::before{
  content: "";
  position: absolute;
  inset: -22px -26px;
  background: #fff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%20500%20320%27%3E%0A%20%20%3Cg%20fill%3D%27%23000%27%3E%0A%20%20%20%20%3Crect%20x%3D%2790%27%20y%3D%27120%27%20width%3D%27320%27%20height%3D%27140%27%20rx%3D%2770%27%20ry%3D%2770%27/%3E%0A%20%20%20%20%3C%21--%20top%20puffs%20--%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27160%27%20cy%3D%27130%27%20r%3D%2780%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27260%27%20cy%3D%27105%27%20r%3D%2795%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27360%27%20cy%3D%27140%27%20r%3D%2775%27/%3E%0A%20%20%20%20%3C%21--%20side%20puffs%20--%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2795%27%20cy%3D%27190%27%20r%3D%2780%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27410%27%20cy%3D%27195%27%20r%3D%2778%27/%3E%0A%20%20%20%20%3C%21--%20bottom%20puffs%20--%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27170%27%20cy%3D%27265%27%20r%3D%2772%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27275%27%20cy%3D%27280%27%20r%3D%2792%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27385%27%20cy%3D%27265%27%20r%3D%2768%27/%3E%0A%20%20%20%20%3C%21--%20extra%20small%20puffs%20to%20make%20it%20denser%20--%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27215%27%20cy%3D%27155%27%20r%3D%2755%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27315%27%20cy%3D%27170%27%20r%3D%2750%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27135%27%20cy%3D%27230%27%20r%3D%2748%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27445%27%20cy%3D%27235%27%20r%3D%2748%27/%3E%0A%20%20%3C/g%3E%0A%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%20500%20320%27%3E%0A%20%20%3Cg%20fill%3D%27%23000%27%3E%0A%20%20%20%20%3Crect%20x%3D%2790%27%20y%3D%27120%27%20width%3D%27320%27%20height%3D%27140%27%20rx%3D%2770%27%20ry%3D%2770%27/%3E%0A%20%20%20%20%3C%21--%20top%20puffs%20--%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27160%27%20cy%3D%27130%27%20r%3D%2780%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27260%27%20cy%3D%27105%27%20r%3D%2795%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27360%27%20cy%3D%27140%27%20r%3D%2775%27/%3E%0A%20%20%20%20%3C%21--%20side%20puffs%20--%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2795%27%20cy%3D%27190%27%20r%3D%2780%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27410%27%20cy%3D%27195%27%20r%3D%2778%27/%3E%0A%20%20%20%20%3C%21--%20bottom%20puffs%20--%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27170%27%20cy%3D%27265%27%20r%3D%2772%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27275%27%20cy%3D%27280%27%20r%3D%2792%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27385%27%20cy%3D%27265%27%20r%3D%2768%27/%3E%0A%20%20%20%20%3C%21--%20extra%20small%20puffs%20to%20make%20it%20denser%20--%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27215%27%20cy%3D%27155%27%20r%3D%2755%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27315%27%20cy%3D%27170%27%20r%3D%2750%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27135%27%20cy%3D%27230%27%20r%3D%2748%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27445%27%20cy%3D%27235%27%20r%3D%2748%27/%3E%0A%20%20%3C/g%3E%0A%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.12));
}


/* === About clouds: watermark icons (keeps existing cloud shape & text) === */
.about-cloud::before{
  /* allow layered background inside the masked cloud */
  background-repeat: no-repeat;
  background-position: center 70%;
  background-size: 140px;
}
.about-cloud--safety::before{ background-image: url("/images/icons/shield.svg"); }
.about-cloud--experience::before{ background-image: url("/images/icons/medal.svg"); }
.about-cloud--poland::before{ background-image: url("/images/icons/poland.svg"); background-size: 170px; background-position: center 72%; }

.about-cloud::after{
  content: none !important;
}

.about-cloud > *{
  position: relative;
  z-index: 1;
}


/* About clouds: use same font as "O firmie" text + keep text inside cloud */
.about-cloud,
.about-cloud *{
  font-family: inherit;
}

.about-cloud{
  /* ensure content stays within puffy shape */
  box-sizing: border-box;
  padding: 52px 42px 56px; /* more side padding to prevent text touching edge */
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.about-cloud .about-cloud-number,
.about-cloud .about-cloud-value,
.about-cloud .about-cloud-title,
.about-cloud .about-cloud-num{
  font-family: inherit;
  line-height: 1.05;
}

.about-cloud .about-cloud-number,
.about-cloud .about-cloud-num{
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 800;
  margin: 0;
}

.about-cloud .about-cloud-desc,
.about-cloud .about-cloud-subtitle,
.about-cloud p{
  margin: 0;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.25;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

/* tighten very small cloud (3rd) so text fits */
.about-cloud.is-small{
  padding: 46px 36px 52px;
  min-height: 165px;
}

/* If any span overflows, force it to wrap */
.about-cloud span, .about-cloud strong{
  overflow-wrap: anywhere;
}



/* Force 3 equal-size about clouds (same width/height) */
.about-clouds{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
  align-items: stretch !important;
}

.about-cloud{
  width: 100% !important;
  min-height: 220px !important;
  height: 220px !important; /* equal cards */
  padding: 54px 44px 56px !important;
}

/* Remove any "small" variant sizing so 3 cards stay equal */
.about-cloud.is-small,
.about-cloud.small{
  min-height: 220px !important;
  height: 220px !important;
  padding: 54px 44px 56px !important;
}

/* Keep the number on one line (prevents 100% breaking to two lines) */
.about-cloud .about-cloud-number,
.about-cloud .about-cloud-num{
  white-space: nowrap !important;
  letter-spacing: -0.5px;
}

/* Fit text nicely inside equal cards */
.about-cloud .about-cloud-desc,
.about-cloud .about-cloud-subtitle,
.about-cloud p{
  max-width: 22ch;
}

/* Responsive: stack on small screens */
@media (max-width: 980px){
  .about-clouds{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .about-cloud{
    height: auto !important;
    min-height: 200px !important;
    padding: 46px 32px 48px !important;
  }
}

/* =========================
   About-clouds (override)
   - center text
   - three different cloud shapes
   ========================= */

.about-clouds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.about-cloud {
  position: relative;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 46px 44px !important;
  min-height: 210px;

  --cloud-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20500%20320%22%3E%3Crect%20x%3D%2280%22%20y%3D%2290%22%20width%3D%22340%22%20height%3D%22180%22%20rx%3D%2290%22%20ry%3D%2290%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22140%22%20cy%3D%22120%22%20r%3D%2270%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22230%22%20cy%3D%2295%22%20r%3D%2285%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22330%22%20cy%3D%22115%22%20r%3D%2270%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22405%22%20cy%3D%22170%22%20r%3D%2275%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22350%22%20cy%3D%22250%22%20r%3D%2270%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22235%22%20cy%3D%22265%22%20r%3D%2285%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22135%22%20cy%3D%22250%22%20r%3D%2270%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%2290%22%20cy%3D%22175%22%20r%3D%2275%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
}

.about-clouds .about-cloud:nth-child(1) { --cloud-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20500%20320%22%3E%3Crect%20x%3D%2280%22%20y%3D%2290%22%20width%3D%22340%22%20height%3D%22180%22%20rx%3D%2290%22%20ry%3D%2290%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22140%22%20cy%3D%22120%22%20r%3D%2270%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22230%22%20cy%3D%2295%22%20r%3D%2285%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22330%22%20cy%3D%22115%22%20r%3D%2270%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22405%22%20cy%3D%22170%22%20r%3D%2275%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22350%22%20cy%3D%22250%22%20r%3D%2270%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22235%22%20cy%3D%22265%22%20r%3D%2285%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22135%22%20cy%3D%22250%22%20r%3D%2270%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%2290%22%20cy%3D%22175%22%20r%3D%2275%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E"); }
.about-clouds .about-cloud:nth-child(2) { --cloud-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20500%20320%22%3E%3Crect%20x%3D%2280%22%20y%3D%2290%22%20width%3D%22340%22%20height%3D%22180%22%20rx%3D%2290%22%20ry%3D%2290%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22150%22%20cy%3D%22115%22%20r%3D%2275%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22250%22%20cy%3D%2285%22%20r%3D%2290%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22355%22%20cy%3D%22110%22%20r%3D%2270%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22420%22%20cy%3D%22175%22%20r%3D%2270%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22360%22%20cy%3D%22255%22%20r%3D%2280%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22250%22%20cy%3D%22270%22%20r%3D%2270%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22140%22%20cy%3D%22255%22%20r%3D%2280%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%2285%22%20cy%3D%22175%22%20r%3D%2270%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E"); }
.about-clouds .about-cloud:nth-child(3) { --cloud-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20500%20320%22%3E%3Crect%20x%3D%2280%22%20y%3D%2290%22%20width%3D%22340%22%20height%3D%22180%22%20rx%3D%2290%22%20ry%3D%2290%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22135%22%20cy%3D%22125%22%20r%3D%2265%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22235%22%20cy%3D%2290%22%20r%3D%2285%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22340%22%20cy%3D%22120%22%20r%3D%2265%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22415%22%20cy%3D%22185%22%20r%3D%2270%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22355%22%20cy%3D%22250%22%20r%3D%2270%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22240%22%20cy%3D%22275%22%20r%3D%2280%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%22130%22%20cy%3D%22250%22%20r%3D%2270%22%20fill%3D%22white%22%2F%3E%3Ccircle%20cx%3D%2295%22%20cy%3D%22185%22%20r%3D%2270%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E"); }

.about-cloud > * {
  position: relative;
  z-index: 2;
}

.about-cloud::before {
  content: "";
  position: absolute;
  inset: -22px -26px;
  background: #fff;
  z-index: 1;

  -webkit-mask-image: var(--cloud-mask) !important;
  mask-image: var(--cloud-mask) !important;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.about-cloud__number,
.about-cloud__txt {
  text-align: center !important;
}

.about-cloud__txt {
  max-width: 92%;
  margin-left: auto;
  margin-right: auto;
}


/* === Opinie: slider 1 karta (bez kafelka) === */
#opinie .reviews-list{ /* legacy grid - keep if exists */ }
#opinie .reviews-slider{
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

/* strzałki nawigacji opinii */
#opinie .reviews-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 26px rgba(0,0,0,0.14);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  color: rgba(0,0,0,0.72);
}
#opinie .reviews-arrow span{ font-size: 28px; line-height: 1; margin-top: -2px; }
#opinie .reviews-arrow--prev{ left: 10px; }
#opinie .reviews-arrow--next{ right: 10px; }
#opinie .reviews-arrow:hover{ background: rgba(255,255,255,1); }
#opinie .reviews-arrow:active{ transform: translateY(-50%) scale(0.98); }
#opinie .reviews-arrow:focus-visible{ outline: 3px solid rgba(0,0,0,0.25); outline-offset: 2px; }
#opinie .reviews-track{
  display: flex;
  will-change: transform;
  transition: transform 600ms ease;
}
#opinie .reviews-slide{
  flex: 0 0 100%;
  min-width: 100%;
}
#opinie .review-card{
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer;
}
#opinie .review-top{ margin-bottom: 8px; }
#opinie .review-text{ margin: 10px 0 0; }
#opinie .review-toggle{ display:none !important; }
#opinie .reviews-dots{
  display:flex;
  gap:8px;
  justify-content:center;
  margin-top: 14px;
}
#opinie .reviews-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: rgba(0,0,0,0.18);
  border:none;
  padding:0;
  cursor:pointer;
}
#opinie .reviews-dot.is-active{ background: rgba(0,0,0,0.55); }
@media (max-width: 980px){
  #opinie .reviews-slider{ max-width: 100%; margin-top: 18px; }
}

/* === FIX: ikony jako watermark w chmurkach (sekcja O firmie) === */
/* Uwaga: w bazowym CSS .about-cloud::after ma content:none !important; – tu to nadpisujemy. */
.about-cloud::after{
  content: "" !important;
  position: absolute;
  inset: -22px -26px;            /* identycznie jak ::before (maska chmurki) */
  z-index: 2;                    /* nad białym tłem chmurki, pod tekstem */
  pointer-events: none;
  opacity: .14;                  /* watermark */
  background-repeat: no-repeat;
  background-position: center 62%;
  background-size: 72% 72%;
  -webkit-mask-image: var(--cloud-mask) !important;
  mask-image: var(--cloud-mask) !important;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
}

/* Tekst zawsze nad watermarkiem */
.about-cloud > *{
  position: relative;
  z-index: 3 !important;
}

/* Podpięcie ikon pod konkretne chmurki */
.about-cloud--safety::after{
  background-image: url("images/icons/shield.svg");
}

.about-cloud--experience::after{
  background-image: url("images/icons/medal.svg");
}

.about-cloud--poland::after{
  background-image: url("images/icons/poland.svg");
}

/* --- Cloud watermark icons (no pseudo-elements, safe) --- */
.about-cloud{
  position: relative;
  overflow: hidden; /* żeby watermark nie wychodził poza chmurkę */
}

/* Wszystko w chmurce nad watermarkiem */
.about-cloud > *{
  position: relative;
  z-index: 2;
}

/* Sam watermark */
.about-cloud .cloud-watermark{
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translate(-50%, -50%);
  width: 78%;
  height: 78%;
  opacity: 0.12;          /* watermark */
  z-index: 1;
  pointer-events: none;
  user-select: none;
  display: block;
}

/* === O FIRMIE: watermark ikon w chmurkach (bez pseudo-elementów) === */
#o-firmie .about-cloud{
  position: relative;
  overflow: hidden;
}
#o-firmie .about-cloud > *{
  position: relative;
  z-index: 2;
}
#o-firmie .about-cloud .cloud-wm{
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translate(-50%, -50%);
  width: 78%;
  height: 78%;
  z-index: 1;
  pointer-events: none;

  /* czytelność watermarku */
  background-color: rgba(0,0,0,0.18);

  /* kolorowanie przez maskę — działa niezależnie od koloru SVG */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

#o-firmie .about-cloud--safety .cloud-wm{
  -webkit-mask-image: url("images/icons/shield.svg");
  mask-image: url("images/icons/shield.svg");
}
#o-firmie .about-cloud--experience .cloud-wm{
  -webkit-mask-image: url("images/icons/medal.svg");
  mask-image: url("images/icons/medal.svg");
}
#o-firmie .about-cloud--poland .cloud-wm{
  -webkit-mask-image: url("images/icons/poland.svg");
  mask-image: url("images/icons/poland.svg");
}


/* === O FIRMIE: chmurki - bez wewnętrznej (szarej) chmury, ikona POD tekstem === */
#o-firmie .about-cloud .cloud-wm{
  display: none !important; /* usuwa mniejszą/szarą chmurę */
}

/* Układ treści w dużej (białej) chmurce */
#o-firmie .about-cloud{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 92px 34px 66px !important; /* utrzymuje tekst w środku chmury */
}

/* Ikona jako normalny element pod tekstem (nie tło) */
#o-firmie .about-cloud__icon{
  display: block !important;
  width: 72px;
  height: 72px;
  margin-top: 6px;
  opacity: .85;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 560px){
  #o-firmie .about-cloud{
    padding: 86px 22px 60px !important;
    gap: 8px;
  }
  #o-firmie .about-cloud__icon{
    width: 60px;
    height: 60px;
  }
}

#o-firmie .about-cloud::after{
  content: none !important;
  background-image: none !important;
  opacity: 0 !important;
}


/* === DEBUG O FIRMIE (MAX widoczność): ikony muszą być widoczne ===
   Target: div.about-clouds.about-clouds--full.is-visible
*/
.about-clouds.about-clouds--full.is-visible .about-cloud{
  position: relative !important;
  overflow: visible !important;          /* na debug wyłączamy cięcie */
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* Tekst nad ikoną */
.about-clouds.about-clouds--full.is-visible .about-cloud__num,
.about-clouds.about-clouds--full.is-visible .about-cloud__txt{
  position: relative !important;
  z-index: 9998 !important;
}

/* Ikony: absolutnie, MAX opacity, duże, z obrysem i tłem debug */
.about-clouds.about-clouds--full.is-visible .about-cloud__icon{
  display: block !important;
  visibility: visible !important;

  position: absolute !important;
  left: 50% !important;
  top: 55% !important;
  transform: translate(-50%, -50%) !important;

  width: 78% !important;
  height: auto !important;
  max-width: 260px !important;
  max-height: 260px !important;

  opacity: 1 !important;                 /* MAX */
  z-index: 9997 !important;

  outline: none !important;     /* DEBUG: obrys ikony */
  background: transparent !important;

  pointer-events: none !important;
  user-select: none !important;

  filter: none !important;
}


/* === O FIRMIE: korekta ikony Polska (pośrednia) === */
.about-clouds.about-clouds--full.is-visible .about-cloud--poland .about-cloud__icon{
  width: 74% !important;   /* delikatnie większa */
  max-width: 225px !important;
}
@media (max-width: 560px){
  .about-clouds.about-clouds--full.is-visible .about-cloud--poland .about-cloud__icon{
    width: 70% !important;
    max-width: 190px !important;
  }
}
@media (max-width: 560px){
  .about-clouds.about-clouds--full.is-visible .about-cloud--poland .about-cloud__icon{
    width: 64% !important;
    max-width: 170px !important;
  }
}




/* =====================================================
   NAGŁÓWKI – MF BE YOURSELF (LOCAL, PL znaki jeśli font je ma)
   ===================================================== */
@font-face {
  font-family: "MF Be Yourself Local";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/Mf-Be-Yourself.ttf") format("truetype");
}

/* Hero + nagłówki sekcji */
h1,
.section h2,
.section-title,
#opinie h2,
#oferta h2,
#o-firmie h2,
#galeria h2,
#kontakt h2{
  font-family: "MF Be Yourself Local", system-ui, sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.4px;
  line-height: 1.06;
}

/* =====================================================
   OPINIE – NIEBIESKIE TŁO (zachowane)
   ===================================================== */
#opinie{
  background:
    radial-gradient(1200px 500px at 50% 10%, rgba(255,255,255,.55), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, #0ec4ff 0%, #12b7ff 55%, #0ec4ff 100%) !important;
}
#opinie h2,
#opinie p{
  color: #062843;
}

/* ===== Footer (układ: obraz po lewej + 3 kolumny po prawej) ===== */
.footer{
  padding: 16px 0; /* mniejsza stopka */
}
.footer-inner.footer-inner--compact{
  grid-template-columns: 0.9fr 2.1fr;
  align-items: center;
  gap: 22px;
}

.footer-brand{ align-items: center; justify-content: flex-start; }
.footer-brand-image{
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
}

.footer-right{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-cols{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
  align-items: start;
}

.footer-col a{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 3px 0;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 800;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.2;
}
.footer-col a:hover{ text-decoration: underline; }

.footer-ico{
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.78);
  flex: 0 0 18px;
}
.footer-ico svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-ico img{
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.footer-copy{
  color: rgba(255,255,255,.70);
  font-size: 12px;
  margin-top: 6px;
}

/* Mobile */
@media (max-width: 820px){
  .footer-inner.footer-inner--compact{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .footer-brand-image{
    max-width: 220px;
    margin: 0 auto;
  }
  .footer-cols{
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
/* === Footer copyright: pełna szerokość kolumn === */
.footer-right {
  display: grid;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.footer-copy {
  grid-column: 1 / -1;   /* ⬅️ TO JEST KLUCZ */
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.15);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

/* === PROMO MODAL (plakat) === */
body.promo-modal-open{
  overflow: hidden;
  touch-action: none;
}

/* === COOKIE CONSENT (pierwsze wejście) === */
body.kb-cookie-open{
  overflow: hidden;
  touch-action: none;
}

.kb-cookie{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999998; /* poniżej promo, ale i tak promo otwieramy po decyzji */
  height: 100vh;
  height: 100dvh;
  padding:
    max(14px, env(safe-area-inset-top))
    max(14px, env(safe-area-inset-right))
    max(14px, env(safe-area-inset-bottom))
    max(14px, env(safe-area-inset-left));
}

.kb-cookie.kb-cookie--open{
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.kb-cookie__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.38);
}

.kb-cookie__panel{
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  background: rgba(255,255,255,.98);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
  border: 1px solid rgba(19,48,76,.12);
  padding: 16px;
  margin-bottom: 8px;
}

@media (min-width: 700px){
  .kb-cookie__panel{
    padding: 18px;
  }
}

.kb-cookie__title{
  font-weight: 800;
  font-size: 16px;
  margin: 0 0 6px;
  color: rgba(19,48,76,.95);
}

.kb-cookie__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(19,48,76,.78);
}

.kb-cookie__link{
  color: rgba(19,48,76,.95);
  text-decoration: none;
  border-bottom: 1px dashed rgba(19,48,76,.35);
}

.kb-cookie__link:hover{ border-bottom-color: rgba(34,197,94,.65); }

.kb-cookie__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 12px;
}

.kb-cookie__btn{
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
}

.kb-cookie__btn--primary{
  background: var(--green);
  color: #0b2a17;
}

.kb-cookie__btn--primary:hover{ filter: brightness(1.03); }

.kb-cookie__btn--ghost{
  background: rgba(19,48,76,.08);
  color: rgba(19,48,76,.9);
}

.kb-cookie__btn--ghost:hover{ background: rgba(19,48,76,.12); }

.promo-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999999;
  /* iOS/Safari: stabilniejsza wysokość widoku */
  height: 100vh;
  height: 100dvh;
  padding:
    max(14px, env(safe-area-inset-top))
    max(14px, env(safe-area-inset-right))
    max(14px, env(safe-area-inset-bottom))
    max(14px, env(safe-area-inset-left));
}

.promo-modal.is-open{
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  opacity: 0;
  animation: promoBackdropFade .35s ease forwards;
}

@keyframes promoBackdropFade{
  from{ opacity: 0; }
  to{ opacity: 1; }
}

.promo-dialog{
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  overflow: hidden;

  opacity: 0;
  transform: translateY(10px) scale(.96);
  animation: promoEnter .45s cubic-bezier(.2,.9,.2,1) forwards;
}

@keyframes promoEnter{
  from{
    opacity: 0;
    transform: translateY(18px) scale(.94);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.promo-dialog img{
  width: 100%;
  height: auto;
  max-height: calc(100dvh - 48px - (max(14px, env(safe-area-inset-top)) + max(14px, env(safe-area-inset-bottom))));
  object-fit: contain;
  display: block;
}

.promo-close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 34px;
  line-height: 52px;
  cursor: pointer;
  z-index: 2;

  display: grid;
  place-items: center;

  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;

  transition: transform .2s ease, background .2s ease;
}
.promo-close:hover{ background: rgba(0,0,0,.75); transform: rotate(90deg) scale(1.05); }
.promo-close:active{ transform: scale(.98); }

@media (prefers-reduced-motion: reduce){
  .promo-backdrop,
  .promo-dialog{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* === DESKTOP OVERRIDE (strong): dialog wraps image to avoid side white bars === */
@media (min-width: 768px){
  .promo-dialog{
    width: fit-content !important;
    max-width: calc(100% - 24px) !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 18px !important;
  }

  .promo-dialog img{
    width: auto !important;        /* allow image to shrink by height constraint without leaving side gaps */
    height: auto !important;
    max-width: min(920px, calc(100vw - 24px)) !important;
    max-height: 90vh !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 18px !important;
    box-shadow: 0 30px 80px rgba(0,0,0,.45) !important;
    background: transparent !important;
  }
}


/* === STICKY BUTTON: PROMOCJA === */
.promo-sticky-btn{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9998; /* below promo modal (99999), above page content */
  border: 0;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 999px;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.1;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--red));
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
  max-width: min(92vw, 360px);
  text-align: center;
  letter-spacing: .2px;
  transform: translateZ(0);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.promo-sticky-btn:hover{ filter: brightness(1.04); transform: translateY(-1px); }
.promo-sticky-btn:active{ transform: translateY(0); }
.promo-sticky-btn:focus-visible{
  outline: 3px solid rgba(255,255,255,.75);
  outline-offset: 3px;
}

/* Better spacing on iOS safe-area */
@supports (padding: env(safe-area-inset-bottom)){
  .promo-sticky-btn{
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

/* Hide sticky button while modal is open */
body.promo-modal-open .promo-sticky-btn{ display: none; }

/* Slightly smaller on very small screens */
@media (max-width: 360px){
  .promo-sticky-btn{ font-size: 14px; padding: 11px 12px; }
}

/* Subtle attention animation (respects reduced motion) */
@keyframes promoPulse{
  0%, 100%{ transform: translateY(0) scale(1); }
  50%{ transform: translateY(-1px) scale(1.02); }
}
@media (prefers-reduced-motion: no-preference){
  .promo-sticky-btn{
    animation: promoPulse 2.6s ease-in-out infinite;
  }
}


/* === MOBILE FIX: aboutus image should not overlap text === */
@media (max-width: 980px){
  .aboutus-image{
    margin-top: 14px !important; /* overrides inline negative margin */
    order: 2;                    /* ensure image is after text (in case of flex) */
  }
  #o-firmie .section-copy{ order: 1; }
}

/* === Oferta: fallback labels for missing PNG names (Timon/Lupo/Pongo) === */
.offer-product-fallback{
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: .6px;
  font-size: 22px;
  margin: 10px auto 2px;
  text-transform: uppercase;
  color: #062843;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.14));
}
@media (max-width: 720px){
  .offer-product-fallback{ font-size: 20px; }
}
