.breadcrumb {
  margin: 0 0 24px;
  padding: 10px 20px;
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: var(--radius, 6px);
  background: var(--bg-section, #f8f9fa);
  font-size: 13px;
}
.breadcrumb i { font-size: 15px; color: var(--accent, #7c3aed); }
.breadcrumb > li.breadcrumb-item {
  padding: 0 20px;
  position: relative;
  white-space: nowrap;
}
.breadcrumb > li.breadcrumb-item > a {
  text-decoration: none;
  color: var(--text-secondary, #64748b);
}
.breadcrumb > li.breadcrumb-item > a:hover { color: var(--accent, #7c3aed); }
.breadcrumb > li.breadcrumb-item:after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  right: -5px;
  width: 26px;
  height: 26px;
  border-right: 1px solid var(--border-color, #e2e8f0);
  border-bottom: 1px solid var(--border-color, #e2e8f0);
  transform: rotate(-45deg);
}
.breadcrumb > li.breadcrumb-item + li:before { content: ""; padding: 0; }

.category-desc { color: var(--text-secondary, #64748b); font-size: 14px; }

.category-subcats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.category-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary, #1a1a2e);
  background: var(--bg-page, #fff);
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.category-filter-tag:hover {
  border-color: var(--accent, #7c3aed);
  color: var(--accent, #7c3aed);
}
.category-filter-tag.is-active {
  background: var(--accent, #7c3aed);
  border-color: var(--accent, #7c3aed);
  color: #fff;
}
.category-filter-tag span {
  font-size: 11px;
  opacity: .7;
}
.category-filter-reset {
  font-size: 13px;
  color: var(--text-muted, #94a3b8);
  text-decoration: none;
  padding: 6px 8px;
}
.category-filter-reset:hover { color: var(--accent, #7c3aed); text-decoration: underline; }

.category-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: var(--bg-section, #f8f9fa);
  border-radius: var(--radius, 6px);
  border: 1px solid var(--border-color, #e2e8f0);
}
.category-filter-bar__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.category-filter-bar__controls {
  display: flex;
  gap: 12px;
  align-items: center;
}
.category-filter-bar__controls .input-group { max-width: 260px; }
.category-filter-bar__controls .input-group-text {
  background: var(--bg-page, #fff);
  border-color: var(--border-color, #e2e8f0);
  font-size: 13px;
  color: var(--text-secondary, #64748b);
}
.category-filter-bar__controls .form-select {
  border-color: var(--border-color, #e2e8f0);
  font-size: 13px;
}
.category-filter-bar__controls .form-select:focus { border-color: var(--accent, #111111); box-shadow: 0 0 0 2px rgba(17,17,17,.15); }

#product-list {
  margin-top: 16px;
  display: flex !important;
  flex-wrap: wrap !important;
}
#product-list > .col {
  flex: 0 0 50% !important;
  max-width: 50% !important;
  width: 50% !important;
}

.page-category h1 { font-size: 1.75rem; font-weight: 700; margin-bottom: 8px; }

.price { color: var(--text-primary, #1a1a2e); font-size: .9rem; }
.price-new { font-weight: 700; color: var(--accent, #7c3aed); }
.price-old { color: var(--text-muted, #94a3b8); text-decoration: line-through; font-size: .8rem; margin-left: 6px; }
.price-tax { display: none; }

.rating .fa-stack { width: 20px; }
.rating .fa-star { color: #f59e0b; font-size: 15px; }
.rating .fa-star + .fa-star { color: #d97706; }

.sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ef4444;
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 3;
  border-radius: 3px;
}

#cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  color: #ecf0f1;
  background: #1a1a2e;
}
#cookie div { font-size: 14px; color: #fff; }
#cookie .btn { background: var(--accent, #7c3aed); border-color: var(--accent, #7c3aed); color: #fff; }

@media (max-width: 767px) {
  .category-filter-bar__controls { flex-direction: column; }
  .category-filter-bar__controls .input-group { max-width: 100%; }
  .breadcrumb { overflow-x: auto; flex-wrap: nowrap; white-space: nowrap; }
  .breadcrumb > li.breadcrumb-item { padding: 0 14px; }
}
