.sidebar-left {
  font-size: 14px;
}

.sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-inner .box {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    var(--color-primary) 0%,
    hsl(var(--color-primary-h), var(--color-primary-s), 18%) 100%
  );
  color: #c8cce0;
  position: relative;
}

.sidebar-inner .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-secondary),
    var(--color-tertiary),
    var(--color-secondary)
  );
}

.sidebar-inner .pageElement__heading,
.sidebar-inner h3:not(.sr-only) {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin: 0;
  padding: 18px 18px 14px;
  position: relative;
}

.box-categories #categories {
  padding: 4px 0 10px;
}

.box-categories .cat-trigger {
  display: inline-flex;
  padding-left: 6px;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: auto;
}

#categories .expandable > .topic > a::before,
#categories .expandable > a::before,
#categories .expandable.external > .topic > a::before,
#categories .expandable.external > a::before {
  content: none !important;
  display: none !important;
}

#categories .cat-trigger::before,
#categories .expandable .cat-trigger::before,
#categories .expandable.external .cat-trigger::before {
  content: "" !important;
  display: block;
  width: 6px !important;
  height: 6px !important;
  border-right: 1.5px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.35);
  transform: rotate(-45deg) !important;
  transition:
    border-color 0.15s ease,
    transform 0.2s ease;
  font-family: inherit !important;
  font-size: 0 !important;
}

.box-categories .categories .topic a:hover .cat-trigger::before,
.box-categories .categories > ul > li > a:hover .cat-trigger::before {
  border-color: var(--color-secondary);
}

.box-categories .categories.active > .topic .cat-trigger::before,
.box-categories .categories.expanded > .topic .cat-trigger::before {
  border-color: var(--color-secondary);
  transform: rotate(45deg) !important;
}

.box-categories .categories .topic a,
.box-categories .categories > ul > li > a,
.box-categories .categories > ul > li.expandable > a {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.box-categories .categories .topic a {
  padding: 11px 18px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  border-left: 2px solid transparent;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.box-categories .categories .topic a:hover {
  color: #fff;
  border-left-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.04);
}

.box-categories .categories.active > .topic a {
  color: #fff;
  border-left-color: var(--color-secondary);
}

.box-categories .categories > ul {
  background: rgba(0, 0, 0, 0.15);
  padding: 4px 0;
}

.box-categories .categories > ul > li > a {
  display: flex;
  align-items: center;
  padding: 9px 18px 9px 30px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 12.5px;
  transition: color 0.15s ease;
  position: relative;
}

.box-categories .categories > ul > li > a::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.15s ease;
}

.box-categories .categories > ul > li > a:hover {
  color: #fff;
}

.box-categories .categories > ul > li > a:hover::before {
  background: var(--color-secondary);
}

.box-filters .filters-unveil-button-wrapper {
  padding: 14px 18px 0;
}

.box-filters .unveil-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: var(--color-secondary);
  color: #fff !important;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease;
  box-sizing: border-box;
}

.box-filters .unveil-button:hover {
  background: var(--color-secondary-hover);
}

.box-filters .filters {
  padding: 0 18px 16px;
}

.box-filters .slider-wrapper h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.5);
  margin: 14px 0 10px;
}

.box-filters .slider-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.box-filters .ui-slider {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  height: 4px;
  border-radius: 4px;
}

.box-filters .ui-slider-range {
  background: var(--color-secondary);
  border-radius: 4px;
}

.box-filters .ui-slider-handle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-secondary) !important;
  top: -6px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s ease;
}

.box-filters .ui-slider-handle:hover,
.box-filters .ui-slider-handle:focus {
  transform: scale(1.2);
  outline: none;
}

.box-filters .filter-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.box-filters .filter-count {
  color: rgba(255, 255, 255, 0.4);
}

.box-filters .filter-label.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.box-onlinePayments {
  text-align: center;
  padding-bottom: 18px;
}

.box-onlinePayments img {
  opacity: 0.75;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.box-onlinePayments img:hover {
  opacity: 1;
}

.top-products {
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
}

.top-products > li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.15s ease;
}

.top-products > li:last-child {
  border-bottom: none;
}

.top-products > li:hover {
  background: rgba(255, 255, 255, 0.04);
}

.top-products .top-products-image {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}

.top-products .top-products-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-products .top-products-content {
  flex: 1;
  min-width: 0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.top-products .top-products-name {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s ease;
}

.top-products > li:hover .top-products-name {
  color: #fff;
}

.top-products .top-products-content strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-secondary);
}

.slider-content,
.ui-slider,
.filter-sections {
  background-color: inherit !important;
}

.breadcrumbs {
  padding-top: 11px !important;
}
