/* Stores / Store Locator - aptekamiodowa */
#stores {
  padding: 20px 0;
}
#stores h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8a000;
}
/* Search form */
#stores-search {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 25px;
}
#stores-search h2 {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}
#stores-search .form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
}
#stores-search label {
  display: block;
  font-size: 13px;
  color: #555;
  font-weight: 600;
  margin-bottom: 5px;
}
#stores-search input[type="text"],
#stores-search select {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 13px;
  color: #333;
  background: #fff;
}
#stores-search input[type="text"]:focus,
#stores-search select:focus {
  border-color: #e8a000;
  outline: none;
}
#stores-search button {
  background: #e8a000;
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 3px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
}
#stores-search button:hover {
  background: #cc8c00;
}
/* Map container */
#map {
  width: 100%;
  height: 400px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 25px;
  background: #e5e3df;
}
#map-canvas {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
/* Store list */
#stores-list {
  margin-top: 20px;
}
#stores-list h2 {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}
.store-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 18px;
  margin-bottom: 15px;
  display: flex;
  gap: 20px;
  transition: box-shadow 0.2s;
}
.store-item:hover {
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}
.store-item.highlighted {
  border-color: #e8a000;
  box-shadow: 0 3px 12px rgba(232,160,0,0.2);
}
.store-item .store-number {
  flex: 0 0 36px;
  height: 36px;
  background: #e8a000;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
}
.store-item .store-info {
  flex: 1;
}
.store-item h3 {
  font-size: 15px;
  color: #333;
  margin-bottom: 6px;
  font-weight: bold;
}
.store-item .store-address {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 8px;
}
.store-item .store-address i {
  color: #e8a000;
  margin-right: 6px;
  width: 14px;
}
.store-item .store-details {
  font-size: 12px;
  color: #777;
  line-height: 1.6;
}
.store-item .store-hours {
  margin-top: 8px;
  font-size: 12px;
  color: #555;
}
.store-item .store-hours strong {
  color: #333;
}
.store-item .store-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}
.store-item .store-actions a {
  font-size: 12px;
  color: #e8a000;
  text-decoration: none;
  border: 1px solid #e8a000;
  padding: 4px 10px;
  border-radius: 3px;
  transition: all 0.2s;
}
.store-item .store-actions a:hover {
  background: #e8a000;
  color: #fff;
}
.store-item .store-distance {
  font-size: 11px;
  color: #999;
  margin-top: 5px;
}
/* No results */
.no-store-results {
  text-align: center;
  padding: 30px;
  color: #999;
  font-size: 14px;
}

@media (max-width: 768px) {
  #map {
    height: 280px;
  }
  .store-item {
    flex-direction: column;
  }
}
