/* ====== USUNIĘCIE WYSZUKIWARKI NA WSZYSTKICH STRONACH ====== */
#menu_search {
  display: none !important;
}

/* ====== POSZERZENIE STRONY ====== */
#container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  background: #ffffff;
}

/* ====== USUNIĘCIE DUŻEGO MARGINESU MIĘDZY BANEREM A PRODUKTAMI ====== */
#main_banner1 {
  margin-bottom: 10px;
}

/* ====== USUNIĘCIE DUŻEGO MARGINESU MIĘDZY BANEREM A HOTSPOTZONE ====== */
#main_hotspot_zone1 {
  margin-top: 10px !important;
  padding-top: 0 !important;
}

/* ====== POPRAWA WYGLĄDU NAGŁÓWKA ====== */
header {
  background: white;
  padding: 15px 0;
  border-bottom: 2px solid #eaeaea;
}

#logo {
  text-align: center;
}

/* ====== WYŚRODKOWANIE SEKCJI PRODUKTÓW ====== */
.hotspot__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px 0;
}

/* ====== KONTENER PRODUKTÓW - SZEROKI I WYŚRODKOWANY ====== */
.products__wrapper {
  max-width: 1400px;
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
}

/* ====== UKŁAD PRODUKTÓW - DOMYŚLNIE 3 W RZĘDZIE ====== */
.hotspot__products {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 40px;
  row-gap: 50px;
  width: 100%;
  justify-content: center;
  align-items: stretch;
}

/* ====== STYL KART PRODUKTÓW ====== */
.hotspot__product {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.hotspot__product .product__content_wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

/* ====== STYL ZDJĘĆ PRODUKTÓW ====== */
.product__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 320px;
  height: auto;
  overflow: hidden;
  padding: 0;
  border-radius: 10px;
}

.product__icon img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 0;
  margin: 0;
  display: block;
}

/* ====== NAZWA PRODUKTU ====== */
.product__name {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-top: 15px;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s;
}

.product__name:hover {
  color: #d9534f;
}

/* ====== CENA PRODUKTU ====== */
.product__prices {
  margin-top: 12px;
  font-size: 22px;
  font-weight: normal;
  color: #ff8103;
  text-align: center;
}

/* ====== POPRAWA STOPKI - CZYSTE TŁO ====== */
footer {
  background: #ffffff;
  padding: 20px 0;
  text-align: center;
  border-top: 2px solid #eaeaea;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  display: inline-block;
  margin: 0 15px;
}

footer a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  color: #d9534f;
}

/* ====== RESPONSYWNOŚĆ ====== */
@media (max-width: 1200px) {
  .hotspot__products {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .hotspot__products {
    grid-template-columns: 1fr !important;
    gap: 20px;
    width: 100%;
  }

  .hotspot__product {
    max-width: 100%;
    width: 100%;
    padding: 20px;
  }

  .product__icon {
    max-width: 100%;
  }

  .product__icon img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }

  #container {
    padding: 0 10px;
  }

  header {
    padding: 10px 0;
  }

  footer {
    padding: 10px 0;
  }
}

@media (min-width: 757px) {
    .products.hotspot__products.swiper-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}