:root { --prc-orange: #e8620a; --prc-orange-dark: #c9530a; }

.prc-fw { font-family: inherit; }

.prc-mob-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--prc-orange);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.prc-mob-toggle:hover { background: var(--prc-orange-dark); }

.prc-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9998;
}
.prc-overlay.active { display: block; }

.prc-mob-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}
.prc-mob-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  line-height: 1;
  padding: 0;
}

.prc-fs { background: #fff; }

.prc-section { margin-bottom: 20px; }

.prc-fh {
  font-size: 12px;
  font-weight: 700;
  color: var(--prc-orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--prc-orange);
}

.prc-cl {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: none !important;
  overflow: visible !important;
}

.prc-cl li { margin-bottom: 6px; }

.prc-ll {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #222;
  line-height: 1.4;
}
.prc-ll:hover { color: var(--prc-orange); }

.prc-cc {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--prc-orange);
  cursor: pointer;
}

.prc-slider-wrap {
  position: relative;
  height: 28px;
  margin: 8px 0;
}

.prc-track {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  z-index: 0;
}

.prc-range-fill {
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--prc-orange);
  border-radius: 2px;
}

.prc-range {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  height: 4px;
  background: transparent;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.prc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--prc-orange);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.prc-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--prc-orange);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  cursor: pointer;
  pointer-events: auto;
}

.prc-range-min { z-index: 3; }
.prc-range-max { z-index: 4; }

.prc-price-display {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #333;
  margin-top: 4px;
}

.prc-btns {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.prc-btn-filter,
.prc-btn-clear {
  flex: 1;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.prc-btn-filter {
  background: var(--prc-orange);
  color: #fff;
  border: 2px solid var(--prc-orange);
}
.prc-btn-filter:hover {
  background: var(--prc-orange-dark);
  border-color: var(--prc-orange-dark);
}

.prc-btn-clear {
  background: transparent;
  color: var(--prc-orange);
  border: 2px solid var(--prc-orange);
}
.prc-btn-clear:hover {
  background: var(--prc-orange);
  color: #fff;
}

@media (max-width: 768px) {
  .prc-mob-toggle { display: flex; }
  .prc-mob-header { display: flex; }

  .prc-fs {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 85%;
    max-width: 320px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transform: translateX(-110%);
    transition: transform 0.3s ease;
    border-radius: 0;
    padding: 0;
    box-shadow: 4px 0 20px rgba(0,0,0,0.2);
  }

  .prc-fs.open { transform: translateX(0); }

  .prc-section { padding: 16px 20px 0; }
  .prc-btns { padding: 16px 20px 24px; margin-top: 8px; }
}