* {
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, sans-serif;
}

body {
  background: #6e9ac6;
  padding: 50px;
  color: #935207;
}

.wrapper {
  max-width: 1000px;
  margin: auto;
}

h1 {
  font-size: 50px;
  margin-bottom: 30px;
}

.filter-row {
  display: flex1;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.filter-row span {
  font-size: 18px;
}

select {
  width: 260px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: rgb(185, 227, 155);
  font-size: 16px;
  cursor: pointer;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: #79e8b8;
  border-radius: 18px;
  padding: 26px;
  border: 6px solid #07296e;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.price {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 18px;
}

.tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 15px;
  text-transform: lowercase;
}

.electronics {
  background: #3b82f6;
  color: white;
}

.clothing {
  background: #bfdbfe;
  color: #1e3a8a;
}

/* Animation on filter */
.fade {
  opacity: 0;
  transform: scale(0.96);
}