:root {
  --primary:   linear-gradient(90deg,rgba(28, 16, 16, 1) 0%, rgba(37, 94, 107, 1) 0%, rgba(7, 184, 224, 1) 100%);;


  --secondary: #FFD84D;
  --background: #F9F9F9;
  --text-dark: #3B3B3B;
  --accent-light: #BEE7EC;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden; /* fallback */
}

/* Nowocześniej (mniej efektów ubocznych niż hidden) */
@supports (overflow: clip) {
  html, body { overflow-x: clip; }
}

/* 2) Najczęstsza przyczyna "wyjeżdżania" poza ekran: box model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 3) Media nie mogą wymuszać szerokości > viewport */
img, svg, video, canvas, iframe {
  max-width: 100%;
}

/* 4) Małe korekty pod mobile dla elementów, które u Ciebie mają duże paddingi/marginesy
      (mogą generować minimalne overflow nawet jeśli "wygląda dobrze") */
@media (max-width: 920px) {
  .hero-text,
  .hero-text-produkt {
    padding-left: 0 !important;
  }

  /* przyciski mają u Ciebie miejscami margin-right:15% -> potrafi wypchnąć layout */
  .cta-wrapper button,
  #booksy2,
  .reviews-link {
    margin-right: 0 !important;
  }
}

/* 5) Bezpiecznik: NIE blokuj poziomego scrolla tam, gdzie on ma sens */
.reviews-slider {
  overflow-x: auto !important;
}
body {
  margin: 0;
  padding-top: 0;
  font-family: 'Lato';
  color: var(--text-dark);
background: #dedcdc;
background: radial-gradient(90deg,rgba(222, 220, 220, 1) 0%, rgba(255, 250, 250, 1) 0%, rgba(201, 197, 197, 1) 100%);
}



h4, .signature {
 
  color: var(--secondary);
}
 :root {
    --nav-padding: 20px;
    --nav-padding-small: 6px;
   
    --logo-width-small: 50px;
  }
  
/* kontener (opcjonalny) */
  .mobile-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* ---------- topnav ---------- */
  .topnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary);

    z-index: 1000;
    transition: padding 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
    padding: var(--nav-padding) 16px;
    display: flex;
    align-items: center;
    justify-content: center; /* logo na środku domyślnie */
    box-sizing: border-box;
  }

  /* stan po scrollu — mniejsze padding + lekki cień */
  .topnav.scrolled {
    padding: var(--nav-padding-small) 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
   background-color: #008EAA;
  }

  /* logo */
  .topnav a.logo {
    display: block;
    text-align: center;
  }
  @media (max-width:1119px){
      
  .topnav a.logo img {
    display: block;
    width: 100px;
    height: auto;
    transition: width 0.28s ease;
  }
  .topnav.scrolled a.logo img {
    width: var(--logo-width-small);
  }
}
  /* przycisk hamburger (mobilnie) */
  .topnav a.icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    text-decoration: none;
    color:  #3B3B3B;
    display: block;
    padding: 6px;
    background: transparent;
    border-radius: 6px;
  }

  /* menu rozwijane (mobilne) - domyślnie ukryte */
  #myLinks {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: linear-gradient(90deg,rgba(28, 16, 16, 1) 0%, rgba(37, 94, 107, 1) 0%, rgba(7, 184, 224, 1) 100%);;;
    opacity: 90%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.32s ease;
  }
  #myLinks.show { max-height: 400px; } /* ustawić na wysokosc wystarczajacą do linków */

  #myLinks a {
    display: block;
    padding: 12px 18px;
   color: white;
    text-decoration: none;
    font-size: 150%;
     text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  }
  #myLinks a:hover {  color:  var(--secondary); }

  /* ---------- Desktop: menu poziome ---------- */
  @media (min-width: 1120px) {
    .topnav {
      justify-content: space-between; /* logo left/center? tutaj left + menu right */
      padding-left: 36px;
      padding-right: 36px;
    }

    .topnav a.logo { order: 0; } /* logo po lewej (możesz zmienić) */

    /* hamburger ukryty na desktopie */
    .topnav a.icon { display: none; }
    
  .topnav a.logo img {
    display: block;
    width: 200px;
    height: min-content;
    transition: width 0.28s ease;
    padding-left: 0;
  }
  .topnav.scrolled a.logo img {
    width: var(--logo-width-small);
  }
    /* myLinks jako zwykły poziomy nav */
    #myLinks {
      position: static;
      display: flex;
     
      gap: 22px;
      background: transparent;
      max-height: none;
      height: auto;
     
    }
    #myLinks a { padding-left: 0.5%; font-size: 140%; }
  }
.no-wrap{

  white-space: nowrap;
}
/*hero main page*/

.hero-image {
  clear: both;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("hero.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  box-shadow:  0 0px 5px black;
  margin-top: 80px;
}

.hero-image-produkt {
  clear: both;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("baner-produkt-ostateczny.png") ;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  box-shadow:  0 0px 5px black;
    margin-top: 80px;
}

/* Układ treści (obrazek + tekst) */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 90%;
  max-width: 1200px;
  z-index: 2;
}

/* Zdjęcie po lewej */
.hero-icon img {
  width: 320px;
  max-width: 100%;
  border-radius: 50%;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Tekst po prawej */
.hero-text {
  flex: 1;
  text-align: left;
  padding-left: 10%;
}

.hero-text h1 {
  font-family: 'Quattrocento';
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  font-weight: lighter;
  color: #F9F9F9;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 🌟 Przycisk z gradientem opartym na #FFD84D */
.hero-text button {
  background: linear-gradient(90deg, #FFD84D 0%, #FFC107 100%);
  color: #3B3B3B;
  border: none;
  padding: 12px 22px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(255, 196, 0, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.hero-text button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 196, 0, 0.35);
}


.hero-text-produkt {
  flex: 1;
  text-align: left;
  padding-left: 10%;
}

.hero-text-produkt h1 {
  font-family: 'Quattrocento';
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  font-weight: lighter;
  color: #F9F9F9;
}

.hero-text-produkt p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

/* 🌟 Przycisk z gradientem opartym na #FFD84D */
.hero-text-produkt button {
  background: linear-gradient(90deg, #FFD84D 0%, #FFC107 100%);
  color: #3B3B3B;
  border: none;
  padding: 12px 22px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(255, 196, 0, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.hero-text-produkt button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 196, 0, 0.35);
}


/* 📱 Mobilna wersja – zdjęcie nad tekstem */
@media (max-width: 920px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    background-position: right center;

    padding: 0 6%;
  }

  .hero-icon img {
    width: 250px;
    margin-bottom: 1.5rem;
  }

  .hero-text {
    text-align: left;
    font-size: 1rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }
}


/*Aktualnosci*/

#news-section {
  padding: 80px 10%;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px black;
  margin: 5%;
  border-radius: 30px;
  padding: 3%;}

.news-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
}

.news-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
 
}

.news-content {
  flex: 1;
  text-align: left;
  margin: 1.8%;
}

.news-content h2 {
  font-size: 2.4rem;
  color: #0c6f7c;
  margin-bottom: 20px;
  font-family:'Quattrocento' ;
}

.news-content p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-news {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(90deg, #FFD84D 0%, #FFC107 100%);
  box-shadow: 0 6px 18px rgba(255, 196, 0, 0.3);
   color: #3B3B3B;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-news:hover {
   transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 196, 0, 0.35);
}

/*animacje artykułów*/

.hidden1{
  clear: both;
  opacity: 0;
  transition: all 1s;
 

}

.hidden {
  overflow: hidden; /* kontener */
}

.hidden > * {
  transform: translateX(-100%);
  opacity: 0;
  transition: all 1s;
}



.hidden2 {
  overflow: hidden; /* kontener */
}

.hidden2 > * {
  transform: translateX(100%);
  opacity: 0;
  transition: all 1s;
}
.show{
 
  transform: translateX(0);
  opacity: 1;
}

.hidden2.show > * {
  transform: translateX(0);
  opacity: 1;
}

.hidden.show > * {
  transform: translateX(0);
  opacity: 1;
}

.hidden-bottom {
  overflow: hidden; /* kontener */
}

.hidden-bottom > * {
  transform: translateY(100px);
  opacity: 0;
  transition: all 1s ease;
}

.hidden-bottom.show > * {
  transform: translateY(0);
  opacity: 1;
}
/*o nas*/
#o_nas {
  background: linear-gradient(90deg, #ffffff 0%, #f5f8fa 40%, #def4ff 100%);
  padding: 6% 10%;
}

#blok {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 100px auto;
}

/* Naprzemienny układ */
#blok:nth-child(even) {
  flex-direction: row-reverse;
}

.tekst {
  flex: 1;
  min-width: 300px;
  font-size: 110%;
  line-height: 1.7;
  color: #333;
}

.tekst h2 {
  font-size: 2.2rem;
  color: #0c6f7c;
  font-family: 'Quattrocento', serif;
  margin-bottom: 20px;
}

.tekst p {
  color: #3b3b3b;
  margin-bottom: 10px;
}

/* Przyciski CTA */
.cta-wrapper {
  width: 100%;
  text-align: left;       /* przycisk bliżej tekstu, wyrównany do jego strony */
  margin-top: -10px;      /* lekko dosunięty do tekstu */
  margin-left: 0;
}

#blok:nth-child(even) .cta-wrapper {
  text-align: right;      /* dopasowanie do układu naprzemiennego */
}

.cta-wrapper button {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(90deg, #FFD84D 0%, #FFC107 100%);
  box-shadow: 0 6px 18px rgba(255, 196, 0, 0.3);
  color: #3B3B3B;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
   margin-right: 15%;
}
button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 196, 0, 0.35);
}
.cta-wrapper button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 196, 0, 0.35);
}

.zdjecie {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.zdjecie img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

/* Responsywność 📱 */
@media (max-width: 900px) {
  #blok {
    flex-direction: column;
    text-align: left;
    margin-bottom: 60px;
  }

  #blok:nth-child(even) {
    flex-direction: column;
  }

  .zdjecie img {
    width: 90%;
    margin: 20px auto;
  }

  .tekst h2 {
    font-size: 1.8rem;
  }

  /* przycisk ładnie odstaje od zdjęcia na mobile */
  .cta-wrapper {
    text-align: center;
    margin-top: 10px;     /* w wersji mobilnej wraca odstęp pod zdjęciem */
  }
}

    /*Oferta*/

  /* Sekcja główna */
#oferta {
  background: linear-gradient(90deg, rgba(20,11,11,1) 0%, rgba(30,75,85,1) 0%, rgba(5,147,179,1) 100%);
  text-align: center;
  padding: 4rem 2rem;
}

#oferta h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Kontener kart */
#oferta-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

/* Pojedyncze karty */
#oferta-box1,
#oferta-box2,
#oferta-box3,
#oferta-box4 {
  background: #f5f5f5;
  color: black;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#oferta-box1:hover,
#oferta-box2:hover,
#oferta-box3:hover,
#oferta-box4:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

#oferta-box1 img,
#oferta-box2 img,
#oferta-box3 img,
#oferta-box4 img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

#oferta-box1 h4,
#oferta-box2 h4,
#oferta-box3 h4,
#oferta-box4 h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

#oferta-box1 p,
#oferta-box2 p,
#oferta-box3 p,
#oferta-box4 p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

#cena1,
#cena2,
#cena3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffd700; /* złoty */
}

/* Styl przycisku Booksy */
#booksy {
  display: inline-block;
  padding: 1px;
  background: linear-gradient(90deg, #FFD84D 0%, #FFC107 100%);
  box-shadow: 0 6px 18px rgba(255, 196, 0, 0.3);
  color: #3B3B3B;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

#booksy:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 196, 0, 0.35);
}

#booksy2 {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(90deg, #FFD84D 0%, #FFC107 100%);
  box-shadow: 0 6px 18px rgba(255, 196, 0, 0.3);
  color: #3B3B3B;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
   margin-right: 15%;
}

#booksy2:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 196, 0, 0.35);
}

/* ------------------------------ */
/* 📱 Responsywność: tablety (768–1024 px) */
/* ------------------------------ */
@media (max-width: 1024px) and (min-width: 768px) {
  #oferta {
    padding: 3rem 1.5rem;
  }

  #oferta h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  #oferta-container {
    grid-template-columns: repeat(2, 1fr); /* 2 kolumny dla iPadów */
    gap: 2.5rem;
  }

  #oferta-box1,
  #oferta-box2,
  #oferta-box3,
  #oferta-box4 {
    padding: 1.8rem;
  }

  #oferta-box1 img,
  #oferta-box2 img,
  #oferta-box3 img,
  #oferta-box4 img {
    width: 70px;
    height: 70px;
  }

  #oferta-box1 h4,
  #oferta-box2 h4,
  #oferta-box3 h4,
  #oferta-box4 h4 {
    font-size: 1.3rem;
  }

  #oferta-box1 p,
  #oferta-box2 p,
  #oferta-box3 p,
  #oferta-box4 p {
    font-size: 0.95rem;
  }

  #booksy {
    margin-top: 1.5rem;
    padding: 12px 32px;
    font-size: 1rem;
  }
}

/* ------------------------------ */
/* 📱 Małe urządzenia (poniżej 768 px) */
/* ------------------------------ */
@media (max-width: 767px) {
  #oferta {
    padding: 2rem 1rem;
  }

  #oferta h3 {
    font-size: 1.8rem;
  }

  #oferta-container {
    grid-template-columns: 1fr; /* jedna kolumna */
    gap: 1.5rem;
  }

  #oferta-box1,
  #oferta-box2,
  #oferta-box3,
  #oferta-box4 {
    padding: 1.5rem;
  }

  #oferta-box1 img,
  #oferta-box2 img,
  #oferta-box3 img,
  #oferta-box4 img {
    width: 60px;
    height: 60px;
  }

  #booksy {
    width: 80%;
    max-width: 250px;
  }
}



/*Dlaczego my*/

#reasons {
  padding: 60px 40px;
  text-align: center;
  background: #f7f9fa;
}

#reasons h3 {
  color: #0c6f7c;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Kontener kart */
#reasons-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Pojedyncza karta */
#reasons-container > div {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 142, 170, 0.25);
  padding: 2rem;
  max-width: 340px;
  flex: 1 1 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#reasons-container > div:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

#reasons-container h4 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0c6f7c;
  text-transform: none;
}

#reasons-container p {
  color: #444;
  line-height: 1.6;
  font-size: 1.05rem;
  text-align: left;
}

/* Wyróżniona karta (np. niebieska) */
.blue {
  background-color: #008EAA;
  color: white;
}

.blue h4 {
  color: #FFD84D; /* złoty akcent */
}

.blue p {
  color: #f5f5f5;
}

/* ------------------------------ */
/* 📲 Tablety (768px–1024px) */
/* ------------------------------ */
@media (max-width: 1024px) and (min-width: 768px) {
  #reasons {
    padding: 50px 30px;
  }

  #reasons h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  #reasons-container {
    gap: 25px;
  }

  #reasons-container > div {
    max-width: 45%;
    padding: 1.8rem;
    flex: 1 1 45%;
  }

  #reasons-container h4 {
    font-size: 1.3rem;
  }

  #reasons-container p {
    font-size: 1rem;
  }
}

/* ------------------------------ */
/* 📱 Smartfony (poniżej 768px) */
/* ------------------------------ */
@media (max-width: 767px) {
  #reasons {
    padding: 40px 20px;
  }

  #reasons h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  #reasons-container {
    flex-direction: column;
    gap: 20px;
  }

  #reasons-container > div {
    max-width: 100%;
    padding: 1.5rem;
  }

  #reasons-container h4 {
    font-size: 1.2rem;
  }

  #reasons-container p {
    font-size: 0.95rem;
    text-align: left;
  }
}


/*Stopka*/
footer {
   background: linear-gradient(90deg, rgba(20,11,11,1) 0%, rgba(30,75,85,1) 0%, rgba(5,147,179,1) 100%);
  color: white;
  padding: 50px 20px;
  margin: 0;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.15);
  margin-top: 0;
}

#footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-box {
  flex: 1;
  min-width: 250px;
  margin: 10px;
  text-align: center;
}

#element2 {
  text-align: left;
}

#element2 h4 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#element2 a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

#element2 a:hover {
  color: #ffd700;
}

#element2 p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
  font-size: 16px;
}

#element2 p i,
#element2 p .material-icons {
  color: #ffd700;
  font-size: 20px;
  width: 22px;
  text-align: center;
}

/* Sekcja środkowa */
#element3 h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}

#element3 img{
  width: 45%;
}

#element3 p {
  margin-top: 10px;
  font-size: 16px;
  color: #e0e0e0;
}

/* Social media */
.social {
  text-align: right;
}



.social h4 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social a {
  margin: 0 8px;
  font-size: 28px;
  color: white;
  transition: all 0.3s ease;
}

.social a:hover {
  color: #ffd700;
  transform: scale(1.15);
}

/* Linia autora */
.author {
  background: #033b48;
  padding: 12px 0;
  color: white;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.author a {
  text-decoration: none;
  color: #ffd700;
}

.author a:hover {
  text-decoration: underline;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 900px) {
  #footer {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
   #element2 {
    order: 1;
    text-align: left;
  }

  #element4 {
    order: 2;
    text-align: left;
  }

  #element3 {
    order: 3;
    text-align: center;
  }

  #element2,
  .social {
    text-align: center;
  }

  footer {
    padding: 40px 25px;
  }
}


/*Kontakt*/ 

main{
  margin-top: 40px;
  background: linear-gradient(90deg, #ffffff 0%, #f5f8fa 40%, #def4ff 100%);
  margin-bottom: 0;
}

/* ---------------- Sekcja Kontakt / Call Button ---------------- */
#blok-kontakt {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 40px;
  border-radius: 12px;
  flex-wrap: wrap; /* zabezpieczenie na mobile */
  margin-top: 100px;
}

.tekst, .zdjecie {
  flex: 1;
  min-width: 300px; /* zapobiega zbytnim zwężeniom */
  padding: 30px;
  border-radius: 12px;
}

.zdjecie {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left !important;
}

.zdjecie h2,
.zdjecie p,
.zdjecie ul,
.zdjecie li,
.zdjecie a {
  text-align: left !important;
  margin: 0;
  padding: 0;
}

.zdjecie ul, .tekst ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.zdjecie li, .tekst li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  color: #00484f;
}

.zdjecie li span.material-icons,
.tekst li i.fa {
  color: #007c88;
  margin-right: 6px;
  font-size: 20px;
}

/* Kolory nagłówków i linków */
#blok-kontakt h2, #blok-kontakt h4 {
  color: #007c88;
  font-weight: 600;
}

#blok-kontakt a {
  color: #00484f;
  text-decoration: none;
  line-height: 1.6;
}

/* Mapa responsywna */
.zdjecie iframe {
  width: 100%;
  max-width: 100%;
  height: 350px;
  border: 0;
  border-radius: 10px;
}

/* PRZYCISK - Call Button */
.call-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 22px;
  background: linear-gradient(90deg, #FFD84D 0%, #FFC107 100%);
  color: #003636 !important;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.call-btn:hover {
  background: #ffdb63;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Przyciski mobilne - pływające */
@media (max-width: 900px) {
  #blok-kontakt {
    flex-direction: column;
    padding-bottom: 80px; /* miejsce dla przycisku */
    
  }

  .zdjecie iframe {
    height: 280px;
  }

  .call-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    padding: 18px 0;
    text-align: center;
    font-size: 18px;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.20);
  }
}

@media (max-width: 500px) {
  #blok-kontakt {
    padding: 20px;
  }
  .tekst, .zdjecie {
    padding: 20px;
  }
}


/*Produkty*/

.products-section {
  padding: 80px 10%;
  background: linear-gradient(90deg, #ffffff 0%, #f5f8fa 40%, #def4ff 100%);
}

.products-title {
  text-align: center;
  font-size: 2.6rem;
  font-family: 'Quattrocento', serif;
  color: #0c6f7c;
  margin-bottom: 60px;
}

/* GRID – 3 kafelki w rzędzie */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* KAFEL */
.product-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ZDJĘCIE */
.product-card img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* NAZWA */
.product-card h3 {
  font-size: 1.05rem;
  font-family: 'Poppins', sans-serif;
  color: #333;
  margin-bottom: 12px;
  min-height: 52px;
}

/* „CENA” */
.product-price {
  font-size: 1rem;
  font-weight: 600;
  color: #ffd700;
  letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   AKTUALNOSCI (tylko aktualnosci.html)
   Scoped: .page-news ...
================================ */

.page-news .hero-image-news{
  clear: both;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("hero-aktualności.png"); /* <- podmień jak chcesz */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;

}

/* sekcja */
.page-news .news-section{
  padding: 80px 6%;
  background: linear-gradient(135deg, #ffffff 0%, #f5f8fa 45%, #eaf7ff 100%);
}

.page-news .news-head{
  max-width: 1200px;
  margin: 0 auto 24px;
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
}

.page-news .news-head h2{
  font-family: 'Quattrocento';
  font-size: 2.2rem;
  margin: 0 0 6px;
  color: #12343b;
}

.page-news .news-head p{
  margin: 0;
  color: rgba(18, 52, 59, 0.75);
  max-width: 680px;
  line-height: 1.6;
}

/* filtry */
.page-news .news-filters{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-news .news-filter{
  border: 1px solid rgba(0, 142, 170, 0.25);
  background: rgba(0, 142, 170, 0.06);
  color: #0b6f82;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform .15s ease, background .15s ease;
}

.page-news .news-filter:hover{
  transform: translateY(-1px);
  background: rgba(0, 142, 170, 0.10);
}

.page-news .news-filter.is-active{
  background: linear-gradient(90deg, rgba(0,142,170,.95), rgba(0,170,200,.95));
  color: #fff;
  border-color: rgba(255,255,255,0.15);
}

/* grid */
.page-news .news-grid{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* karta */
.page-news .news-card{
  background: rgba(255,255,255,0.92);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 142, 170, 0.10);
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.page-news .news-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  border-color: rgba(0, 142, 170, 0.22);
}

/* media */
.page-news .news-media{
  position: relative;
  background: linear-gradient(180deg, rgba(0,142,170,.08), rgba(0,142,170,0));
  padding: 14px;
}

.page-news .news-media img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  display: block;
}

/* badge */
.page-news .news-badge{
  position: absolute;
  top: 18px;
  left: 18px;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(185, 146, 18, 0.95); /* gold */
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.page-news .news-badge--soft{
  background: rgba(0, 142, 170, 0.92);
}

.page-news .news-badge--event{
  background: rgba(17, 24, 39, 0.88);
}

/* treść */
.page-news .news-body{
  padding: 16px 18px 18px;
}

.page-news .news-meta{
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(18, 52, 59, 0.65);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.page-news .news-dot{
  opacity: 0.6;
}

.page-news .news-title{
  font-size: 1.05rem;
  line-height: 1.35;
  color: #12343b;
  margin: 0 0 10px;
  font-weight: 800;
  min-height: 48px;
}

.page-news .news-excerpt{
  color: rgba(18, 52, 59, 0.78);
  line-height: 1.6;
  margin: 0 0 14px;
}

/* akcje */
.page-news .news-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.page-news .news-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: #0b6f82;
  background: rgba(0,142,170,0.08);
  border: 1px solid rgba(0,142,170,0.25);
  transition: background .15s ease, transform .15s ease;
}

.page-news .news-cta:hover{
  background: rgba(0,142,170,0.14);
  transform: translateY(-1px);
}

.page-news .news-link{
  text-decoration: none;
  font-weight: 800;
  color: rgba(18, 52, 59, 0.85);
  padding: 10px 6px;
}

/* responsywność */
@media (max-width: 1000px){
  .page-news .news-head{
    flex-direction: column;
    align-items: flex-start;
  }
  .page-news .news-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .page-news .news-section{
    padding: 60px 5%;
  }
  .page-news .news-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .page-news .news-media img{
    height: 210px;
  }
}


@media (min-width: 1025px) {
  .hero-image-news,
  .hero-image-aktualności {
    margin-top: 110px;
  }
}


/* ===== Opinie (Google) – PREMIUM: średnia + slider (FIX) ===== */
.reviews-section{
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 60px clamp(16px, 4vw, 56px);
  background-color: #F7EFE9;
}

.reviews-head,
.reviews-slider-wrap,
.reviews-actions{
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-head{ text-align: center; 
}

.reviews-subtitle{
  max-width: 900px;
  margin: 10px auto 0;
  line-height: 1.6;
  opacity: 0.95;
}

/* Średnia ocena */
.rating-summary{
  margin: 18px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
   background-color: white;
}

.rating-score{ display: inline-flex; align-items: baseline; gap: 4px; }

.rating-value{ font-size: 22px; font-weight: 800; color: #ffd700; }
.rating-max{ font-weight: 700; opacity: 0.9; }

.rating-stars{ letter-spacing: 2px; color: #ffd700; font-size: 16px; }

.rating-meta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  opacity: 0.95;
}
.rating-dot{ opacity: 0.6; }

.rating-link{
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
}

/* Slider wrapper */
/* ===== FIX: strzałki slidera w jednej linii ===== */

.reviews-slider-wrap{
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
}

/* lewa strzałka */
.reviews-prev{
  grid-column: 1;
  grid-row: 1;
}

/* slider */
.reviews-slider{
  grid-column: 2;
  grid-row: 1;
}

/* prawa strzałka */
.reviews-next{
  grid-column: 3;
  grid-row: 1;
}

/* kropki POD sliderem – zawsze */
.reviews-dots{
  grid-column: 1 / -1;
  grid-row: 2;
  justify-content: center;
  margin-top: 16px;
}


/* Navigation */
.reviews-nav{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  background-color: white;
  color: inherit;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* The scroll container MUST be scrollable horizontally */
.reviews-slider{
  overflow-x: auto;   /* <-- kluczowe */
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;        /* Firefox */
}
.reviews-slider::-webkit-scrollbar{ display: none; } /* Chrome/Safari */

.reviews-track{
  display: flex;
  gap: 16px;
  padding: 6px 4px 2px;
}

.review-card{
  min-width: min(520px, 86vw);
  scroll-snap-align: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background-color: white;
  padding: 18px 18px 16px;
  backdrop-filter: blur(6px);
}

.review-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.review-stars{
  letter-spacing: 2px;
  font-size: 18px;
  color: #ffd700;
}

.review-source{ opacity: 0.8; font-size: 14px; }
.review-text{ margin: 0; line-height: 1.65; }
.review-author{ margin-top: 12px; opacity: 0.9; font-weight: 700; }

/* Dots */
.reviews-dots{
  grid-column: 1 / -1;
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.reviews-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.reviews-dot.is-active{ background: rgba(255,255,255,0.85); }

/* CTA */
.reviews-actions{
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.reviews-btn{
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(90deg, #FFD84D 0%, #FFC107 100%);
  box-shadow: 0 6px 18px rgba(255, 196, 0, 0.3);
  color: #3B3B3B;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
   margin-right: 15%;
}

.reviews-link{
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(90deg, #FFD84D 0%, #FFC107 100%);
  box-shadow: 0 6px 18px rgba(255, 196, 0, 0.3);
  color: #3B3B3B;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
   margin-right: 15%;
}

.reviews-btn:hover, .reviews-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 196, 0, 0.35);
}

/* ==========================
   Opinie – MOBILE PREMIUM FIX
   (bez przycinania kart)
========================== */

/* 1) Nie przycinaj kart/cieni w sekcji opinii (animacje mogą nadal działać) */
#opinie .hidden,
#opinie .hidden-bottom{
  overflow: visible !important;
}

/* 2) Mobile: karta ma się mieścić w 100% i nie wyglądać na "uciętą" */
@media (max-width: 600px){


  .reviews-section{
    padding: 48px 14px !important; /* ciaśniej i premium */
    border-radius: 0;
  }

  .reviews-slider-wrap{
    gap: 10px;
  }

  .reviews-slider{
    /* daj delikatny margines na "oddech" przy krawędziach */
    scroll-padding-left: 10px;
    scroll-padding-right: 10px;
  }

  .reviews-track{
    gap: 12px;
    padding: 6px 10px 2px; /* żeby nic nie było obcięte */
  }

  .review-card{
    min-width: calc(100% - 20px) !important; /* pełna szerokość w sliderze */
    padding: 16px 16px 14px;
    border-radius: 18px;
  }

  .review-stars{
    font-size: 16px;
  }

  .review-text{
    font-size: 15px;
    line-height: 1.7;
  }

  /* 3) Średnia ocena: ładne łamanie linii */
  .rating-summary{
    border-radius: 18px !important;
    padding: 12px 12px;
    gap: 10px;
  }

  .rating-meta{
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 6px;
  }

  /* 4) CTA: przyciski jeden pod drugim, równo */
  .reviews-actions{
 
      display: grid;
  place-items: center;
  }

  .reviews-actions a{
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}


/*POPRAWKI*/

/* FIX: grid + slider nie mogą wypychać strony na boki */
.reviews-slider-wrap{
  grid-template-columns: auto minmax(0, 1fr) auto; /* zamiast auto 1fr auto */
}

.reviews-slider{
  min-width: 0; /* kluczowe w grid/flex, żeby nie robić overflow całej strony */
}

.reviews-track{
  min-width: 0; /* dodatkowy bezpiecznik */
}

/* FIX: wyrównanie headera i logo (bez przesunięć) */
@media (min-width: 1120px) {
  .topnav {
    padding-left: 36px;
    padding-right: 36px;
  }

  .topnav a.logo img {
    padding-left: 0 !important;
  }
}

/* ===== FIX: elementy które wypychają stronę (topnav / myLinks / reviews) ===== */

/* 1) Header i rozwijane menu nie mogą generować overflow */
.topnav,
#myLinks{
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* 2) Najczęstszy bug: absolutny element ma padding i "liczy się" poza ekran.
      To go stabilizuje. */
#myLinks{
  overflow-x: hidden;
}

/* 3) Slider w grid/flex MUSI mieć min-width:0, inaczej potrafi wypchnąć cały layout */
.reviews-slider-wrap{
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.reviews-slider{
  min-width: 0;
  max-width: 100%;
}

.reviews-track{
  min-width: 0;
  max-width: 100%;
}

/* 4) Linki w menu: czasem nowrap + duży font robią większą szerokość niż viewport */
#myLinks a{
  white-space: normal;      /* pozwól łamać linie */
  overflow-wrap: anywhere;  /* jak będzie długi tekst, nie wypchnie layoutu */
}

#myLinks .no-wrap{
  white-space: normal !important;
}

/* ===== stabilizacja układu strony głównej ===== */
#o_nas,
#news-section,
#oferta,
#opinie,
#reasons {
  scroll-margin-top: 110px;
}

.hero-image,
#news-section,
#o_nas,
#oferta,
#opinie,
#reasons,
footer,
.author {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}


/* ===== FINAL FIX: desktop menu po prawej bez zmiany napisów ===== */
@media (min-width: 1120px) {
  .topnav {
    justify-content: flex-start !important;
    gap: 24px;
  }

  .topnav > #myLinks {
    display: flex !important;
    flex-wrap: nowrap;
    margin-left: auto !important;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
  }

  .topnav > #myLinks a,
  .topnav > #myLinks .no-wrap {
    white-space: nowrap !important;
    overflow-wrap: normal !important;
    word-break: keep-all !important;
    padding: 0 !important;
    line-height: 1.2;
    flex: 0 0 auto;
  }
}
@media (max-width: 920px) {

  .hero-image,
  .hero-image-produkt {
    margin-top: 140px;
  }
.hero-image-news,
  .hero-image-aktualności{
     margin-top: 160px;
  }
}

/* Sekcja galerii Booksy */
#booksy-gallery {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  scroll-margin-top: 110px;
}

.booksy-gallery-shell {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1px 0;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(255,216,77,0.28) 18%, rgba(12,111,124,0.28) 58%, rgba(255,255,255,0.85) 100%);
  box-shadow: 0 30px 80px rgba(16, 24, 40, 0.18);
  overflow: hidden;
}

#oferta + #booksy-gallery,
#booksy-gallery + .reviews-section {
  margin-top: 0;
}

.booksy-gallery-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.65), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255,216,77,0.18), transparent 24%);
  pointer-events: none;
}

.booksy-gallery-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 54px;
  width: 100%;
  min-height: 100%;
  padding: 48px clamp(18px, 4vw, 64px);
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(13, 18, 24, 0.94) 0%, rgba(15, 46, 55, 0.97) 52%, rgba(8, 97, 118, 0.93) 100%);
  color: #fff;
  overflow: hidden;
}

.booksy-gallery-inner::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,216,77,0.16) 0%, rgba(255,216,77,0) 72%);
  pointer-events: none;
}

.booksy-gallery-image-wrap {
  position: relative;
}

.booksy-gallery-image-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(8, 10, 14, 0.48);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booksy-gallery-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 26px 60px rgba(0,0,0,0.34);
}

.booksy-gallery-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}

.booksy-gallery-image img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.booksy-gallery-content {
  position: relative;
  z-index: 1;
  text-align: left;
  padding-right: 12px;
}

.booksy-gallery-label {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,216,77,0.28);
  background: rgba(255,216,77,0.10);
  color: #ffe082;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booksy-gallery-content h3 {
  margin: 0 0 20px;
  font-family: 'Quattrocento';
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffd700;
  max-width: 18ch;
}

.booksy-gallery-lead {
  margin: 0 0 28px;
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 640px;
}

.booksy-gallery-points {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.booksy-gallery-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.booksy-gallery-point .material-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,216,77,0.22), rgba(255,255,255,0.08));
  color: #ffe082;
  font-size: 22px;
}

.booksy-gallery-point strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.booksy-gallery-point p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.98rem;
  line-height: 1.65;
}

.booksy-gallery-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.booksy-gallery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe082 0%, #ffc83d 48%, #ffb300 100%);
  color: #1d1d1d;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 18px 32px rgba(255, 196, 0, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.booksy-gallery-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(255, 196, 0, 0.28);
  filter: brightness(1.03);
}

.booksy-gallery-note {
  color: rgba(255,255,255,0.62);
  font-size: 0.94rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  #booksy-gallery {
    margin: 0;
  }

  .booksy-gallery-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 20px;
  }

  .booksy-gallery-content {
    padding-right: 0;
  }

  .booksy-gallery-content h3 {
    max-width: none;
    font-size: 1.8rem;
  }

  .booksy-gallery-lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .booksy-gallery-point {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 14px;
  }

  .booksy-gallery-point .material-icons {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .booksy-gallery-btn {
    width: 100%;
    text-align: center;
  }
}

.booksy-strip {
    width: 100%;
    background: #0f2f36;
    padding: 20px 24px;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.booksy-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

/* 🔥 NOWOCZESNY FONT */
.booksy-text {
    margin: 0;
    color: rgba(255,255,255,0.85);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    font-weight: 400;
}

/* 🔥 CTA premium */
.booksy-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

/* hover jak w drogich UI */
.booksy-cta:hover {
    background: rgba(255,255,255,0.16);
    transform: translateY(-1px);
}

.booksy-cta .arrow {
    transition: transform 0.3s ease;
}

.booksy-cta:hover .arrow {
    transform: translateX(4px);
}