.elementor-11354 .elementor-element.elementor-element-1452515{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11354 .elementor-element.elementor-element-07288c4{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-11354 .elementor-element.elementor-element-1452515{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-07288c4 */body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f0f4f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.filter-modal {
    background: #ffffff;
    width: 380px;
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-header h2 {
    font-size: 18px;
    margin: 0;
    color: #2d3748;
}

.close-btn {
    font-size: 20px;
    cursor: pointer;
    color: #a0aec0;
}

.filter-section {
    margin-bottom: 24px;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 16px;
}

.filter-section > label {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    display: block;
    margin-bottom: 12px;
}

.price-inputs {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    color: #2d3748;
    font-size: 14px;
    margin-bottom: 8px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 13px;
    color: #4a5568;
}

.checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.center-label {
    text-align: center;
    font-size: 13px;
    color: #4a5568;
    margin-bottom: 8px;
}

input[type="range"] {
    width: 100%;
    accent-color: #38b2ac;
}

.toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 10px;
}

/* Switch Design */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #cbd5e0;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #38b2ac;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

.apply-btn {
    width: 100%;
    background-color: #38b2ac;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.apply-btn:hover {
    background-color: #319795;
}/* End custom CSS */