/* K. Hutton shop sidebar + single-page catalogue */
.khutton-shop-layout {
  align-items: flex-start;
}

.khutton-shop-sidebar {
  position: sticky;
  top: 110px;
}

.khutton-shop-filters {
  list-style: none;
  margin: 0;
  padding: 0;
}

.khutton-shop-filters li + li {
  margin-top: 4px;
}

.khutton-shop-filter {
  appearance: none;
  width: 100%;
  border: 0;
  background: transparent;
  color: #1a1024;
  text-align: left;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.khutton-shop-filters li.uk-active .khutton-shop-filter,
.khutton-shop-filter:hover,
.khutton-shop-filter:focus-visible {
  background: linear-gradient(135deg, rgba(90, 14, 143, 0.1), rgba(194, 24, 122, 0.12));
  color: #5a0e8f;
  outline: none;
}

.khutton-shop-sidebar__note {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 16, 36, 0.08);
}

.khutton-shop-sidebar__note p {
  color: #6b5a78;
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 16px;
}

.khutton-shop-head {
  margin-bottom: 28px;
}

.khutton-shop-count {
  color: #6b5a78;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.khutton-shop-item.is-hidden {
  display: none !important;
}

.khutton-site .khutton-shop-sidebar .widjet__title::after {
  background-color: #c2187a;
}

@media (max-width: 959px) {
  .khutton-shop-sidebar {
    position: static;
    margin-bottom: 24px;
  }

  .khutton-shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .khutton-shop-filters li + li {
    margin-top: 0;
  }

  .khutton-shop-filter {
    width: auto;
    padding: 10px 14px;
    font-size: 13px;
    border: 1px solid rgba(90, 14, 143, 0.16);
    background: #fff;
  }

  .khutton-shop-filters li.uk-active .khutton-shop-filter {
    background: linear-gradient(135deg, #5a0e8f, #c2187a);
    color: #fff;
    border-color: transparent;
  }
}
