.store-location {
  max-width: none;
}
.store-map {
  width: 100%;
  min-height: 420px;
  margin: 20px 0 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f4f5f6;
}
.store-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
.store-map-placeholder {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
}
.store-map-placeholder strong {
  font-size: 1.35rem;
}
.store-map-placeholder span {
  color: var(--muted);
}
.store-map-placeholder button {
  min-height: 46px;
  margin-top: 8px;
  padding: 10px 20px;
  border: 1px solid var(--red);
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.store-map-placeholder button:hover, .store-map-placeholder button:focus-visible {
  background: #c9131c;
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
@media (max-width: 560px) {
  .store-map, .store-map iframe, .store-map-placeholder {
    min-height: 340px;
    height: 340px;
  }
}
