.shop-filters-product-list {
  width: 100%;
  top: 56px;
  position: sticky;
  z-index: 991;
}

.promo-filters-shell {
  position: relative;
  width: 98%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  background-color: white;
}

.promo-filters-scroll {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  overflow-y: hidden;
  align-items: center;
  justify-content: flex-start;
  padding: 2px 0 0 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}

.promo-filters-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(138, 43, 226, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: blueviolet;
  font-size: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  z-index: 3;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.promo-filters-nav-btn.left {
  left: 0;
}

.promo-filters-nav-btn.right {
  right: 4px;
}

.promo-filters-nav-btn:hover {
  transform: translateY(-50%) scale(1.06);
  border-color: blueviolet;
  box-shadow: 0 10px 22px rgba(138, 43, 226, 0.18);
}

.promo-filters-nav-btn.is-faded,
.promo-filters-nav-btn:disabled {
  opacity: 0.35;
  filter: saturate(0.7);
  box-shadow: none;
  pointer-events: none;
  transform: translateY(-50%) scale(0.94);
}

@media (max-width: 668px) {
  .promo-filters-nav-btn {
    width: 30px;
    height: 30px;
  }

  .promo-filters-nav-btn.left {
    left: 2px;
  }

  .promo-filters-nav-btn.right {
    right: 2px;
  }
}

.promo-filters-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.promo-filter-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 38px;
  padding: 4px 8px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  background: #fff;
  color: blueviolet;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.promo-filter-chip:hover {
  transform: translateY(-1px);
}

.promo-filter-chip.black {
  color: #111;
  border-color: rgba(17, 17, 17, 0.55);
}

.promo-filter-chip.violet {
  color: blueviolet;
  border-color: rgba(138, 43, 226, 0.14);
}

.promo-filter-chip.violet:hover,
.promo-filter-chip.violet.is-select:hover {
  border-color: blueviolet;
}

.promo-filter-chip.green {
  color: #1f9d48;
  border-color: rgba(31, 157, 72, 0.7);
}

.promo-filter-chip.orange {
  color: #ff8a00;
  border-color: rgba(255, 138, 0, 0.7);
}

.promo-filter-chip.redorange {
  color: #ff5b2e;
  border-color: rgba(255, 91, 46, 0.7);
}

.promo-filter-chip.blue {
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.7);
}

.promo-filter-chip.coupon {
  color: #BD4C31;
  border-color: rgba(189, 76, 49, 0.7);
}

.promo-filter-chip.gold {
  color: #d4a017;
  border-color: rgba(212, 160, 23, 0.55);
}

.promo-filter-chip.is-active.green {
  background: #1f9d48;
  color: #fff;
  border-color: transparent;
}

.promo-filter-chip.is-active.orange {
  background: #ff8a00;
  color: #ff3b30;
  border-color: transparent;
}

.promo-filter-chip.is-active.redorange {
  background: #ff5b2e;
  color: #fff;
  border-color: transparent;
}

.promo-filter-chip.is-active.violet {
  background: blueviolet;
  color: #fff;
  border-color: transparent;
}

.promo-filter-chip.is-active.blue {
  background: #2563eb;
  color: #fff;
  border-color: transparent;
}

.promo-filter-chip.is-active.coupon {
  background: #BD4C31;
  color: #fff;
  border-color: transparent;
}

.promo-filter-chip.price-bound-chip {
  background: blueviolet;
  color: #fff;
  border-color: transparent;
}

.promo-filter-chip.price-bound-chip .promo-filter-check {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.promo-filter-chip-image {
  width: 18px;
  height: 18px;
  object-fit: cover;
  border-radius: 50%;
}

.promo-filter-chip-text {
  font-size: 13px;
  line-height: 1;
}

.promo-filter-check,
.promo-filter-caret,
.promo-filter-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.promo-filter-popover {
  position: fixed;
  z-index: 10020;
  min-width: 240px;
  max-width: min(92vw, 320px);
  padding: 4px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(138, 43, 226, 0.12);
  backdrop-filter: blur(10px);
}

.promo-filter-popover.gold {
  border-color: rgba(212, 160, 23, 0.22);
}

.promo-filter-popover-title,
.promo-filter-input-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.promo-filter-input-hint {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

.promo-filter-popover-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 260px;
  overflow: auto;
}

.promo-filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 9px 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  background: #fff;
  color: #222;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-filter-option:hover,
.promo-filter-option.active {
  border-color: blueviolet;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(138, 43, 226, 0.08);
}

.promo-filter-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(17, 17, 17, 0.12);
  border-radius: 12px;
  padding: 8px 10px;
  background: #fff;
}

.promo-filter-text-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  color: #111;
}

.promo-filter-send-btn {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 10px;
  background: blueviolet;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.promo-filter-suggestions {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 220px;
  overflow: auto;
}

.promo-filter-suggestion-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 8px 10px;
  background: #fff;
  color: #222;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.promo-filter-suggestion-btn:hover {
  border-color: blueviolet;
  box-shadow: 0 8px 18px rgba(138, 43, 226, 0.08);
  transform: translateY(-1px);
}

.promo-filter-suggestion-empty {
  font-size: 12px;
  color: #666;
  padding: 6px 2px;
}

.promo-filter-suggestion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.promo-filter-suggestion-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.promo-filter-suggestion-type {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid rgba(138, 43, 226, 0.2);
  color: #6d28d9;
  background: rgba(138, 43, 226, 0.08);
}

.promo-price-filter-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 10030;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-price-filter-dialog {
  width: min(92vw, 420px);
  border-radius: 18px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
  position: relative;
}

.promo-price-filter-close {
  position: absolute;
  right: 12px;
  top: 10px;
  border: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  color: #777;
}

.promo-price-filter-title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
}

.promo-price-title-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.promo-price-title-text {
  color: #111;
}

.promo-price-title-flag {
  width: 18px;
  height: 12px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.promo-price-title-currency {
  color: #1f9d48;
  font-weight: bold;
}

.promo-price-filter-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.promo-price-filter-row label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #222;
}

.promo-price-input {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
}

.promo-price-filter-apply {
  margin-top: 14px;
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 12px;
  background: blueviolet;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.promo-price-filter-actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-price-filter-reset,
.promo-price-filter-apply {
  height: 44px;
  border: none;
  border-radius: 12px;
  padding: 0 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.promo-price-filter-reset {
  background: #eef2ff;
  color: #4c1d95;
  border: 1px solid rgba(76, 29, 149, 0.22);
  min-width: 128px;
}

.promo-price-filter-apply {
  margin-top: 0;
  flex: 1;
}

.promo-price-filter-apply.full-width {
  width: 100%;
}

@media (max-width: 768px) {
  .promo-filter-chip {
    min-height: 36px;
    padding: 8px 10px;
  }

  .promo-filter-chip-text {
    font-size: 12px;
  }

  .promo-price-filter-row {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 668px) {
  .promo-filters-nav-btn {
    display: inline-flex;
  }
}