/* RESET I PODSTAWOWE STYLE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #fff;
  color: #333;
}
.container,
.header-menu-container,
.footer-wrapper,
header {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container {
  margin-top: 5px;
  margin-bottom: 30px;
}

/* =========================
   NAGŁÓWEK – (Celowo ustawione marginesy i układ jak w Twojej wersji)
========================= */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}
.header-left .logo {
  max-height: 70px;
}
.header-right {
  /* W Twojej wersji pozostaje margin-top: 0 (lub inny, jeśli celowo był ujemny) */
  margin-top: 0;
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9em;
  margin-top: -35px; /* celowo */
}
.social-info img {
  width: 24px;
  height: 24px;
}

/* =========================
   MENU – DESKTOPOWE
========================= */
.header-menu-container {
  margin-top: 10px;
}
nav.top-menu {
  background: #fff;
  border-bottom: 2px solid #ddd;
  margin-top: -50px;  /* celowe ustawienie */
  padding: 10px 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start; /* celowo */
}
nav.top-menu ul {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-end;
}
nav.top-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.2s;
  padding: 8px 8px;
  border-radius: 4px;
}
nav.top-menu li a:hover {
  background-color: #f3f3f3;
}
nav.top-menu li.active a {
  background-color: var(--color-green);
  color: #fff;
}

/* =========================
   MENU – MOBILE
========================= */
#menuToggle {
  display: none;
}
#mobileMenu {
  display: none;
}
@media (max-width: 767px) {
  .header-menu-container nav.top-menu {
    display: none;
  }
  #menuToggle {
    display: block;
    background: var(--color-green);
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 1em;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px;
  }
  #mobileMenu {
    display: none;
    background: #fff;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  #mobileMenu ul {
    list-style: none;
    display: block;
  }
  #mobileMenu li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #ccc;
  }
}
@media (min-width: 768px) {
  .header-menu-container nav.top-menu {
    display: block;
  }
  #menuToggle,
  #mobileMenu {
    display: none;
  }
}

/* =========================
   STOPKA
========================= */
.footer-wrapper {
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
  }
}
.footer-left,
.footer-right {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-left,
  .footer-right {
    width: 48%;
  }
}
.footer-logo {
  max-width: 400px;
  margin-bottom: 10px;
}
.footer-right p {
  margin: 5px 0;
}
.footer-copy {
  text-align: center;
  font-size: 0.8em;
  color: #777;
  margin-top: 20px;
}

/* =========================
   Style ofert i suwaków
========================= */
.slider--top .noUi-target {
  background: var(--color-gray) !important;
  border: 3px solid #000 !important;
  border-radius: 9999px !important;
  height: 18px !important;
  width: 100%;
  position: relative;
  overflow: visible !important;
  cursor: pointer;
}
.slider--top .noUi-connect {
  background: var(--color-gray) !important;
  border-radius: 9999px !important;
  border: none !important;
}
.slider--pink .noUi-handle {
  width: 23px !important;
  height: 23px !important;
  margin-top: -2.5px !important;
  border: 2px solid #000 !important;
  border-radius: 50% !important;
  background: var(--color-pink) !important;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  z-index: 2;
}
.slider--green .noUi-handle {
  width: 23px !important;
  height: 23px !important;
  margin-top: -2.5px !important;
  border: 2px solid #000 !important;
  border-radius: 50% !important;
  background: var(--color-green) !important;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  z-index: 2;
}
.slider--blue .noUi-handle {
  width: 23px !important;
  height: 23px !important;
  margin-top: -2.5px !important;
  border: 2px solid #000 !important;
  border-radius: 50% !important;
  background: var(--color-blue) !important;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  z-index: 2;
}
.slider--top .no
