.breadcrumb {
  padding: calc(36px + 58px + 18px) 20px 0;
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb-segment {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(0,0,0,0.35);
}
.breadcrumb-segment.active {
  color: #0a0a0a;
}
.breadcrumb-sep {
  font-size: 10px; color: rgba(0,0,0,0.2);
}
.breadcrumb-category {
  padding: 16px 20px 0;
}
.breadcrumb-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 500; letter-spacing: 6px;
  text-transform: uppercase; color: #0a0a0a;
}

/* ── FILTER BAR ── */
.filter-bar {
  padding: 20px 20px 16px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,0);
}
.product-count {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(0,0,0,0.45);
}
.filter-btn {
  display: flex; align-items: center; gap: 8px;
  background: none; border: 1px solid rgba(0,0,0,0.15);
  padding: 9px 10px; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: #0a0a0a;
  transition: border-color 0.2s;
}
.filter-btn:hover { border-color: #0a0a0a; }
.filter-btn svg { width: 14px; height: 14px; stroke: #0a0a0a; fill: none; stroke-width: 1.5; }

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #fff;
  margin: 0;
  padding: 0px 12px 0;
}
.product-card {
  background: #fff;
  cursor: pointer;
}
.product-img {
  aspect-ratio: 8/9;
  background: #e8e5e0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-img-placeholder {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(0,0,0,0.2);
}
.product-wishlist {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.product-wishlist svg { width: 18px; height: 18px; stroke: rgba(0,0,0,0.4); fill: none; stroke-width: 1.5; }
.product-info {
  padding: 10px 12px 14px;
}
.product-brand {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: #aaa; margin-bottom: 3px;
}
.product-name {
  font-size: 12px; letter-spacing: 0.5px; color: #0a0a0a;
  margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.product-price {
  font-size: 13px; letter-spacing: 1px; color: #0a0a0a;
}

/* Active wishlist heart */
.product-wishlist.active svg { fill: #0a0a0a; stroke: #0a0a0a; }

/* ── PAGINATION ── */
.pagination {
  padding: 40px 20px 56px;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.page-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,0,0,0.12);
  background: none; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 1px; color: #0a0a0a;
  transition: background 0.2s, border-color 0.2s;
}
.page-btn:hover { border-color: #0a0a0a; }
.page-btn.active { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
.page-btn svg { width: 12px; height: 12px; stroke: #0a0a0a; fill: none; stroke-width: 2; stroke-linecap: round; }
.page-btn.active svg { stroke: #fff; }

/* ── FILTER DRAWER ── */
.filter-backdrop {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.filter-backdrop.open { opacity: 1; pointer-events: all; }

.filter-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 401;
  width: 88vw; max-width: 380px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.filter-drawer.open { transform: translateX(0); }

.filter-header {
  padding: 20px 20px 16px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  flex-shrink: 0;
}
.filter-header-title {
  font-size: 13px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: #0a0a0a;
}
.filter-close {
  background: none; border: none; cursor: pointer; padding: 4px;
  display: flex; align-items: center; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}
.filter-close svg { width: 16px; height: 16px; stroke: rgba(0,0,0,0.4); fill: none; stroke-width: 1.5; stroke-linecap: round; }

.filter-body {
  flex: 1; overflow-y: auto;
  padding: 0 20px;
}
.filter-body::-webkit-scrollbar { display: none; }

/* Brand checkboxes */
.brand-list { display: flex; flex-direction: column; gap: 12px; }
.brand-item {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
}
.brand-checkbox {
  width: 16px; height: 16px; border: 1px solid rgba(0,0,0,0.2);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.brand-checkbox.checked { background: #0a0a0a; border-color: #0a0a0a; }
.brand-checkbox.checked::after {
  content: '';
  width: 8px; height: 5px;
  border-left: 1.5px solid #fff; border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}
.brand-label {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: #0a0a0a;
}

/* Accordion filter sections */
.filter-section {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.filter-section:last-child { border-bottom: none; }
.filter-section-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer; user-select: none;
}
.filter-section-title {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(0,0,0,0.7);
}
.filter-section-chevron {
  width: 14px; height: 14px; stroke: rgba(0,0,0,0.3); fill: none;
  stroke-width: 2; stroke-linecap: round;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.filter-section.open .filter-section-chevron {
  transform: rotate(180deg);
}
.filter-section-body {
  display: none;
  padding-bottom: 20px;
}
.filter-section.open .filter-section-body {
  display: block;
}

/* Price slider */
.price-inputs { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.price-input-wrap { flex: 1; position: relative; }
.price-input-label {
  display: block; font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(0,0,0,0.35); margin-bottom: 6px;
}
.price-input {
  width: 100%; border: 1px solid rgba(0,0,0,0.15); background: none;
  padding: 10px 12px; font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 1px; color: #0a0a0a; outline: none;
}
.price-input:focus { border-color: #0a0a0a; }
.price-sep { font-size: 12px; color: rgba(0,0,0,0.2); margin-top: 20px; }
.price-slider-wrap { position: relative; height: 16px; display: flex; align-items: center; margin-top: 4px; }
.price-slider-fill { position: absolute; top: 50%; transform: translateY(-50%); height: 2px; background: #0a0a0a; pointer-events: none; left: 0; right: 0; }
.price-slider {
  position: absolute; width: 100%;
  height: 2px; background: transparent; outline: none; appearance: none; -webkit-appearance: none;
  cursor: pointer; pointer-events: none;
}
.price-slider::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none;
  width: 16px; height: 16px; border-radius: 50%;
  background: #0a0a0a; cursor: pointer;
  border: 2px solid #fff; box-shadow: 0 0 0 1px #0a0a0a;
  pointer-events: all;
}
.price-slider::-moz-range-thumb {
  width: 16px; height: 16px; border-radius: 50%;
  background: #0a0a0a; cursor: pointer;
  border: 2px solid #fff; box-shadow: 0 0 0 1px #0a0a0a;
  pointer-events: all;
}
/* Track kleur via slider-wrap achtergrond */
.price-slider-track {
  position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
  height: 2px; background: #e8e5e0; pointer-events: none;
}

/* Sort options */
.sort-list { display: flex; flex-direction: column; gap: 0; }
.sort-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 0; border-bottom: 1px solid rgba(0,0,0,0.04);
  cursor: pointer;
}
.sort-item:last-child { border-bottom: none; }
.sort-label {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: #0a0a0a;
}
.sort-radio {
  width: 16px; height: 16px; border: 1px solid rgba(0,0,0,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sort-radio.selected::after {
  content: '';
  width: 8px; height: 8px; background: #0a0a0a; border-radius: 50%;
  display: block;
}

/* Filter footer */
.filter-footer {
  padding: 16px 20px 32px;
  display: flex; gap: 10px;
  border-top: 1px solid rgba(0,0,0,0.06);
  flex-shrink: 0;
}
.btn-reset {
  flex: 1;
  padding: 14px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: #0a0a0a;
  transition: border-color 0.2s;
}
.btn-reset:hover { border-color: #0a0a0a; }
.btn-apply {
  flex: 2;
  padding: 14px;
  border: 1px solid #0a0a0a;
  background: #0a0a0a; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: #fff;
  transition: background 0.2s;
}
.btn-apply:hover { background: #1a1a1a; }

.page-dots {
  display: flex; align-items: center; justify-content: center;
  width: 28px; font-size: 13px; color: rgba(0,0,0,0.3);
  letter-spacing: 1px;
}

/* Mobile: 1 kolom op S */
@media (max-width: 340px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER stub ── */
.footer-stub {
  background: #0a0a0a;
  padding: 48px 24px;
  text-align: center;
}
.footer-stub-text {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
