/**
 * Heat Pump Vancouver Custom Styles
 */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Details Accordion Styling */
details > summary::-webkit-details-marker {
    display: none;
}
details > summary {
    list-style: none;
}

/* Range Slider Custom Styling */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #16a34a;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    border: 3px solid #ffffff;
}

input[type=range]::-moz-range-thumb {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #16a34a;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    border: 3px solid #ffffff;
}

/* Line Clamp Utilities */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
