/* Filter Widget Styling */
.awcf-filter-group {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}
.awcf-filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.search-note{
	font-size:11px;
	color:#969696;
}
#awcf-filter-container .widget-title, .awcf-filter-group h4{
background-color: #213979;
    padding: 10px;
    color: #fff!important;
    margin-bottom: 15px;
    border-radius: 5px;
	font-size:20px!important;
}

ul.awcf-checkbox-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
}

ul.awcf-checkbox-list li {
    margin-bottom: 5px;
}

ul.awcf-checkbox-list label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

ul.awcf-checkbox-list input[type="checkbox"] {
    margin-right: 8px;
}

#awcf-search {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #efefef;
    width: 100%; /* Ensures it fills the widget area */
    box-sizing: border-box; /* Prevents padding from breaking the layout */
}


/* Loading Overlay for Product Container */
ul.products.loading-products {
    position: relative;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: wait;
    background-color: rgba(255, 255, 255, 0.5);
}