.popular-stores {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #78c043;
  margin-top: 8px;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

/* Jab screen 600px ya usse chhoti ho */
@media (max-width: 600px) {
  .store-grid {
      grid-template-columns: repeat(2, 1fr); /* Har row me sirf 2 items */
      gap: 15px;
  }
}

.featured-store {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
  border: 1px solid #e0e0e0;
}

.featured-store h3 {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
}

.featured-store hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 10px auto;
  width: 80%;
}

.featured-store img {
  width: 100px;
  height: auto;
  margin: 10px 0;
}

.store-offer {
  margin-top: 10px;
  font-size: 14px;
  padding: 6px 10px;
  border: 1px solid #78c043;
  color: #000;
  border-radius: 6px;
  display: inline-block;
}

.store-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.store-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.store-card img {
  max-width: 100px;
  max-height: 50px;
  object-fit: contain;
}
