.watch-filters-section {
  padding: 0;
  background: transparent;
}

.watch-filters {
  width: min(100%, 320px);
  box-sizing: border-box;
  padding: 24px 24px 28px;
  color: #171717;
  background: #f7f1e8;
  border: 1px solid #d8c7b8;
  border-radius: 12px;
}

.watch-filters__header {
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #dccfc1;
}

.watch-filters__title {
  position: relative;
  margin: 0;
  color: #171717;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 7px;
  line-height: 1.2;
  text-transform: uppercase;
}

.watch-filters__group {
  margin: 0;
  padding: 22px 0 24px;
  border: 0;
  border-bottom: 1px solid #dccfc1;
}

.watch-filters__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.watch-filters__group-heading {
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #171717;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.watch-filters__range-wrap {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 25px;
}

.watch-filters__range {
  width: 100%;
  height: 18px;
  margin: 0;
  display: block;
  appearance: none;
  background: transparent;
  cursor: pointer;
  --range-progress: 50%;
}

.watch-filters__range::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    #8c735f 0,
    #8c735f var(--range-progress),
    #e3dbd1 var(--range-progress),
    #e3dbd1 100%
  );
}

.watch-filters__range::-moz-range-track {
  height: 5px;
  border-radius: 999px;
  background: #e3dbd1;
}

.watch-filters__range::-moz-range-progress {
  height: 5px;
  border-radius: 999px;
  background: #8c735f;
}

.watch-filters__range::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  margin-top: -5.5px;
  appearance: none;
  background: #ffffff;
  border: 2px solid #967961;
  border-radius: 50%;
}

.watch-filters__range::-moz-range-thumb {
  width: 13px;
  height: 13px;
  background: #ffffff;
  border: 2px solid #967961;
  border-radius: 50%;
}

.watch-filters__range:focus-visible {
  outline: 2px solid rgba(146, 116, 92, 0.35);
  outline-offset: 6px;
}

.watch-filters__range-labels {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #766b61;
  font-size: 0.75rem;
  font-weight: 500;
}

.watch-filters__range-value {
  position: absolute;
  left: var(--range-progress, 50%);
  top: 24px;
  transform: translateX(-50%);
  color: #766b61;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.watch-filters__option {
  min-height: 24px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #72675d;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
  cursor: pointer;
}

.watch-filters__option:first-of-type {
  margin-top: 0;
}

.watch-filters__option input {
  width: 16px;
  height: 16px;
  margin: 0;
  flex: 0 0 16px;
  appearance: none;
  background: #f7f1e8;
  border: 1px solid #9c8d80;
}

.watch-filters__option input[type="radio"] {
  border-radius: 50%;
}

.watch-filters__option input[type="radio"]:checked {
  border: 2px solid #967961;
  box-shadow: inset 0 0 0 3px #f7f1e8;
  background: #967961;
}

.watch-filters__option input[type="checkbox"]:checked {
  background-color: #967961;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L4.2 8.2L11 1.4' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px 10px;
  border-color: #967961;
}

.watch-filters__option input:focus-visible {
  outline: 2px solid rgba(146, 116, 92, 0.35);
  outline-offset: 3px;
}

.watch-filters__actions {
  padding-top: 22px;
  display: flex;
  gap: 12px;
}

.watch-filters__button {
  min-height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  cursor: pointer;
}

.watch-filters__button--clear {
  flex: 0 0 104px;
  color: #807164;
  background: #f7f1e8;
  border: 1px solid #d2bba5;
}

.watch-filters__button--apply {
  flex: 1;
  color: #ffffff;
  background: #171717;
  border: 1px solid #171717;
}

.watch-filters__button:focus-visible {
  outline: 2px solid rgba(23, 23, 23, 0.25);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .watch-filters-section {
    padding: 18px 14px 28px;
  }

  .watch-filters {
    width: 100%;
    padding: 22px 20px 24px;
  }

  .watch-filters__actions {
    flex-wrap: wrap;
  }

  .watch-filters__button {
    flex: 1 1 100%;
  }

  .watch-filters__button--clear {
    display: none;
  }
}
