.store-finder-page {
  background: #ffffff;
  color: #111111;
  font-family: "Manrope", Arial, sans-serif;
}

.store-finder-container {
  margin: 0 auto;
  max-width: 700px;
  padding: 0 20px;
}

.store-finder-hero {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 56px 0 28px;
  text-align: center;
}

.store-finder-eyebrow {
  color: #f15a24;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.store-finder-hero h1 {
  color: #111111;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 900;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.store-finder-intro {
  color: #555555;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  margin: 18px auto 0;
  max-width: 720px;
}

.store-finder-section {
  padding: 36px 0 72px;
}

.store-finder-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
}

.store-card {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.store-card-image-wrap {
  aspect-ratio: 4 / 3;
  background: #f3f3f3;
  overflow: hidden;
}

.store-card-image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.store-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 16px;
}

.store-card h2 {
  align-items: center;
  color: #202020;
  display: flex;
  font-size: clamp(18px, 2.3vw, 24px);
  font-weight: 900;
  gap: 8px;
  line-height: 1.2;
  margin: 0 0 14px;
}

.store-contact-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.store-contact-list li {
  align-items: flex-start;
  color: #333333;
  display: grid;
  font-size: 14px;
  gap: 10px;
  grid-template-columns: 18px minmax(0, 1fr);
  line-height: 1.5;
}

.store-contact-list i {
  color: #111111;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 4px;
}

.store-contact-list a {
  color: inherit;
  text-decoration: none;
  word-break: break-word;
}

.store-contact-list a:hover {
  color: #f15a24;
}

.store-card-actions {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: auto;
  padding: 0 18px 18px;
}

.store-card-button {
  align-items: center;
  background: #000000;
  color: #ffffff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.store-card-button:hover {
  background: #f15a24;
  color: #ffffff;
}

@media (max-width: 900px) {
  .store-finder-grid {
    gap: 22px;
  }
}

@media (max-width: 680px) {
  .store-finder-hero {
    padding: 36px 0 18px;
  }

  .store-finder-section {
    padding: 24px 0 54px;
  }

  .store-finder-grid {
    grid-template-columns: 1fr;
  }

  .store-card-body {
    padding: 16px;
  }

  .store-card-actions {
    padding: 0 16px 16px;
  }
}