/* 
   Performance Optimized Global Styles 
   Extracted from master.blade.php for Browser Caching
*/

.heart {
    width: 24px;
    height: 24px;
    display: inline-block;
    background: url('/images/heart-outline.svg') no-repeat center;
    background-size: contain;
    cursor: pointer;
}

.heart.active {
    background: url('/images/heart-filled.svg') no-repeat center;
    background-size: contain;
}

.color-square {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    margin-left: 5px;
    vertical-align: middle;
}

.form-check-input:checked {
    background-color: #0f2844;
}

.slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

.slider .progress {
    height: 5px;
    position: absolute;
    border-radius: 5px;
    background: #0d6efd;
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background: #0d6efd;
    pointer-events: auto;
    -webkit-appearance: none;
}

input[type="range"]::-moz-range-thumb {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background: #0d6efd;
    pointer-events: auto;
    -moz-appearance: none;
}

.price-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-input input {
    width: 80px;
    text-align: center;
}
