.locations-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 28px 64px;
}

.locations-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.locations-heading .eyebrow {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: .08em;
}

.locations-heading h2 {
  margin: 0;
  color: var(--ink, #162033);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}

.locations-heading p {
  max-width: 660px;
  margin: 12px 0 0;
  color: var(--muted, #667085);
  font-size: 16px;
  line-height: 1.65;
}

.locations-count {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid #cfe3d2;
  border-radius: 999px;
  background: #f2faf1;
  color: #52705a;
  font-size: 13px;
}

.locations-count strong {
  color: #2f8f46;
}

.locations-map-shell {
  padding: 10px;
  border: 1px solid #dfe7e0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(22, 32, 51, .1);
}

.kiosk-map {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 15px;
  background: #f2f6f2;
}

.kiosk-map-state {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 28px;
  background: #f2f6f2;
  color: #667085;
  text-align: center;
}

.kiosk-map-state i {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 3px;
  place-items: center;
  border-radius: 14px;
  background: #e5f4e5;
  color: #2f8f46;
  font-size: 21px;
}

.kiosk-map-state strong {
  color: #162033;
  font-size: 16px;
}

.kiosk-map-state span {
  max-width: 410px;
  font-size: 13px;
  line-height: 1.5;
}

.ez-map-marker {
  display: grid;
  width: 76px;
  min-height: 42px;
  padding: 7px 9px;
  place-items: center;
  border: 2px solid #2196f3;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(22, 32, 51, .2);
  cursor: pointer;
  transform-origin: 50% 100%;
  transition: transform .16s ease, box-shadow .16s ease;
}

.ez-map-marker:hover,
.ez-map-marker:focus-within {
  box-shadow: 0 12px 26px rgba(22, 32, 51, .25);
  transform: translateY(-3px);
}

.ez-map-marker img {
  position: relative;
  z-index: 1;
  display: block;
  width: 58px;
  height: auto;
}

.ez-map-popup {
  width: min(240px, calc(100vw - 48px));
  padding: 12px;
  color: #162033;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.ez-map-popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ez-map-popup-logo {
  display: block;
  width: 72px;
  height: auto;
}

.ez-map-popup-close {
  display: inline-grid;
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  background: #f8fafc;
  color: #667085;
  cursor: pointer;
}

.ez-map-popup-close:hover,
.ez-map-popup-close:focus-visible {
  border-color: #cbd5e1;
  background: #f1f5f9;
  color: #162033;
}

.ez-map-popup-body {
  padding: 16px 4px 14px;
  text-align: center;
}

.ez-map-popup h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.25;
}

.ez-map-popup-location {
  margin: 6px 0 0;
  color: #667085;
  font-size: 12px;
  line-height: 1.45;
}

.ez-map-popup-link {
  min-height: 38px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.gm-style .gm-style-iw-c {
  padding: 0 !important;
  overflow: hidden;
  border-radius: 14px;
}

.gm-style .gm-style-iw-d {
  max-height: none !important;
  overflow: hidden !important;
}

.gm-style .gm-style-iw-chr {
  display: none;
}

.kiosk-location-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 15px;
  border: 1px solid #d9e6da;
  border-radius: 12px;
  background: #f7fbf7;
}

.kiosk-location-control strong,
.kiosk-location-control small {
  display: block;
}

.kiosk-location-control small {
  margin-top: 3px;
  color: #6f7d74;
  font-size: 12px;
}

.kiosk-map-dialog {
  width: min(900px, calc(100vw - 32px));
  max-width: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(13, 27, 19, .28);
}

.kiosk-map-dialog[open] {
  position: fixed;
  inset: 50% auto auto 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.kiosk-map-dialog::backdrop {
  background: rgba(13, 27, 19, .56);
  backdrop-filter: blur(3px);
}

.kiosk-map-dialog-head,
.kiosk-map-dialog-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}

.kiosk-map-dialog-head {
  border-bottom: 1px solid #e2e8e3;
}

.kiosk-map-dialog-head h2 {
  margin: 2px 0 0;
  font-size: 22px;
}

.kiosk-map-dialog-head p {
  margin: 5px 0 0;
  color: #6d7870;
  font-size: 13px;
}

.kiosk-map-dialog-kicker {
  color: #2f8f46;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
}

.kiosk-map-dialog-close {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #dde4de;
  border-radius: 10px;
  background: #fff;
  color: #68746c;
}

.kiosk-map-picker-canvas {
  position: relative;
  height: min(58vh, 520px);
  min-height: 360px;
  background: #f2f6f2;
}

.kiosk-map-dialog-foot {
  border-top: 1px solid #e2e8e3;
}

.kiosk-map-dialog-foot > div {
  display: flex;
  gap: 9px;
}

.kiosk-map-selected {
  color: #5e6b62;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 767px) {
  .locations-section {
    padding: 26px 18px 48px;
  }

  .locations-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .kiosk-map {
    min-height: 420px;
  }

  .locations-map-shell {
    padding: 7px;
    border-radius: 17px;
  }

  .kiosk-location-control {
    align-items: stretch;
    flex-direction: column;
  }

  .kiosk-location-control .btn {
    width: 100%;
  }

  .kiosk-map-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
  }

  .kiosk-map-dialog-head,
  .kiosk-map-dialog-foot {
    padding: 14px;
  }

  .kiosk-map-dialog-foot {
    align-items: stretch;
    flex-direction: column;
  }

  .kiosk-map-dialog-foot > div,
  .kiosk-map-dialog-foot .btn {
    flex: 1;
  }

  .kiosk-map-picker-canvas {
    height: 54vh;
    min-height: 310px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ez-map-marker {
    transition: none;
  }
}
