.filter-card{
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    background-color: white;
    padding: 1rem;
    max-height: 80vh;
    margin-bottom: 1rem;
    overflow-y: auto;
}

.search-filter-title {
    font-size: 1rem; 
    font-weight: 600;
    color: var(--bs-dark) !important;
    margin-bottom: 0.5rem;
}

.search-filter-subtitle {
    font-weight: 400;
    color: #6c757d !important; /* Bootstrap 'muted' rengi */
}

.search-filter-search {
    position: relative;
    margin-bottom: 1rem;
}

.search-filter-search .form-control {
    /* İkon için içeriden boşluk */
    padding-left: 2.2rem;
    font-size: 0.9rem;
    height: calc(1.5em + 0.75rem + 2px); /* sm yüksekliği */
}

.search-filter-search .search-icon {
    position: absolute;
    top: 50%;
    left: 0.75rem;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none; /* İkonun üzerine tıklamayı engelle */
}

.search-filter-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    
    /* Liste uzarsa diye scroll ekleyelim */
    max-height: 300px;
    overflow-y: auto;
    
    /* Scrollbar'ı inceltelim (opsiyonel) */
    scrollbar-width: thin;
    scrollbar-color: #ced4da #f8f9fa;
}

.search-filter-item-image-box {
    display: flex;
    align-items: center;
    min-height:2rem;
}

/*.search-filter-item-image-box:hover {
    background-color: var(--bs-ultralight-orange-custom);
}*/

.search-filter-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.2rem;
    min-height:2rem;
}

.search-filter-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #ced4da; /* Bootstrap border rengi */
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    margin-right: 0.5rem; /* Checkbox ile logo arası boşluk */
    flex-shrink: 0; /* Küçülmesin */
    transition: all 0.15s ease-in-out;
}

.search-filter-checkbox:checked {
    background-color: var(--bs-orange-custom, #0d6efd);
    border-color: var(--bs-orange-custom, #0d6efd);
    
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.search-filter-label {
    display: flex;
    justify-content: space-between; /* Logoyu sola, sayıyı sağa yaslar */
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.search-filter-item-image {
    max-width: 80px;
    object-fit: contain;
}

.search-filter-item-image-container{
    width:6rem;
}

.search-filter-item-count {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    white-space: nowrap; /* Sayıların alt satıra düşmesini engeller */
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.search-filter-icon{
    height: 23px;
    margin-right: 0.4rem;
}



/* MOBILE */

.product-placeholder {
    border: 2px dashed #dee2e6;
    min-height: 200px;
}

.filter-placeholder-card {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #fff;
}

/* Accordion Menü */
.mobil-accordion-menu-item{
/*    border: 1px solid #dee2e6 !important;
    border-radius: 0.5rem !important;*/
    padding: 0.4rem !important;
    margin-bottom: 1rem !important;
}
.accordion-item,
.accordion-button {
    border: 0px !important;
    border-radius: 0px !important;
    padding: 0.8rem 0.4rem !important;
}

.accordion-button:not(.collapsed) {
    box-shadow: none !important;
}
.accordion-button:focus {
    box-shadow: none !important;
}
.accordion-button:not(.collapsed){
    background-color:white !important;
}
