/* Контейнер с картой и списком как в эталоне */
.map-container { display: flex; flex-direction: column; gap: 10px; }

#store-list {
  display: flex; flex-wrap: wrap; gap: 10px;
  list-style: none; padding: 10px; margin: 0;
  background: #f8f8f8;
}

#store-list li {
  cursor: pointer; padding: 8px 12px; background: #eee;
  border-radius: 5px; transition: 0.2s; font-size: 14px;
}

#store-list li:hover { background: #ddd; }

#store-list li.active {
  background: #0077ff;
  color: white;
  font-weight: bold;
}

#yandex-map { width: 100%; height: 600px; }

@media (max-width: 768px) { #yandex-map { height: 350px; } }

.balloon-content { font-weight: bold; font-size: 14px; }

.balloon-content a { color: #0077ff; text-decoration: none; font-weight: normal; }

.hours { color: green; font-weight: bold; margin-top: 5px; }

.route-btn {
  display: inline-block; margin-top: 8px; padding: 6px 12px;
  background: #0077ff; color: white !important;
  border-radius: 5px; text-decoration: none;
  font-size: 13px; font-weight: bold;
}

.route-btn:hover { background: #005ecc; }
