.custom-html {
  background-color: rgb(var(--color-background));
}

.store-locator-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  margin-left: 20px;
  margin-right: 20px;
}
.store-locator-container > .map-container {
  flex: 2;
  position: sticky;
  top: 80px;
}
.store-locator-container > .store-list-box {
  flex: 1;
}
.store-list-box {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 10px;
  padding-left: 10px;
}
.store-list-box::-webkit-scrollbar {
  width: 8px;
}
.store-list-box::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.store-list-box::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.store-list-box::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.store-box {
  cursor: pointer;
  padding: 15px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}
.store-box:hover {
  background-color: #f0f0f0;
  transform: scale(1.02);
}
.store-box.active {
  border-color: #1c203d;
  background-color: #f8f8fc;
}
.store-box h5 {
  font-size: 11px;
  color: #999;
  margin: 0 0 4px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.store-box h3 {
  margin: 0 0 8px 0;
  font-size: 15px;
  color: #1c203d;
}
.store-box p {
  margin: 4px 0;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .store-locator-container {
    flex-direction: column;
  }
  .store-locator-container > .map-container {
    flex: none;
    width: 100%;
    position: static;
  }
  .store-locator-container > .store-list-box {
    flex: none;
    width: 100%;
  }
}
