body { font-family: 'Inter', sans-serif; }

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Price Range */
/* Custom CSS to enable clicking only the thumb (handle) */
input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    pointer-events: auto;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #b08d57;
    border: 2px solid #f4f1e8;
    cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
    pointer-events: auto;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #b08d57;
    border: 2px solid #f4f1e8;
    cursor: pointer;
}