.stores-section {
  margin: 40px 0;
}

.heading-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.title-wrapper .heading {
  font-size: 3rem;
}

.title-wrapper .subtitle {
  font-size: 1rem;
  color: #000;
}

/* Custom Select Styling */
.custom-select-container {
  position: relative;
  min-width: 180px;
  user-select: none;
}

.custom-select-selected {
  padding: 8px 12px;
  border: 1px solid #000;
  border-radius: 2rem;
  font-size: 16px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-select-options {
  z-index: 1000;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.custom-select-container.active .custom-select-options {
  max-height: 200px;
  opacity: 1;

  overflow-y: auto;
}

.custom-select-option {
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.custom-select-option:hover {
  background-color: #f5f5f5;
}

.option-with-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.option-with-icon svg {
  flex-shrink: 0;
}

.stores-wrapper {
  display: flex;
  gap: 30px;
}

.store {
  border: 1px solid #eee;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hidden-store {
  display: none;
}

.store-image img {
  width: 100%;
  height: auto;
  display: block;
}

.store-info {
  padding: 15px;
}

.store-info h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.store-info p {
  margin: 5px 0;
  color: #555;
}

.stores-map {
  flex: 1;
}

#stores-map {
  height: 500px;
  border-radius: 8px;
}

@media only screen and (max-width: 1024px) {
  #stores-map {
    height: 400px;
  }
}

/* Hide all Leaflet controls */
.leaflet-control-container {
  display: none !important;
}

.leaflet-bar,
.leaflet-control,
.leaflet-control-zoom,
.leaflet-control-attribution {
  display: none !important;
}

.show-more-wrapper {
  margin-top: 30px;
  text-align: center;
}

.show-more-stores-button {
  padding: 10px 20px;
  background: transparent;
  color: #000;
  border: 1px solid #000;
  border-radius: 38px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

a#show-more-stores.show-more-stores-button:hover {
  background-color: #000;
  color: #fff;
}

.show-more-stores-button.hidden {
  display: none;
}


/* Map popup styles */
.map-popup {
  max-width: 250px;
}

.map-popup h3 {
  font-size: 1.5rem;
  color: #000;
}

.map-popup p {
  font-size: 1rem;
  color: #000;
}

/* Marker cluster styles */
.marker-cluster-small {
  background-color: #000;
  color: #fff;
}

.marker-cluster-small div {
  background-color: #000;
  color: #fff;
}

.marker-cluster-medium {
  background-color: #000;
  color: #fff;
}

.marker-cluster-medium div {
  background-color: #000;
  color: #fff;
}
