* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f8f8f8;
  color: #1f1f1f;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  width: 100%;
  background: #000;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 72vh;
  object-fit: cover;
}

.stores {
  width: min(980px, 92%);
  margin: 2rem auto 3rem;
}

.stores h1 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.store-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.store-card h2 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
}

.store-card p {
  margin: 0.35rem 0;
  line-height: 1.45;
}

.store-card a {
  color: #0a5bdc;
  text-decoration: none;
}

.store-card a:hover {
  text-decoration: underline;
}
