.elementor-468 .elementor-element.elementor-element-eab00bc{--display:flex;}.elementor-468 .elementor-element.elementor-element-f3d46ec{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-677a580 */.moj-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  font-family: "Open Sans", Sans-serif;
}



.infolinia {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: #2c3e50;
}


.infolinia i {
  color: #c0392b;
  margin-right: 10px;
  font-size: 18px;
}
.infolinia span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}


.wyszukiwarka {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 3px;
  overflow: hidden;
  max-width: 300px;
  height: 34px;
}

.wyszukiwarka input[type="search"] {
  border: none;
  padding: 0 10px;
  font-size: 14px;
  outline: none;
  flex: 1;
}

.wyszukiwarka button {
  background-color: #1f4e79;
  color: white;
  border: none;
  padding: 0 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wyszukiwarka button i {
  font-size: 16px;
}
  .ikona-obrot {
 display: inline-block;
  transform: rotate(-30deg);
}
@media (max-width: 768px) {
  .moj-header {
    flex-direction: column;
    align-items: flex-start; /* lub center jeśli chcesz wyśrodkować */
    gap: 10px;
  }

  .infolinia {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .infolinia span {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
  }

  .wyszukiwarka {
    width: 100%;
    max-width: none;
    height: 40px;
  }

  .wyszukiwarka input[type="search"] {
    font-size: 16px;
    padding: 8px 12px;
  }

  .wyszukiwarka button {
    padding: 0 16px;
    font-size: 18px;
  }

  .moj-header i {
    margin-right: 0;
    margin-bottom: 4px;
  }


}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8c68e89 *//* === Dolna nawigacja (desktop) === */
.dolna-nawigacja {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 10px 0;
  margin-top: -5px;
  font-family: "Open Sans", Sans-serif;
  border-top: 1px solid #ddd;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background-color: #f5f5f5; /* Możesz zmienić kolor tła */
  border-bottom: 1px solid #ccc;
}

.mobile-nav-title a {
  font-size: 17px;
  font-weight: bold;
  color: #1E1E1E; /* Dopasuj kolor tekstu */
  text-decoration: none;
  max-width: 80%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
   display: block;
  word-break: break-word; /* lub break-all */
  white-space: normal; /* ← kluczowa zmiana */
}

.mobile-nav-toggle i {
  font-size: 24px;
  color: #1E1E1E;
  cursor: pointer;
}

.mobile-nav-title a:hover {
  color: #1E1E1E; /* lub inny pasujący kolor */
}



/* === Tytuł z <h1> === */
.tytul h1 {
  font-size: 18px; /* Taki sam jak w .menu-dolne a */
  font-weight: bold;
  margin: 0;
}

.tytul h1 a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  display: inline-block;
  border-radius: 4px;
}

.tytul h1 a:hover {
  color: #1f4e79;
}

.menu-dolne a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  padding: 8px 12px;
  display: inline-block;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.menu-dolne a:hover {
  background-color: #1f4e79;
  color: white;
}

.menu-dolne a.active {
  background-color: #1f4e79;
  color: white;
}

/* === Hamburger i menu mobilne === */
.mobile-nav-toggle {
  display: none;
}

.mobile-nav-overlay {
  display: none;
}

/* === TYLKO NA MOBILE === */
@media (max-width: 768px) {
  .dolna-nawigacja {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
    font-size: 24px;
    color: #1f4e79;
    z-index: 1000;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
  }

  .mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #111;
    color: white;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
  }

  .mobile-nav-overlay.active {
    display: block;
  }

  .mobile-nav-overlay i {
    font-size: 26px;
    float: right;
    cursor: pointer;
  }

  .mobile-nav-links {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
    border-bottom: 1px solid #444;
    transition: background-color 0.2s ease;
  }

  .mobile-nav-links a:hover {
    background-color: #1f4e79;
  }

  /* Styl <h1> na mobile (opcjonalnie wyśrodkowanie) */
  .tytul h1 {
    text-align: center;
  }
}
@media (min-width: 769px) {
  .mobile-header {
    display: none;
  }
}/* End custom CSS */