/* === MOBILE-FIRST === */
#map-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
  background: #fff;
}

#map {
  width: 100%;
  height: 300px;
  border-radius: 10px;
}

#sidebar {
  padding: 20px 10px;
}

#store-search {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

#store-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#store-list li {
  background: #f7f7f7;
  padding: 12px 15px;
  margin-bottom: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#store-list li:hover {
  background: #629D23;
  color: #fff;
}

#store-list li:hover * {
  color: #fff !important;
}

/* === DESKTOP FIX === */
@media (min-width: 992px) {
  .store-container {
    display: flex;
    flex-wrap: nowrap;
  }

  #map-wrapper {
    position: relative !important;
    top: unset !important;
  }

  #map {
    height: 100vh;
  }

  #sidebar {
    max-height: 100vh;
    overflow-y: auto;
  }
}