.header-wrapper {
  background-color: #131313;
}

.search-label {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 18px;
}

.search-field {
  background-color: #222222;
  border: 1px solid #141414;
  border-radius: 20px;
  width: 385px;
  height: 58px;
  color: #ffffff;
  font-size: 16px;
  padding-left: 50px;
}

.header-nav #primary-menu a {
  color: #a1a1a1;
}

.header-nav #primary-menu .current-menu-item a {
  color: #ffffff;
}

.sidebar-filter-label {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.block-filter {
  background-color: #151515;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
}

.block-filter-label {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 20px;
}

.block-filter-field-select {
  background-color: #424242;
  border: 1px solid #7C7C7C;
  border-radius: 20px;
  padding: 20px;
  font-size: 16px;
  font-weight: normal;
  color: #ffffff;
  width: 100%;
  margin-bottom: 20px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}

/* Custom checkbox styles */
.block-filter-field-checkbox {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #7C7C7C;
  border-radius: 4px;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  margin-right: 8px;
}

.block-filter-field-checkbox.checked-pink:checked {
  background-color: #DF006D;
  border-color: #DF006D;
}

.block-filter-field-checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.block-filter-field-checkbox.checked-pink:hover {
  border-color: #DF006D;
}

.block-filter-content-label {
  display: flex;
  align-items: center;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
}

.block-filter-tag-link {
  color: #ffffff;
  font-size: 18px;
}

.block-filter-tag-link-suffix {
  color: #8D8D8D;
}

.block-filter-content-limit-height {
  max-height: 320px;
  overflow-y: auto;
}

/* Light scrollbar styling */
.block-filter-content-limit-height::-webkit-scrollbar {
  width: 6px;
}

.block-filter-content-limit-height::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.block-filter-content-limit-height::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.block-filter-content-limit-height::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.nav-filter {
  background-color: #151515;
  border-radius: 20px;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 20px;
  justify-content: space-between;
}

.nav-filter-sort-item {
  color: #444444;
  cursor: pointer;
}

.nav-filter-sort-item.active {
  color: #ffffff;
}