/* Сторінка «Магазини»: карта + контакти */

.stores-page {
  --st-text: #1a1a1a;
  --st-muted: #9ca3af;
  --st-link: #2f6fed;
  --st-open: #16a34a;
  --st-closed: #e11d48;
  --st-border: #e5e7eb;
  --st-bg: #f7f7f7;
  color: var(--st-text);
  background: #fff;
  padding: 1.5rem 0 3rem;
}

.stores-page .main.container {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.stores-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.75rem 2.25rem;
  align-items: stretch;
}

.stores-page__map {
  position: relative;
  min-height: 420px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--st-bg);
  border: 1px solid var(--st-border);
}

.stores-page__iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.stores-page__map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  color: var(--st-muted);
  font-size: 0.95rem;
}

.stores-page__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0.25rem;
}

.stores-page__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.stores-page__title-street {
  display: block;
  font-weight: 700;
}

.stores-page__block {
  margin-bottom: 1.35rem;
}

.stores-page__label {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  color: var(--st-muted);
  line-height: 1.35;
}

.stores-page__link {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: var(--st-link);
  text-decoration: none;
  font-size: 1.05rem;
  line-height: 1.4;
  max-width: 100%;
}

.stores-page__link:hover,
.stores-page__link:focus-visible {
  text-decoration: underline;
}

.stores-page__link--address {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.stores-page__link--phone {
  font-weight: 700;
}

.stores-page__icon {
  flex: 0 0 auto;
  display: inline-flex;
  margin-top: 0.1rem;
  color: var(--st-link);
}

.stores-page__icon svg {
  display: block;
}

.stores-page__hours {
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--st-text);
}

.stores-page__status {
  margin-top: 0.35rem;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
}

.stores-page__status.is-open {
  color: var(--st-open);
}

.stores-page__status.is-closed {
  color: var(--st-closed);
}

@media (max-width: 900px) {
  .stores-page {
    padding: 1rem 0 2.25rem;
  }

  .stores-page__layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stores-page__map,
  .stores-page__iframe,
  .stores-page__map-fallback {
    min-height: 280px;
  }

  .stores-page__title {
    margin-bottom: 1.15rem;
    font-size: 1.4rem;
  }

  .stores-page__block {
    margin-bottom: 1.1rem;
  }
}

@media (max-width: 480px) {
  .stores-page .main.container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .stores-page__map,
  .stores-page__iframe,
  .stores-page__map-fallback {
    min-height: 240px;
  }

  .stores-page__link {
    font-size: 1rem;
  }
}
