.store-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.store-card {
  width: 23%; /* Allows 4 items per row with gap */
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  box-sizing: border-box;
}

.store-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.store-card h3 {
  font-size: 1.1rem;
  margin: 10px 0;
}

.store-card p {
  font-size: 0.9rem;
  text-align: left;
}

.store-card a img {
  width: 20px;
  height: 20px;
}

.store-card a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 5px;
  margin-top: 10px;
}

@media screen and (max-width: 1024px) {
  .store-card {
    width: 45%; /* 2 per row on tablet */
  }
}

@media screen and (max-width: 600px) {
  .store-card {
    width: 90%; /* 1 per row on mobile */
  }
}
