/* ===============================
   STORE GRID
================================ */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* ===============================
   STORE CARD (PREMIUM LOOK)
================================ */
.store-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 140px;
  padding: 10px;
  background: #fff;
  border-radius: 14px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
  overflow: hidden;
}

/* HOVER EFFECT */
.store-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* ===============================
   STORE IMAGE
================================ */
.store-card img {
  height: 60px;
  object-fit: contain;
  margin-top: 10px;
}

/* ===============================
   STORE NAME (AUTO STYLE)
================================ */
.store-card {
  font-size: 14px;
  text-align: center;
}

/* ===============================
   FAKE BUTTON USING ::after
================================ */
.store-card::after {
  content: "View Deals";
  display: block;
  width: 80%;
  text-align: center;
  padding: 6px;
  margin-bottom: 8px;
  border-radius: 6px;
  background: orange;
  color: #fff;
  font-size: 12px;
  transition: 0.3s;
}

/* BUTTON HOVER EFFECT */
.store-card:hover::after {
  background: #ff7a00;
}

/* ===============================
   STORE GRID
================================ */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* ===============================
   STORE CARD (PREMIUM LOOK)
================================ */
.store-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 140px;
  padding: 10px;
  background: #fff;
  border-radius: 14px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
  overflow: hidden;
}

/* HOVER EFFECT */
.store-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* ===============================
   STORE IMAGE
================================ */
.store-card img {
  height: 60px;
  object-fit: contain;
  margin-top: 10px;
}

/* ===============================
   STORE NAME (AUTO STYLE)
================================ */
.store-card {
  font-size: 14px;
  text-align: center;
}

/* ===============================
   FAKE BUTTON USING ::after
================================ */
.store-card::after {
  content: "View Deals";
  display: block;
  width: 80%;
  text-align: center;
  padding: 6px;
  margin-bottom: 8px;
  border-radius: 6px;
  background: orange;
  color: #fff;
  font-size: 12px;
  transition: 0.3s;
}

/* BUTTON HOVER EFFECT */
.store-card:hover::after {
  background: #ff7a00;
}
