.product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-cats {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.filter-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #374151;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.filter-cat:hover {
  border-color: #DC2626;
  color: #DC2626;
}
.filter-cat.active {
  background: #DC2626;
  color: #fff;
  border-color: #DC2626;
}
.filter-cat.active:hover {
  background: #B91C1C;
}
.filter-cat-count {
  font-size: 11px;
  font-weight: 600;
  background: rgba(0,0,0,0.06);
  padding: 2px 7px;
  border-radius: 10px;
  line-height: 1;
}
.filter-cat.active .filter-cat-count {
  background: rgba(255,255,255,0.25);
}
.sort-btns {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sort-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.sort-btn:hover {
  color: #DC2626;
  border-color: #DC2626;
}
.sort-btn.active {
  background: #DC2626;
  color: #fff;
  border-color: #DC2626;
}
.sort-btn.active:hover {
  background: #B91C1C;
}
.breadcrumb-wrapper {
  padding: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #a1a1a1 0%, #fcfcfca8 100%);
  color: #252525;
}
.breadcrumb-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../../img/section-bg/simulasi-cicilan.jpg') center/cover no-repeat;
  opacity: 0.15;
}
.breadcrumb-wrapper .container {
  position: relative;
  z-index: 1;
}
.breadcrumb-wrapper .page-heading h1 {
  font-size: 24px;
  font-weight: 800;
  color: #252525;
  margin-bottom: 4px;
}
.breadcrumb-wrapper .breadcrumb-items {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb-wrapper .breadcrumb-items li {
  font-size: 14px;
  color: #252525;
}
.breadcrumb-wrapper .breadcrumb-items li a {
  color: #252525;
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb-wrapper .breadcrumb-items li a:hover {
  color: #DC2626;
}
.list-product .product-box .box-thumb {
  min-height: 200px;
}
