body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f6fa;
  color: #222;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #2d89ff;
}

.nav-right button {
  margin-left: 10px;
  padding: 6px 14px;
  border: none;
  border-radius: 6px;
  background: #2d89ff;
  color: white;
  cursor: pointer;
}

.nav-right button:hover {
  background: #1f6fe0;
}

.container {
  padding: 50px;
  max-width: 1200px;
  margin: auto;
}

.subtitle {
  color: #666;
}

.filter-bar {
  margin: 25px 0;
}

.filter-bar button {
  margin-right: 10px;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: white;
  cursor: pointer;
}

.filter-bar button:hover {
  background: #2d89ff;
  color: white;
  border: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 8px;
}

.price {
  color: #2d89ff;
  font-weight: bold;
}

.card button {
  margin-top: 10px;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  background: #2d89ff;
  color: white;
  cursor: pointer;
}

