.arm-map-wrap {
  width: 100%;
  background: #ffffff;
  color: var(--arm-secondary, #111827);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  font-family: inherit;
}

.arm-map-search {
  display: flex;
  gap: 12px;
  padding: 18px;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.arm-map-input {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 15px;
  outline: none;
}

.arm-map-input:focus {
  border-color: var(--arm-primary, #c40018);
  box-shadow: 0 0 0 3px rgba(196, 0, 24, 0.12);
}

.arm-map-clear,
.arm-map-directions {
  border: 0;
  border-radius: 12px;
  background: var(--arm-primary, #c40018);
  color: var(--arm-directions-text, #ffffff);
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1.2;
}

.arm-map-clear {
  color: #ffffff;
}

.arm-map-directions:visited,
.arm-map-info .arm-map-directions:visited {
  color: var(--arm-directions-text, #ffffff);
}

.arm-map-directions:hover,
.arm-map-info .arm-map-directions:hover,
.arm-map-directions:focus,
.arm-map-info .arm-map-directions:focus {
  color: var(--arm-directions-text-hover, #ffffff);
  opacity: 0.92;
  text-decoration: none;
}

.arm-map-canvas {
  width: 100%;
  min-height: var(--arm-height-desktop, 650px);
  background: #f1f5f9;
}

.arm-map-info {
  min-width: 260px;
  max-width: 330px;
  color: #111827;
  font-size: 14px;
  line-height: 1.45;
}

.arm-map-info h3 {
  color: var(--arm-primary, #c40018);
  font-size: 18px;
  margin: 0 0 12px;
}

.arm-map-info p {
  margin: 7px 0;
}

.arm-map-info a:not(.arm-map-directions) {
  color: var(--arm-primary, #c40018);
}

.arm-map-info .arm-map-directions {
  margin-top: 12px;
}

.arm-map-pin {
  transform-origin: center center;
}

.arm-map-empty,
.arm-map-notice {
  padding: 14px 18px;
  background: #fff7ed;
  color: #9a3412;
  border-top: 1px solid rgba(154, 52, 18, 0.18);
}

@media (max-width: 900px) {
  .arm-map-search {
    flex-direction: column;
  }

  .arm-map-canvas {
    min-height: var(--arm-height-mobile, 520px);
  }
}
