/* ==========================================================================
   SULIQ.PL — GŁÓWNY ARKUSZ STYLÓW
   ==========================================================================

   SKĄD TE DZIWNE NAZWY KLAS (div-block-5, text-block-2, link-2 itd.)?
   Strona została pierwotnie zbudowana w Webflow, który każdemu elementowi
   bez własnej nazwy nadaje generyczną etykietę (div-block-N, text-block-N,
   heading-N...) w kolejności tworzenia. Te nazwy są rozsiane po WSZYSTKICH
   40 stronach HTML, więc zmiana którejkolwiek z nich wymagałaby edycji
   każdej strony, na której występuje — stąd zostały jak są. Dla orientacji,
   najważniejsze/najczęstsze z nich:

     .navbar             pasek nawigacji (górne menu)
     .div-block-5        przełącznik języka w navbarze (desktop)
     .div-block-6        rozwijane menu nawigacji (desktop, hover)
     .link-2             przycisk „Skontaktuj się” w navbarze
     .text-block-2        napis „SULIQ.PL” (logo w navbarze)
     .div-block-3        pomarańczowe kółko ze strzałką (element przycisków)
     .container-5/8/9    kontenery layoutu (navbar / breadcrumbs+treść / sidebar+treść)
     .heading-5/6/8       nagłówki na stronach kategorii / listy / produktu
     .paragraph-13/14     opis pod nagłówkiem na stronach kategorii
     .bread_crumbs        ścieżka okruszkowa (breadcrumbs)
     .product_wrapper     pojedynczy wiersz na liście kategorii
     .sidebar_nav         drzewo kategorii na stronie produktu (desktop) / w szufladzie (mobile)
     .powders_list        pigułki-linki do tabel na stronie produktu

   Wszystkie NOWE klasy dodane podczas prac nad wersją mobilną/tabletową
   (poniżej, w sekcjach oznaczonych komentarzami) mają już czytelne,
   opisowe nazwy: .mobile_menu_*, .lang_switcher_*, .mobile_hero_*,
   .mobile_category_drawer_*, .mobile_stat_* itd.
   ========================================================================== */

:root {
  --site-background: #eaf0ef;
  --text_main: #1c2b35;
  --button-dark-blue: #003459;
  --navbar-background: #dae1e799;
  --dropdown-background: #fffffff2;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.youtube {
  margin-left: -164px;
}

.hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.image {
  aspect-ratio: auto;
  object-fit: fill;
}

.container {
  z-index: 20;
  width: 100%;
  max-width: none;
  height: 100%;
  display: flex;
  position: relative;
  overflow: visible;
}

.left_panel {
  flex: none;
  width: 71%;
  display: block;
  position: static;
}

.right_panel {
  clip-path: polygon(49% 0, 100% 0, 100% 100%, 2% 100%);
  flex: 0 0 66%;
  width: 72%;
  margin-left: -36%;
  margin-right: 0;
  padding-right: 0;
}

.container-2 {
  z-index: 18;
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 46%;
  max-width: none;
  padding-left: 60px;
  display: flex;
  position: absolute;
  top: 61%;
  left: 0;
  right: auto;
}

.container-3 {
  background-color: var(--site-background);
  max-width: none;
}

.body {
  font-family: Manrope, sans-serif;
}

.heading {
  color: var(--text_main);
  text-align: left;
  letter-spacing: -1px;
  margin-bottom: 6px;
  font-family: Funnel Display, sans-serif;
  font-size: 35px;
  font-weight: 800;
}

.paragraph {
  max-width: 85%;
  font-size: 12px;
  line-height: 16px;
}

.paragraph-2 {
  text-align: right;
  max-width: 85%;
  margin-left: auto;
  font-size: 12px;
  line-height: 16px;
}

.heading-2 {
  color: var(--text_main);
  text-align: right;
  letter-spacing: -1px;
  margin-bottom: 6px;
  font-family: Funnel Display, sans-serif;
  font-size: 35px;
  font-weight: 800;
}

.container-4 {
  z-index: 17;
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 42%;
  max-width: none;
  margin-right: 0;
  padding-right: 60px;
  display: flex;
  position: absolute;
  top: 29%;
  left: auto;
  right: 0;
}

.button {
  z-index: 1;
  background-color: var(--button-dark-blue);
  border-radius: 25px;
  justify-content: flex-start;
  align-items: center;
  width: 172px;
  height: 42px;
  margin-left: 0;
  padding-left: 23px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

/* Ukraiński tekst przycisków w hero ("Переглянути пропозицію") jest dłuższy
   niż polski/angielski i nie mieści się w stałej szerokości 172px, przez co
   zawijał się do dwóch linii w przycisku o stałej wysokości 42px. */
/* Ukraiński tekst przycisków w hero ("Переглянути пропозицію") jest dłuższy
   niż polski/angielski i nie mieści się w stałej szerokości 172px, przez co
   zawijał się do dwóch linii w przycisku o stałej wysokości 42px. Wysokość
   MUSI zostać 42px (tyle samo co .button_background_hover — animowane tło
   najazdu — inaczej tło "ucieka" poza przycisk), więc poszerzamy tylko
   szerokość i nie zawijamy tekstu. */
html[lang="uk"] .button {
  width: auto;
  padding-right: 40px;
}
html[lang="uk"] .button .text-block {
  white-space: nowrap;
}

.div-block-3 {
  z-index: 9;
  border: 3px solid #f0640f;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin: 5px 6px 5px auto;
  display: flex;
  position: relative;
}

.image-2 {
  vertical-align: baseline;
  background-color: #0000;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
}

.text-block {
  z-index: 9;
  color: var(--site-background);
  text-decoration: none;
  position: relative;
}

.section-2 {
  z-index: 1000;
  width: 100%;
  height: auto;
  margin-left: 0;
  margin-right: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.container-5 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  max-width: none;
  height: auto;
  margin-top: 20px;
  margin-left: 60px;
  margin-right: 60px;
  display: flex;
}

.navbar {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--navbar-background);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #404040;
  border-radius: 999px;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  width: 230px;
  height: 55px;
  padding-left: 27px;
  padding-right: 12px;
  display: flex;
}

.div-block-5 {
  position: relative;
  margin-left: 15px;
  display: flex;
}

.lang_switcher_toggle {
  display: flex;
  align-items: center;
  gap: 9px;
  background-color: var(--navbar-background);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 999px;
  height: 55px;
  padding: 0 20px;
  box-sizing: border-box;
  cursor: pointer;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000;
}
.lang_switcher_icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}
.lang_switcher_chevron {
  flex: 0 0 auto;
  color: #000;
  transition: transform 0.2s ease;
}
.div-block-5.is-open .lang_switcher_chevron {
  transform: rotate(180deg);
}

.lang_switcher_dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(0, 21, 33, 0.18);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 50;
}
.div-block-5.is-open .lang_switcher_dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang_switcher_option {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-radius: 10px;
  padding: 11px 14px;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #262626;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.lang_switcher_option:hover {
  background-color: #eaf0ef;
}
.lang_switcher_option.is-active {
  background-color: #003459;
  color: #fff;
  font-weight: 600;
}

.link-block {
  justify-content: center;
  align-items: center;
  width: 77px;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.div-block-6 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex: 0 auto;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.text-block-2 {
  color: #000;
  font-family: Funnel Display, sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.link {
  color: #000;
  border: 1px #000;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
}

.link-2 {
  border: 1.5px solid var(--button-dark-blue);
  color: #000;
  border-radius: 20px;
  padding: 6px 13px;
  font-size: 14px;
  text-decoration: none;
}

.text-block-3 {
  color: #000;
}

.dropdown-toggle {
  vertical-align: baseline;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  padding: 0;
  display: flex;
}

.icon {
  align-self: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.text-block-4 {
  color: #000;
  align-self: center;
  margin-right: 19px;
  text-decoration: none;
}

.dropdown {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  padding-top: 20px;
  padding-bottom: 20px;
}

.dropdown-list {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #ffffff78;
}

.dropdown-list.w--open {
  background-color: var(--dropdown-background);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  width: 260px;
  margin-top: 18px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 0;
}

.icon-2 {
  transform: rotate(-90deg);
}

.dropdown-toggle-2 {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  white-space: normal;
}

.dropdown-toggle-2.dropdown-link {
  width: 100%;
  text-decoration: none;
}

.dropdown-list-2 {
  background-color: var(--dropdown-background);
  padding-top: 5px;
  padding-bottom: 5px;
}

.dropdown-list-2.w--open {
  background-color: var(--dropdown-background);
  border-radius: 15px;
  width: 260px;
  margin-top: -44px;
  margin-left: 0;
  left: 100%;
}

.dropdown-link {
  color: #404040;
  border-radius: 10px;
  width: auto;
  max-width: none;
  line-height: 18px;
  -webkit-text-decoration: none;
  text-decoration: none;
  overflow: visible;
  white-space: normal;
}

.dropdown-link:hover {
  background-color: #dae2e800;
  border-radius: 10px;
}

.dropdown-2, .dropdown-2.dropdown-link-2 {
  width: 100%;
}

.dropdown-list-3.w--open {
  background-color: var(--dropdown-background);
  border-radius: 15px;
  width: 260px;
  margin-top: -43px;
  margin-left: 0;
  left: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
}

.dropdown-link-2 {
  width: auto;
}

.right_panel_background {
  clip-path: polygon(49% 0, 100% 0, 100% 100%, 2% 100%);
  background-image: url('../images/natrysk_tlo_herosection.png');
  background-position: 0%;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin-left: 0;
}

.dark_opacity {
  z-index: 19;
  opacity: 0;
  pointer-events: none;
  background-color: #0000;
  background-image: linear-gradient(294deg, #000, #394347);
  border-radius: 13px;
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
}

.div-block-7 {
  width: 100%;
  height: 100%;
}

.div-block-8 {
  background-image: linear-gradient(93deg, #000, #fff);
  width: 70%;
  height: 100%;
  position: absolute;
}

.right_panel_opacity {
  clip-path: polygon(49% 0, 100% 0, 100% 100%, 2% 100%);
  width: 100%;
  height: 100%;
  margin-left: 0;
}

.right_panel_opacity2 {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  background-image: linear-gradient(141deg, #000, #394347);
  width: 100%;
  height: 100%;
  position: absolute;
}

.left_panel_background {
  z-index: 15;
  background-image: url('../images/szpula_tlo_herosection.png');
  background-position: 0%;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
  top: -100%;
}

.button_background_hover {
  z-index: 8;
  color: #fff;
  background-color: #16527d;
  width: 0%;
  height: 42px;
  margin-left: -25px;
  margin-right: 0;
  position: absolute;
  overflow: hidden;
}

.about_animation {
  background-color: #eaf0ef;
  height: 100vh;
  overflow: hidden;
}

.container-6 {
  background-color: #fbd6d600;
  width: auto;
  max-width: none;
  height: 100%;
  margin: 0 60px 60px;
  position: relative;
}

.image-3 {
  position: static;
}

.wewn_grafika {
  aspect-ratio: 1;
  width: 50%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 5%;
  left: 25%;
}

.tlo_siatka {
  z-index: 6;
  opacity: 0;
  position: absolute;
}

.obrecz_przerywana {
  z-index: 7;
  opacity: 0;
  width: 80%;
  position: absolute;
  top: 10%;
  left: 10%;
  transform: rotate(180deg)scale(.2);
}

.obrecz_zewn {
  z-index: 9;
  opacity: 0;
  width: 70%;
  height: auto;
  position: absolute;
  top: 15%;
  left: 15%;
  transform: scale(.5);
}

.heading_grafika {
  z-index: 8;
  opacity: 0;
  width: 60%;
  color: var(--text_main);
  text-align: center;
  letter-spacing: -1px;
  margin-top: 0;
  font-family: Funnel Display, sans-serif;
  font-size: clamp(26px, 2.3vw, 50px);
  font-weight: 700;
  line-height: 1;
  position: static;
  top: 26%;
  left: 15%;
  transform: translate(0, 10px);
}

.paragraph_grafika {
  opacity: 0;
  text-align: center;
  width: 60%;
  font-size: clamp(13px, 1vw, 30px);
  position: static;
  top: 42%;
  left: 20%;
  transform: translate(0, 10px);
}

.button_grafika {
  z-index: 9;
  background-color: var(--button-dark-blue);
  opacity: 0;
  border-radius: 25px;
  justify-content: flex-start;
  align-items: center;
  width: 235px;
  height: 42px;
  padding-left: 23px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
  transform: translate(0, 10px);
}

.div-block-10 {
  justify-content: center;
  align-items: flex-start;
  margin-top: 67%;
  display: flex;
}

.div-block-11 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 0%;
  display: flex;
  position: absolute;
  top: 30%;
}

.photo_div {
  z-index: 10;
  aspect-ratio: 16 / 9;
  opacity: 0;
  background-image: url('../images/index_1.jpeg');
  background-position: 50%;
  background-size: cover;
  border-radius: 15px;
  width: 24%;
  position: absolute;
  top: 14%;
  left: 2%;
  transform: scale(.5);
}

.photo_div2 {
  z-index: 10;
  aspect-ratio: 16 / 9;
  opacity: 0;
  background-image: url('../images/gwozdzie.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 15px;
  width: 24%;
  position: absolute;
  top: 10%;
  left: auto;
  right: 1%;
  transform: scale(.5);
}

.photo_div3 {
  z-index: 10;
  aspect-ratio: 16 / 9;
  opacity: 0;
  background-image: url('../images/proszki3.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 15px;
  width: 24%;
  position: absolute;
  top: 64%;
  left: 0%;
  transform: scale(.5);
}

.photo_div4 {
  z-index: 10;
  aspect-ratio: 16 / 9;
  opacity: 0;
  background-image: url('../images/index_4.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 15px;
  width: 24%;
  position: absolute;
  top: 59%;
  left: auto;
  right: 3%;
  transform: scale(.5);
}

.div-block-12 {
  background-color: #000;
  width: 20%;
  height: 2px;
  position: absolute;
  top: 30%;
  left: 18%;
  transform: rotate(7deg);
}

.szpula {
  z-index: 7;
  aspect-ratio: 1;
  opacity: 0;
  width: 300%;
  max-width: none;
  position: absolute;
  top: -100%;
  left: -100%;
}

.maska {
  z-index: 8;
  opacity: 0;
  width: 300%;
  max-width: none;
  position: absolute;
  top: -100%;
  left: -100%;
}

.text_container2 {
  opacity: 0;
  width: 50%;
  height: 22%;
  position: absolute;
  top: 15%;
  right: 0;
}

.heading_grafika2 {
  text-align: right;
  margin-top: 0;
  font-family: Funnel Display, sans-serif;
  font-size: clamp(30px, 2vw, 50px);
  line-height: 1.1;
}

.paragraph_grafika2 {
  text-align: right;
  font-size: clamp(13px, 1vw, 30px);
}

.heading_szpula2 {
  width: auto;
  color: var(--button-dark-blue);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 20px;
  font-family: Funnel Display, sans-serif;
  font-size: clamp(38px, 2vw, 50px);
  font-weight: 600;
  position: static;
  top: auto;
  left: auto;
}

.paragraph_szpula1 {
  margin-bottom: 0;
  font-family: Funnel Display, sans-serif;
  font-size: clamp(16px, 1.8vw, 30px);
  position: static;
  top: 0%;
  left: 0%;
}

.tekst_szpula2 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  opacity: 0;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  display: flex;
  position: absolute;
  top: 100%;
  left: -19%;
  transform: rotate(135deg);
}

.tekst_szpula1 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  opacity: 0;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  display: flex;
  position: absolute;
  top: 112%;
  left: 34%;
  transform: rotate(90deg);
}

.heading_szpula1 {
  width: auto;
  color: var(--button-dark-blue);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 20px;
  font-family: Funnel Display, sans-serif;
  font-size: clamp(38px, 2vw, 50px);
  font-weight: 600;
  position: static;
  top: auto;
  left: auto;
}

.tekst_szpula3 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  opacity: 0;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  display: flex;
  position: absolute;
  top: 52%;
  left: -44%;
  transform: rotate(180deg);
}

/* Wersja angielska ma dłuższy tekst niż polski ("10 years" / "of market
   experience" itd.), co przesuwa te etykiety na linię obręczy zamiast nad
   nią. Korekta wyłącznie dla html[lang="en"], żeby nie ruszać wersji PL. */
html[lang="en"] .tekst_szpula1 {
  left: 40%;
}
html[lang="en"] .tekst_szpula2 {
  top: 94%;
  left: -11%;
}
html[lang="en"] .tekst_szpula3 {
  left: -38%;
}

.heading_szpula3 {
  width: auto;
  color: var(--button-dark-blue);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 20px;
  font-family: Funnel Display, sans-serif;
  font-size: clamp(38px, 2vw, 50px);
  font-weight: 600;
  position: static;
  top: auto;
  left: auto;
}

.paragraph_szpula3 {
  margin-bottom: 0;
  font-family: Funnel Display, sans-serif;
  font-size: clamp(16px, 1.8vw, 30px);
  position: static;
  top: 0%;
  left: 0%;
}

.technologies {
  z-index: 30;
  height: 50vh;
  margin-top: 0%;
  margin-bottom: 60px;
  position: static;
}

.technologies_wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  width: auto;
  max-width: none;
  height: 100%;
  margin-left: 60px;
  margin-right: 60px;
  display: flex;
  position: static;
}

.technologies_text {
  flex: 0 60%;
  height: 100%;
  margin-left: 0;
  margin-right: 3%;
}

.heading-3 {
  margin-bottom: 20px;
  font-family: Funnel Display, sans-serif;
}

.paragraph-3 {
  margin-top: 0;
  margin-left: 84px;
}

.video {
  box-sizing: border-box;
  aspect-ratio: auto;
  flex: 0 auto;
  width: 40%;
  height: 6%;
  position: relative;
}

.video-2 {
  border-radius: 15px;
  flex: 0 auto;
  height: 100px;
  max-height: 100px;
}

.video_div {
  border-radius: 15px;
  width: 51%;
  height: auto;
  overflow: hidden;
}

.button_technologies {
  z-index: 1;
  background-color: var(--button-dark-blue);
  border-radius: 25px;
  justify-content: flex-start;
  align-items: center;
  width: 200px;
  height: 42px;
  margin-top: 15px;
  margin-left: 85px;
  padding-top: 0;
  padding-left: 23px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer {
  background-color: var(--button-dark-blue);
  margin-top: 0;
}

.footer_wrapper {
  max-width: none;
  height: 65%;
  margin-top: 0;
  margin-left: 60px;
  margin-right: 60px;
  padding-top: 60px;
  display: flex;
}

.footer_form {
  background-color: #ffffff1a;
  border-radius: 20px;
  flex: 1;
  height: fit-content;
}

.anchor_marker {
  height: 0;
  scroll-margin-top: 100px;
}

/* Cele skoków do kotwic (przycisk "Skontaktuj się", pigułki na stronach
   produktowych, link do dokumentów na "O nas") - navbar jest position:fixed
   i zasłaniałby górę sekcji bez tego odstępu. */
.powder_table_section,
.documents_section {
  scroll-margin-top: 100px;
}

.footer_info {
  flex: 1;
  padding-left: 0;
}

.button-copy {
  z-index: 1;
  background-color: var(--button-dark-blue);
  border-radius: 25px;
  justify-content: flex-start;
  align-items: center;
  width: 172px;
  height: 42px;
  margin-left: 85px;
  padding-left: 23px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.heading_form {
  color: #fafafa;
  font-family: Funnel Display, sans-serif;
}

.info_heading {
  color: #fff;
  margin-bottom: 20px;
  font-family: Funnel Display, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.div-block-13 {
  padding-left: 6vw;
  padding-right: 5vw;
}

.div-block-14 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid #d6d6d6;
  border-radius: 20px;
  width: fit-content;
  height: auto;
  margin-bottom: 20px;
  display: flex;
}

.div-block-15 {
  flex: none;
  font-weight: 500;
}

.div-block-16 {
  flex: none;
}

.paragraph-4 {
  color: #fff;
}

.div-block-17 {
  flex-flow: column;
  padding: 15px 15px 15px 20px;
  display: flex;
}

.paragraph-5 {
  color: #bcbcbc;
}

.paragraph-6 {
  color: #fff;
}

.div-block-18 {
  padding: 15px 20px 15px 15px;
}

.paragraph-7 {
  color: #bcbcbc;
}

.paragraph-8 {
  color: #fff;
  margin-bottom: 5px;
  font-weight: 500;
}

.paragraph-9 {
  color: #bcbcbc;
}

.paragraph-10 {
  color: #fff;
  margin-bottom: 5px;
  font-weight: 500;
}

.paragraph-11 {
  color: #bcbcbc;
}

.div-block-19 {
  margin-bottom: 15px;
}

.heading-4 {
  color: #aeb6bb;
  letter-spacing: -8px;
  margin-top: 15vh;
  margin-left: 60px;
  font-family: Funnel Display, sans-serif;
  font-size: clamp(160px, 7vw, 600px);
  font-weight: 500;
  line-height: 70px;
}

.image-4 {
  max-width: none;
  height: 70vh;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  position: static;
}

.div-block-20 {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-top: -5vh;
  display: flex;
}

.body-2 {
  font-family: Manrope, sans-serif;
}

.section-4 {
  width: 100%;
}

.section-5 {
  height: 80vh;
  position: relative;
}

.div-block-22 {
  z-index: 3;
  clip-path: polygon(0% 0%, 100% 0%, 60% 100%, 0% 100%);
  background-color: #fff0;
  background-image: radial-gradient(circle at 33%, #034a7d 14%, #003459);
  width: 63%;
  height: 100%;
  position: relative;
}

.div-block-23 {
  z-index: 1;
  background-image: url('../images/produkty_stalowe_tlo.png');
  background-position: 50%;
  background-size: cover;
  width: 77%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.div-block-24 {
  color: #bababa;
  width: auto;
  height: 100%;
  padding-top: 110px;
  padding-left: 60px;
}

.bread_crumbs {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  display: flex;
}

.link-3 {
  color: #bababa;
  font-size: 12px;
  text-decoration: none;
}

.link-4 {
  color: #fff;
  text-decoration: none;
}

.link-4.w--current, .paragraph-12 {
  font-size: 12px;
}

.div-block-26 {
  flex-flow: column;
  height: auto;
  display: flex;
}

.heading-5 {
  color: #fff;
  width: 77%;
  margin-bottom: 20px;
  font-family: Funnel Display, sans-serif;
  font-size: 40px;
  font-weight: 600;
}

.paragraph-13 {
  color: #d2dbd9;
  width: 69%;
  font-size: 13px;
}

.paragraph-14 {
  color: #d2dbd9;
  width: 60%;
}

.product_wrapper {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  border: 1px solid #d6d6d6;
  border-radius: 1px;
  justify-content: space-between;
  align-items: center;
  height: 170px;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.div-block-28 {
  margin-top: 0;
  margin-bottom: 0;
}

.paragraph-15 {
  color: #838383;
  align-self: center;
  margin-bottom: 0;
  font-family: Funnel Display, sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.div-block-29 {
  grid-column-gap: 61px;
  grid-row-gap: 61px;
  justify-content: flex-start;
  align-items: center;
  width: 55%;
  height: 52px;
  display: flex;
}

.heading-6 {
  align-self: auto;
  min-width: 160px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Funnel Display, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
}

.paragraph-16 {
  width: 43%;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 16px;
}

.div-block-30 {
  grid-column-gap: 23%;
  grid-row-gap: 23%;
  justify-content: flex-start;
  align-items: center;
  width: 60%;
  height: 100%;
  display: flex;
}

.button_product {
  z-index: 6;
  background-color: #fff;
  border-radius: 25px;
  justify-content: flex-start;
  align-items: center;
  width: 170px;
  height: 42px;
  margin-left: 0;
  padding-left: 23px;
  text-decoration: none;
  display: flex;
  position: absolute;
  right: 60px;
  overflow: hidden;
}

.div-block-31 {
  align-items: center;
  height: 100%;
  display: flex;
}

.section-6 {
  background-color: var(--site-background);
}

.product_mask {
  z-index: 4;
  background-color: var(--site-background);
  width: 100%;
  height: 170px;
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
}

.product_image {
  z-index: 3;
  background-image: url('../images/product_photo1.png');
  background-position: 100%;
  background-size: cover;
  width: 100%;
  height: 170px;
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
}

.photo_animation {
  border-radius: 0;
  width: 310px;
  height: 168px;
  position: absolute;
  right: 0;
  overflow: hidden;
}

.div-block-33 {
  position: absolute;
  bottom: 0;
}

.text-block-product {
  z-index: 9;
  color: var(--button-dark-blue);
  text-decoration: none;
  position: relative;
}

.powloki_ochronne_wrapper {
  width: 100%;
  padding-top: 0;
}

.body-3 {
  font-family: Manrope, sans-serif;
}

.link-5 {
  color: #fff;
  text-decoration: none;
}

.link-5.w--current {
  font-size: 12px;
}

.button_background_hover_product {
  z-index: 8;
  color: #fff;
  background-color: #d3d3d3;
  width: 0%;
  height: 42px;
  margin-left: -25px;
  margin-right: 0;
  position: absolute;
  overflow: hidden;
}

.link-6 {
  color: #bababa;
  font-size: 12px;
  text-decoration: none;
}

.link-6.w--current {
  font-size: 12px;
}

.body-4 {
  font-family: Manrope, sans-serif;
}

.link-7 {
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}

.link-7.w--current {
  font-size: 12px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.body-5, .body-6, .body-7 {
  font-family: Manrope, sans-serif;
}

.container-8 {
  max-width: none;
  margin-bottom: 60px;
  margin-left: 60px;
  margin-right: 60px;
  padding-top: 110px;
}

.crumb_link_product_active {
  color: var(--text_main);
  font-size: 12px;
  text-decoration: none;
}

.crumb_link_product_active.w--current {
  font-size: 12px;
}

.body-8 {
  background-color: var(--site-background);
  font-family: Manrope, sans-serif;
}

.crumb_link_product_passive {
  color: #8e8e8e;
  font-size: 12px;
  text-decoration: none;
}

.crumb_link_product_passive.w--current {
  font-size: 12px;
}

.container-9 {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  width: 100%;
  max-width: none;
  margin-top: 30px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.dropdown_wrapper {
  flex: none;
  width: 250px;
}

.product_info_wrapper {
  flex: 1;
  min-width: 0;
  margin-left: 50px;
}

.product_heading {
  text-align: center;
  margin-top: 0;
  margin-bottom: 35px;
  font-family: Funnel Display, sans-serif;
  font-size: 30px;
  font-weight: 500;
}

.usage_info_wrapper {
  margin-bottom: 70px;
}

.usage_title {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 25px;
  display: flex;
}

.heading-8 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Manrope, sans-serif;
  font-size: 22px;
  font-weight: 600;
  position: static;
}

.image-5 {
  width: 27px;
}

.paragraph-17, .paragraph-18, .paragraph-19 {
  color: #404040;
}

.product_photo_gallery {
  width: 100%;
  margin-bottom: 70px;
  max-height: 420px;
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 28px, black calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 28px, black calc(100% - 28px), transparent 100%);
}

.gallery_photo {
  border-radius: 15px;
  height: 100%;
  width: auto;
  max-height: 420px;
  object-fit: cover;
  margin-right: 20px;
}

.photos_gallery {
  display: flex;
  width: max-content;
  animation: photoGalleryMarquee 18s linear infinite;
}
@keyframes photoGalleryMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.div-block-34 {
  position: absolute;
  left: 0;
}

.parameters_info_wrapper {
  margin-bottom: 70px;
}

.parameters_title {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.packaging_info_wrapper {
  margin-bottom: 70px;
}

.usage_title-copy {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.pointer_text {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.paragraph-20 {
  margin-bottom: 0;
}

.options_info_wrapper {
  margin-bottom: 70px;
}

.link-8 {
  color: #404040;
  text-decoration: none;
  white-space: normal;
}

.body-9, .body-10, .body-11 {
  background-color: var(--site-background);
  font-family: Manrope, sans-serif;
}

@media screen and (min-width: 1280px) {
  .container-2 {
    width: 53%;
    top: 60%;
  }

  .heading {
    font-size: 42px;
  }

  .paragraph {
    font-size: 12px;
  }

  .heading-2 {
    font-size: 42px;
  }

  .container-4 {
    width: 49%;
    top: 25%;
  }
}

@media screen and (min-width: 1440px) {
  .container-2 {
    width: 44%;
    top: 59%;
  }

  .heading {
    margin-bottom: 10px;
    font-size: 43px;
  }

  .paragraph, .paragraph-2 {
    max-width: none;
    font-size: 13px;
    line-height: 18px;
  }

  .heading-2 {
    margin-bottom: 10px;
    font-size: 43px;
  }

  .container-4 {
    width: 43%;
    top: 22%;
  }

  .text-block-4 {
    color: #000;
    text-decoration: none;
  }

  .dropdown-link {
    text-decoration: none;
  }

  .container-7 {
    max-width: none;
  }

  .section-3 {
    height: 80vh;
  }

  .body-2 {
    font-family: Manrope, sans-serif;
    font-weight: 400;
  }

  .div-block-21 {
    clip-path: polygon(0% 0%, 100% 0%, 60% 100%, 0% 100%);
    background-color: #907474;
    width: 66%;
    height: 100%;
  }

  .div-block-29 {
    width: 55%;
  }

  .heading-6 {
    width: auto;
  }

  .div-block-30 {
    grid-column-gap: 90px;
    grid-row-gap: 90px;
    justify-content: flex-start;
  }

  .div-block-32 {
    background-color: #efefef;
    flex: 0 auto;
    width: 26%;
    height: 170px;
    position: absolute;
    right: 0;
  }

  .product_mask {
    background-color: #efefef;
  }

  .container-9 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .product_info_wrapper {
    margin-left: 70px;
  }

  .product_heading {
    font-size: 32px;
  }
}



/* ==== Sekcje "O firmie" / "Nasi partnerzy" (o-nas.html) ==== */
.heading-9,
.heading-10 {
  font-family: Funnel Display, sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #001521;
  margin-top: 0;
  margin-bottom: 16px;
}

.div-block-35,
.div-block-38 {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.div-block-36,
.div-block-39 {
  flex: 1 1 320px;
}

.div-block-36 p,
.div-block-39 p {
  color: #404040;
  font-family: Manrope, sans-serif;
  line-height: 1.5;
}

.div-block-37,
.div-block-40 {
  flex: 1 1 320px;
  min-height: 260px;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.div-block-37 {
  background-image: url('../images/o_firmie_photo2.jpg');
}

.div-block-40 {
  background-image: url('../images/nasi_partnerzy_photo.png');
}

/* ==== Statyczne zdjęcia produktowe (1-2 szt.) — bez mechanizmu przesuwającej się galerii ==== */
.static_photos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.static_photo {
  max-height: 420px;
  max-width: 100%;
  width: auto;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

/* Dwa zdjęcia w sekcji "Gwoździe" mają różną rozdzielczość źródłową,
   przez co przy wspólnym max-height wychodziły różnej wielkości.
   Wymuszamy identyczny, stały rozmiar dla obu. */
.nail_photo {
  width: 420px;
  height: 320px;
  max-width: 100%;
  object-fit: cover;
}

/* ==========================================================================
   WERSJA MOBILNA — strona główna (index.html)
   Stały margines boczny: 16px. Reguły "bazowe" (poniżej) są ukryte/wyłączone
   na desktopie i włączane dopiero w @media (max-width: 767px) niżej —
   dzięki temu kolejność w pliku nie ma znaczenia dla podbicia specyficzności.
   ========================================================================== */

:root {
  --mobile-gutter: 16px;
}

/* ---------- Hamburger — niewidoczny na desktopie ---------- */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 8px;
  flex: 0 0 auto;
}
.mobile-menu-toggle_line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text_main);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle_line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle_line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle_line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobilne hero (dwie kategorie, jedna pod drugą) — niewidoczne na desktopie ---------- */
.mobile_hero {
  display: none;
  border-top: 1px solid #c1c1c1;
}
.mobile_hero_card {
  position: relative;
  display: block;
  min-height: 200px;
  background-color: var(--site-background);
  padding: 28px 0 28px var(--mobile-gutter);
  text-decoration: none;
  overflow: hidden;
  border-bottom: 1px solid #c1c1c1;
}
.mobile_hero_text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 50%;
  padding-right: 8px;
}
.mobile_hero_title {
  font-family: Funnel Display, sans-serif;
  font-weight: 800;
  font-size: 29px;
  line-height: 1.06;
  letter-spacing: -1px;
  color: var(--text_main);
  text-align: left;
  text-transform: uppercase;
  margin: 0;
}
.mobile_hero_image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 52%;
  object-fit: cover;
  object-position: right center;
  z-index: 1;
}
.mobile_hero_button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--button-dark-blue);
  color: var(--site-background);
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 5px 5px 18px;
  border-radius: 999px;
}
.mobile_hero_button_icon_circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  border: 2px solid #f0640f;
  border-radius: 50%;
  position: relative;
}
.mobile_hero_button_icon {
  width: 13px;
  height: 13px;
}

/* ---------- Statyczny blok "szpuli" na mobile — niewidoczny na desktopie ---------- */
.mobile_spool_summary {
  display: none;
}
.mobile_spool_heading {
  font-family: Funnel Display, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.08;
  color: var(--text_main);
  text-align: center;
  margin-bottom: 16px;
}
.mobile_spool_paragraph {
  font-family: Manrope, sans-serif;
  color: #404040;
  text-align: center;
  margin-bottom: 24px;
}
.mobile_spool_paragraph strong {
  font-weight: 700;
  color: var(--text_main);
}
.mobile_spool_button.button_grafika {
  opacity: 1;
  transform: none;
  margin: 0 auto 72px;
}
.mobile_photo_marquee {
  overflow: hidden;
  margin: 0 calc(var(--mobile-gutter) * -1) 76px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 28px, black calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 28px, black calc(100% - 28px), transparent 100%);
}
.mobile_photo_track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: mobilePhotoMarquee 24s linear infinite;
}
.mobile_photo_track img {
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  flex: 0 0 auto;
}
@keyframes mobilePhotoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.mobile_stats_row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-left: calc(var(--mobile-gutter) * -1);
  margin-right: calc(var(--mobile-gutter) * -1);
  border-top: 1px solid #c1c1c1;
}
.mobile_stat {
  flex: 1 1 auto;
  text-align: left;
  padding: 38px var(--mobile-gutter);
  border-bottom: 1px solid #c1c1c1;
}
.mobile_stat_number {
  font-family: Funnel Display, sans-serif;
  color: var(--button-dark-blue);
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.mobile_stat_number.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.mobile_stat_label {
  font-family: Manrope, sans-serif;
  font-size: 17px;
  color: #404040;
  margin: 0;
}

/* ==========================================================================
   PEŁNOEKRANOWE MENU MOBILNE (nowa wersja) — index.html
   ========================================================================== */
@media screen and (min-width: 1025px) {
  .mobile_menu_overlay {
    display: none !important;
  }
}

.mobile_menu_overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  flex-direction: column;
  background-color: rgba(218, 225, 231, 0.8);
  -webkit-backdrop-filter: blur(28px);
  backdrop-filter: blur(28px);
  padding: 20px var(--mobile-gutter) 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  font-family: Manrope, sans-serif;
  color: #2c2c2c;
}
.mobile_menu_overlay.is-open {
  display: flex;
  animation: mobileMenuFadeIn 0.32s ease forwards;
}
@keyframes mobileMenuFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
body.mobile-menu-locked {
  overflow: hidden;
}

.mobile_menu_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 4px 24px;
}
.mobile_menu_logo {
  font-family: 'Funnel Display', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: #2c2c2c;
  text-decoration: none;
}
.mobile_menu_close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #2c2c2c;
}

.mobile_menu_categories {
  display: flex;
  flex-direction: column;
}
.mobile_menu_category {
  border-bottom: 1px solid rgba(44, 44, 44, 0.18);
}
.mobile_menu_category:first-child {
  border-top: 1px solid rgba(44, 44, 44, 0.18);
}
.mobile_menu_category_toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 22px 4px;
  cursor: pointer;
  font-family: Manrope, sans-serif;
  font-weight: 500;
  font-size: 19px;
  color: #2c2c2c;
  text-align: left;
}
.mobile_menu_chevron {
  flex: 0 0 auto;
  margin-left: 12px;
  transition: transform 0.25s ease;
}
.mobile_menu_category.is-open > .mobile_menu_category_toggle .mobile_menu_chevron {
  transform: rotate(180deg);
}

.mobile_menu_category_panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.mobile_menu_category_panel > * {
  min-height: 0;
}
.mobile_menu_category_panel {
  overflow: hidden;
}
.mobile_menu_category.is-open .mobile_menu_category_panel {
  grid-template-rows: 1fr;
}
.mobile_menu_category_panel {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile_menu_category.is-open .mobile_menu_category_panel {
  max-height: 2000px;
}

.mobile_menu_link {
  display: block;
  padding: 15px 4px 15px 4px;
  font-family: Manrope, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #2c2c2c;
  text-decoration: none;
  border-top: 1px solid rgba(44, 44, 44, 0.1);
}
.mobile_menu_category_panel > .mobile_menu_link:first-child {
  border-top: none;
}
.mobile_menu_link_bold {
  font-weight: 600;
}

.mobile_menu_subgroup {
  border-top: 1px solid rgba(44, 44, 44, 0.1);
}
.mobile_menu_subgroup_toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 15px 4px;
  cursor: pointer;
  font-family: Manrope, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #2c2c2c;
  text-align: left;
}
.mobile_menu_subgroup.is-open > .mobile_menu_subgroup_toggle .mobile_menu_chevron {
  transform: rotate(180deg);
}
.mobile_menu_subgroup_panel {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding-left: 12px;
  transition: max-height 0.3s ease;
}
.mobile_menu_subgroup.is-open .mobile_menu_subgroup_panel {
  max-height: 1000px;
}
.mobile_menu_sublink {
  display: block;
  padding: 13px 4px;
  font-family: Manrope, sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #4a4a4a;
  text-decoration: none;
}

.mobile_menu_contact {
  display: block;
  width: fit-content;
  margin: 32px auto 0;
  padding: 15px 34px;
  border: 1px solid #2c2c2c;
  border-radius: 999px;
  font-family: Manrope, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2c2c2c;
  text-decoration: none;
  text-align: center;
  background: transparent;
}

.mobile_menu_lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.mobile_menu_lang_icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}
.mobile_menu_lang_pills {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile_menu_lang_pill {
  font-family: Manrope, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #6b6b6b;
  background: transparent;
  border: 1px solid rgba(44, 44, 44, 0.25);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.mobile_menu_lang_pill.is-active {
  background-color: #fff;
  border-color: #fff;
  color: #2c2c2c;
}

/* ==========================================================================
   NAVBAR — wersja "mobilna" (logo + hamburger) używana już od szerokości
   tabletowej (<=1024px), bo pełny navbar desktopowy zaczyna się tam
   nachodzić / ściskać (brakuje miejsca na linki + przycisk + językowy pill).
   ========================================================================== */
@media screen and (max-width: 1024px) {
  .container-5 {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .navbar {
    width: 100%;
    height: auto;
    border-radius: 0;
    padding: 16px var(--mobile-gutter);
  }
  /* na tablecie/mobile w pasku zostaje tylko logo + hamburger */
  .div-block-5 {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }

  /* Stary desktopowy dropdown-nav (.div-block-6) zostaje ukryty na mobile/tablecie —
     zastępuje go pełnoekranowe menu (.mobile_menu_overlay) otwierane hamburgerem. */
  .div-block-6 {
    display: none;
  }

  /* ---------- HERO — ukryj złożoną wersję desktopową, pokaż prosty blok mobilny ---------- */
  .hero {
    display: none;
  }
  .mobile_hero {
    display: block;
    padding-top: 76px;
  }
  .mobile_hero_card {
    min-height: 220px;
  }
}

@media screen and (max-width: 767px) {

  /* ---------- Wspólny margines boczny ---------- */
  .technologies_wrapper,
  .footer_wrapper {
    padding-left: 0;
    padding-right: 0;
    margin-left: var(--mobile-gutter);
    margin-right: var(--mobile-gutter);
  }

  /* ---------- SEKCJA SZPULI — ukryj wersję desktopową, pokaż statyczny blok mobilny ---------- */
  .about_animation {
    display: none;
  }
  .mobile_spool_summary {
    display: block;
    padding: 48px var(--mobile-gutter);
  }

  /* ---------- TECHNOLOGIE ---------- */
  .technologies {
    height: auto;
    margin-bottom: 40px;
  }
  .technologies_wrapper {
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
    height: auto;
  }
  .technologies_text {
    flex: none;
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 24px;
    text-align: center;
  }
  .heading-3 {
    font-family: Funnel Display, sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.08;
    color: var(--text_main);
    text-align: center;
    margin-bottom: 16px;
  }
  .paragraph-3 {
    margin-left: 0;
    margin-bottom: 24px;
    text-align: center;
  }
  .button_technologies {
    display: flex;
    margin: 0 auto;
  }
  .video {
    width: 100%;
    height: auto;
  }
  .video_div {
    width: 100%;
  }

  /* ---------- STRONY KATEGORII — HERO (section-5) ---------- */
  .section-5 {
    height: auto;
  }
  .div-block-22 {
    position: relative;
    z-index: 2;
    clip-path: none;
    background-image: none;
    background-color: transparent;
    width: 100%;
    height: auto;
  }
  .div-block-22::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 33%, #034a7d 14%, #003459);
    opacity: 0.8;
    z-index: -1;
  }
  .div-block-23 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .div-block-24 {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 108px var(--mobile-gutter) 48px;
  }
  .bread_crumbs {
    flex-wrap: wrap;
  }
  .heading-5 {
    width: 100%;
    font-size: 33px;
    margin-top: 18px;
    margin-bottom: 16px;
  }
  .paragraph-13,
  .paragraph-14 {
    width: 100%;
    font-size: 13px;
  }
  .paragraph-13 + .paragraph-13 {
    margin-top: 12px;
  }

  /* ---------- STRONY KATEGORII — LISTA (section-6) ---------- */
  .section-6 {
    border-top: 1px solid #c1c1c1;
  }
  .product_wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    border: none;
    border-bottom: 1px solid #c1c1c1;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 38px var(--mobile-gutter);
    cursor: pointer;
  }
  .div-block-30 {
    width: auto;
    flex: 1 1 auto;
    height: auto;
    align-items: center;
    grid-column-gap: 0;
  }
  .div-block-29 {
    width: 100%;
    height: auto;
    grid-column-gap: 16px;
    align-items: flex-start;
  }
  .paragraph-15 {
    font-size: 15px;
  }
  .heading-6 {
    min-width: 0;
    font-size: 22px;
    line-height: 1.22;
  }
  .paragraph-16 {
    display: none;
  }
  .photo_animation {
    display: none;
  }
  .div-block-31 {
    flex: 0 0 auto;
    height: auto;
  }
  .button_product {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    padding-left: 0;
  }
  .text-block-product,
  .button_background_hover_product {
    display: none;
  }
  .div-block-31 .div-block-3 {
    margin: 0;
  }

  /* ---------- STRONA O NAS — tekst + zdjecie w jednej kolumnie ---------- */
  .div-block-35,
  .div-block-38 {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    margin-bottom: 48px;
  }
  .div-block-36,
  .div-block-39,
  .div-block-37,
  .div-block-40 {
    width: 100%;
    flex-basis: auto;
    box-sizing: border-box;
  }
  .div-block-37,
  .div-block-40 {
    min-height: 0;
  }
  .div-block-39 {
    order: 1;
  }
  .div-block-40 {
    order: 2;
  }
  .heading-9,
  .heading-10 {
    font-size: 24px;
  }

  /* ---------- STOPKA ---------- */
  .footer_wrapper {
    flex-direction: column;
    height: auto;
    padding-top: 40px;
    gap: 32px;
  }
  .footer_info {
    padding-top: 0;
  }
  .div-block-20 {
    margin-top: 24px;
    padding-bottom: 24px;
    overflow: hidden;
    margin-left: var(--mobile-gutter);
  }
  .heading-4 {
    font-size: 60px;
    line-height: 1;
    letter-spacing: -3px;
    margin-top: 40px;
    margin-left: 0;
  }
  .image-4 {
    max-width: 100%;
    height: auto;
    width: 100%;
  }
  .footer {
    overflow-x: hidden;
  }
}

/* ==========================================================================
   TABLET (768–1024px) — dopracowania osobne od telefonu i desktopu.
   Telefon (<=767px) i desktop (>1024px) zostają bez zmian.
   ========================================================================== */
@media screen and (min-width: 768px) and (max-width: 1024px) {

  /* ---------- Strona główna — kategorie hero (wyższe rzędy, większe zdjęcia) ---------- */
  .mobile_hero_card {
    min-height: 320px;
  }
  .mobile_hero_image {
    width: 62%;
  }

  /* ---------- Sekcja szpuli — faza 1 powiększona, bez czterech zdjęć ---------- */
  .photo_div,
  .photo_div2,
  .photo_div3,
  .photo_div4 {
    display: none;
  }
  .wewn_grafika {
    width: 70%;
    left: 15%;
  }
  /* Etykiety liczb przy szpuli - w wiekszej (tabletowej) wersji siadaly na linii
     obreczy zamiast lekko nad nia. tekst_szpula1 (rotate 90deg) koryguje sie
     przesuwajac "left" (przy tej rotacji left = ruch w pionie po ekranie).
     tekst_szpula2 (rotate 135deg, po skosie) potrzebuje balansu left+top,
     zeby zmienic kat bez oddalania od okregu. tekst_szpula3 (rotate 180deg)
     byl juz dobrze ustawiony - nietkniety. */
  .tekst_szpula1 {
    left: 40%;
  }
  .tekst_szpula2 {
    top: 94%;
    left: -11%;
  }
  .tekst_szpula3 {
    left: -38%;
  }
}

/* ==========================================================================
   BARDZO DUŻE EKRANY (>=1600px) — na szerokich monitorach okrąg w animacji
   szpuli (.wewn_grafika, 50% szerokości kontenera) robi się bardzo duży, ale
   teksty w środku i liczby na obwodzie mają limit maksymalnego rozmiaru
   (clamp) i przestają rosnąć razem z okręgiem — przez co wyglądają na
   stłoczone/przesunięte zamiast skalować się proporcjonalnie z okręgiem.
   Podbijamy górny limit clamp() dla obu (środek + orbitujące liczby).
   Pozycje (top/left/rotate) liczb NIE są tu ruszane — to wartości procentowe
   względem okręgu, więc same skalują się poprawnie; to rozmiar czcionki był
   prawdziwą przyczyną "dryfowania" na dużych ekranach.
   ========================================================================== */
@media screen and (min-width: 1600px) {
  .heading_grafika {
    font-size: clamp(26px, 2.3vw, 70px);
  }
  .paragraph_grafika {
    font-size: clamp(13px, 1vw, 38px);
    line-height: 1.4;
  }

  .heading_szpula1,
  .heading_szpula2,
  .heading_szpula3 {
    font-size: clamp(38px, 2vw, 68px);
  }
  .paragraph_szpula1,
  .paragraph_szpula3 {
    font-size: clamp(16px, 1.8vw, 40px);
  }
}
