/* --- Scoped to price slider container --- */
.price-slider-container {
  margin-top: 40px;
  text-align: center;
  font-family: Arial, sans-serif;
  width: 100%;
}

.price-slider-container .slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 16px;
  height: 80px;
  display: block;
}

/* RESET default Elementor / Theme interference */
.price-slider-container input[type="range"] {
  all: unset;
  display: block;
  width: 100%;
  cursor: pointer;
}

/* Range track */
.price-slider-container input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  margin-top: 38px;
  border-radius: 6px;
  background: linear-gradient(90deg, #66ACFF, #002F66);
  outline: none;
  z-index: 3;
  position: relative;
}

/* Chrome / Safari thumb */
.price-slider-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #0073aa;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 4;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-slider-container input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
}

/* Firefox thumb */
.price-slider-container input[type="range"]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #0073aa;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
}

/* Firefox track */
.price-slider-container input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, #66ACFF, #002F66);
}

/* ticks */
.price-slider-container .slider-ticks {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 2;
  pointer-events: none;
}

/* single tick */
.price-slider-container .slider-ticks .tick {
  position: absolute;
  top: -8px;
  width: 2px;
  height: 12px;
  background: rgba(0,0,0,0.3);
  transform: translateX(-50%);
}

/* labels */
.price-slider-container .slider-ticks .tick-label {
  position: absolute;
  top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #222;
  pointer-events: auto;
  cursor: pointer;
  transform: translateX(-50%);
}

/* tooltip bubble */
.price-slider-container .tooltip {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #0073aa;
  box-shadow: 0 3px 6px rgba(0,0,0,0.12);
  z-index: 5;
  pointer-events: none;
}

/* tooltip arrow */
.price-slider-container .tooltip::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 7px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

/* optional prices display */
.price-slider-container .prices-inline {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 8px;
}

/* Hide first and last ticks */
.price-slider-container .tick-0,
.price-slider-container .tick-4 {
  display: none !important;
}

/* Adjust label start alignment */
.price-slider-container .tick-label-0 {
  left: 5px !important;
}

/* Ensure slider doesn’t shrink in Elementor flex containers */
.elementor-widget-container .price-slider-container {
  width: 100%;
  max-width: 600px;
  display: block;
}
.lite-price, .pro-price {
  display: inline-block;
}
/*
.lite-price, .pro-price {
  font-size: 1.05rem;
  font-weight: 600;
}

#litePriceDisplayStandalone, #proPriceDisplayStandalone {
  font-weight: 700;
}

*/