/* ===== БЛОК С КАРТОЙ ===== */
.map-section {
  padding: 60px 0;
  background-color: var(--color-bg-secondary);
}

.map-section__title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 15px;
  text-align: center;
}

.map-section__address {
  text-align: center;
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.map-section__address i {
  color: var(--color-accent);
}

.map-section__wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.map-section__map {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.map-section__actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.map-section__route-btn,
.map-section__navi-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 15px;
}

.btn--outline {
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn--outline:hover {
  background-color: var(--color-accent);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}