/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Body & Layout */
body {
  background: linear-gradient(135deg, #f5f6fa 0%, #dfe9f3 100%);
  color: #333;
  padding: 3px;
  min-height: 100vh;
}

/* Header */
h2 {
  text-align: center;
  color: #222;
  margin-bottom: 30px;
  font-weight: 600;
}

/* Store Container */
.store-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Store Card */
.store-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  width: 260px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.store-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Store Text */
.store-card h3 {
  color: #111;
  font-size: 18px;
  margin-bottom: 8px;
}

.store-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 12px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 8px 14px;
  margin: 4px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: linear-gradient(135deg, #0056b3, #003d80);
  transform: scale(1.05);
}

/* Admin Links */
.admin-links {
  text-align: center;
  margin-top: 40px;
}

.admin-links a {
  display: inline-block;
  margin: 10px;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.admin-links a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Logout */
.logout {
  display: block;
  text-align: center;
  margin-top: 40px;
  color: #d9534f;
  font-weight: bold;
  text-decoration: none;
}

.logout:hover {
  color: #b52b27;
}

/* Responsive */
@media (max-width: 600px) {
  .store-card {
    width: 90%;
  }

  .btn {
    width: 100%;
    margin: 6px 0;
  }
}
