.where-buy-page{
    width: 100%;
}
.map-container{
    width: 1400px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.page-title{
    width: 100%;
    text-align: center;
    font-size: 30px;
    color: #333;
    font-weight: 600;
    margin-bottom: 40px;
}
.where-buy-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
}

.where-buy-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shop-item {
  padding: 14px;
  border: 1px solid #ddd;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.2s;
}

.shop-item:hover {
  background: #f5f5f5;
}

#map {
  width: 100%;
  height: 520px;
  border-radius: 12px;
}
@media only screen and (max-width: 1450px) {
  .map-container{
    width: 1200px;
  }

}
@media only screen and (max-width: 900px) {
    .map-container{
    width: 95%;
    margin: 0 auto;
  }
  .where-buy-layout{
    display: flex;
    flex-direction: column-reverse;
  }
  .where-buy-map{
    width: 100%;
  }
  .page-title{
    margin-bottom: 20px;
    margin-top: 30px;
  }
}