/* STORE HERO */
.store-hero {
  padding: 50px 15px;
  text-align: center;
  background: linear-gradient(180deg, #0b3242, #0f172a);
}

.store-hero h1 {
  font-size: 2.4rem;
  color: #38bdf8;
  margin-bottom: 10px;
}

.store-hero p {
  max-width: 650px;
  margin: auto;
  color: #cbd5f5;
  line-height: 1.6;
}

/* STORE GRID */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

/* STORE CARD */
.store-card {
  background: #0c1530;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(56,189,248,0.2);
}

.store-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.store-card h2 {
  color: #38bdf8;
  margin-bottom: 10px;
}

.store-card p {
  font-size: 0.95rem;
  color: #cbd5f5;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #38bdf8;
  color: #020617;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
}

.btn.outline {
  background: transparent;
  border: 2px solid #38bdf8;
  color: #38bdf8;
}

.btn:hover {
  opacity: 0.9;
}
