#admin-products-list-section {
  padding: 20px;
}

#products-section {
  padding: 20px;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Odstęp między kafelkami */
  justify-content: center;
}

 .item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 300px;
    min-width: 280px;  /* minimalna szerokość, można dostosować */
    min-height: 450px; /* minimalna wysokość, by wyrównać kafelki */
    text-align: center;
    margin: auto;
    border: 1px solid rgb(138, 108, 108);
    flex: 1 1 280px; /* elementy mogą rosnąć i się kurczyć, bazowo 280px */
    display: flex;
    flex-direction: column; /* ułożenie pionowe zawartości */
    justify-content: space-between; /* rozłożenie przestrzeni pionowo */
 }

 .item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}
.product-details img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

#product-details-section {
  margin-top: 40px;
}

.product-details {
  background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 300px;
    text-align: center;
    margin: auto;
    margin-bottom: 40px;
}

.item .price {
  color: grey;
  font-size: 22px;
}

.item .buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}


.item p {
  font-size: 1em;
  color: #555555;
  margin: 0 0 15px;
  line-height: 1.5;
}


  .item button {
    background-color: #443935;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    color: #ffffff;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .product-details button {
    background-color: #443935;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    color: #ffffff;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .item a {
    display: block;
    width:max-content;
    margin: 0 auto;
    background-color: #443935;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    color: #ffffff;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
  }
  #show-more {
    justify-content: center;
  }

  .item button:hover {
    opacity: 0.7;
  }

  .breadcrumbs {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #bbb;
}
.breadcrumbs a {
  color: #18a0fb;
  text-decoration: none;
  margin-right: 0.3em;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs span {
  font-weight: 600;
  color: #18a0fb;
}

#map-section {
 margin: 40px 0;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#map {
  height: 400px;
  width: 100%;
  max-width: 800px; /* szerokość maksymalna */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

#map-section h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  text-align: center;
  color: #333;
}