/* ==========================================
   PRICE RANGE SLIDER - Enhanced Styling
   ========================================== */

/* Wider price range group on desktop - Full Width */
.price-range-group {
  min-width: 320px;
  flex: 2;
}

.price-display {
  font-weight: 600;
  color: #10b981;
  margin-left: 0.5rem;
  font-size: 0.9rem;
}

/* Slider Container */
.price-slider-container {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-top: 0.5rem;
}

/* Track Container */
.price-slider-track {
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
}

/* The colored fill between handles */
.price-slider-fill {
  position: absolute;
  height: 6px;
  background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
  border-radius: 3px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

/* Range Inputs */
.price-slider {
  position: absolute;
  width: 100%;
  height: 6px;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

/* Slider Thumb */
.price-slider::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 8px rgba(16,185,129,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 15px rgba(16,185,129,0.6);
}

.price-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 8px rgba(16,185,129,0.4);
}

/* Price Labels */
.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
  white-space: nowrap;
}

.price-labels span {
  flex: 1;
  text-align: center;
}

.price-labels span:first-child {
  text-align: left;
}

.price-labels span:last-child {
  text-align: right;
}

/* ==========================================
   PRICE PRESETS ONLY - Search form styles moved to hero-enhanced.css
   ========================================== */

.price-presets {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.price-preset {
  padding: 0.35rem 0.75rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.price-preset:hover {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}

.price-preset.active {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}
