/* ===========================================================
   HYDROSTOR LOCATIONS MODULE - FINAL POLISHED VERSION
   Matching production Hydrostor design
   =========================================================== */

.hydrostor-locations-wrapper,
.hs-locations {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  padding-left: 0px;
}

/* ---------- LOCATION BUTTONS ---------- */

.hs-locations__buttons,
.location-buttons {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 40px;
}

.hs-location-btn,
.location-btn {
  background: #f2f4f7;
  color: #0c284c;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 40px;
  padding: 14px 36px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hs-location-btn.active,
.location-btn.active {
  background: #0c284c;
  color: #fff;
}

.hs-location-btn:hover,
.location-btn:hover {
  background: #0c284c;
  color: #fff;
}

/* ---------- MAP CONTAINER ---------- */

#hs-locations__map,
.map-container {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background-color: #f8f8f8;
}

/* ---------- MAP LINK / CTA ---------- */

.map-link-container {
  margin-top: 24px;
}

.map-link {
  color: #0c284c;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.map-link:hover {
  color: #29abe2;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 768px) {
  .hs-location-btn,
  .location-btn {
    padding: 10px 22px;
    font-size: 14px;
  }

  #hs-locations__map,
  .map-container {
    height: 380px;
  }
}

@media (max-width: 480px) {
  .hs-locations__buttons,
  .location-buttons {
    gap: 10px;
  }

  .hs-location-btn,
  .location-btn {
    padding: 9px 18px;
    font-size: 13px;
  }

  #hs-locations__map {
    height: 320px;
  }
}
