/* SIDEBAR */

.sidebar {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

.sidebar-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

.sidebar h3 {
  margin-bottom: 15px;
}

.filter-list {
  list-style: none;
  padding: 0;
}

.filter-list a {
  display: block;
  padding: 8px 10px;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
}

.filter-list a.active,
.filter-list a:hover {
  background: #f1f1f1;
  color: #0d6efd;
}

/* PRODUK */
.produk-header {
  margin-bottom: 20px;
}

.produk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.produk-card {
  background: #fff;
  padding: 15px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.produk-card:hover {
  transform: translateY(-6px);
}

.produk-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
}

.harga {
  color: #e53935;
  font-weight: bold;
}

.btn {
  display: block;
  text-align: center;
  background: #0d6efd;
  color: #fff;
  padding: 8px;
  border-radius: 6px;
  text-decoration: none;
}
