/* CATEGORIES */
.categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.category {
  background: var(--card);
  padding: 10px 15px;
  border-radius: 20px;
  cursor: pointer;
}

.category:hover {
  background: #222f48;
}

/* PRODUCTS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 10px;
}

.product-card {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  position: relative;
}

.product-card span {
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: var(--primary);
  font-weight: bold;
}

/* SELLERS */
.seller-box {
  margin-top: 20px;
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
}

.seller {
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}