.store-directory {
  margin: 48px 0 24px;
}
.store-directory > p {
  color: var(--muted);
  line-height: 1.6;
}
.store-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
  margin-top: 24px;
}
.store-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
}
.store-card strong {
  font-size: 1.15rem;
  line-height: 1.35;
}
.store-card span,.store-card small {
  line-height: 1.55;
}
.store-card small {
  color: var(--muted);
}
.store-card b {
  margin-top: auto;
  color: var(--red);
}
.store-card:hover,.store-card:focus-visible {
  border-color: var(--red);
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.store-detail {
  margin-bottom: 48px;
}
.store-hero {
  display: grid;
  grid-template-columns: minmax(0,1.6fr) minmax(260px,.7fr);
  gap: 32px;
  padding: 40px;
  border-radius: 12px;
  background: #202630;
  color: #fff;
}
.store-hero h1 {
  max-width: 760px;
  margin: 8px 0 18px;
  color: inherit;
  font-size: clamp(2rem,4vw,3.25rem);
  line-height: 1.08;
}
.store-hero p,.store-hero aside span {
  line-height: 1.7;
  color: #d4dce5;
}
.store-kicker {
  margin: 0;
  color: #ff7379 !important;
  font-weight: 700;
}
.store-hero aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  padding: 24px;
  border: 1px solid #46515f;
  border-radius: 10px;
}
.store-hero aside strong {
  font-size: 1.25rem;
}
.store-hero aside a {
  color: #fff;
  font-weight: 700;
}
.store-actions,.store-map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.store-actions {
  margin: 24px 0 40px;
}
.store-actions a,.store-map-links a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 650;
}
.store-actions .primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.store-section {
  max-width: 900px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.store-section h2 {
  margin: 0 0 12px;
}
.store-section p,.store-note {
  line-height: 1.75;
}
.store-note {
  color: var(--muted);
}
@media (max-width: 850px) {
  .store-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .store-hero {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}
@media (max-width: 560px) {
  .store-grid {
    grid-template-columns: 1fr;
  }
  .store-card {
    min-height: 0;
  }
  .store-actions a,.store-map-links a {
    width: 100%;
    justify-content: center;
  }
}
