#contents {
    opacity: 1;
    filter: blur(0px);
    transition: opacity 0.8s ease, filter 0.8s ease;
}

#contents.fade-out {
    opacity: 0.3;
    filter: blur(3px);
}

@media (min-width: 991px) {
.hsnButton {
	display: none;
}
	.mobile-filter-bar {
		display: none;
	}
}

.products-list.grid .product-layout .product-item-container, .products-list.list-masonry .product-layout .product-item-container {
    padding: 0px;
    margin: 5px 0;
}

    .col-md-12 {
        flex: 0 0 auto;
        max-width: 80%;
    }
	
	.products-list.list .product-layout .product-item-container {
    border: none;
	min-height: 343px;
}

#collections_block ul, .filter-row .checkboxes_list, .filter-row .simple_vertical_list, .filter-shopby .checkboxes_list, .filter-shopby .simple_vertical_list, .htmlcontent-home, .menu-category .list-group, .menu-category .list-group > li ul, .tags_cloud, ul.blank, ul.contact-address, ul.menu, ul.product-options {
    padding-left: 5px;
}

    .checkboxes_list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .checkboxes_list li {
        margin-bottom: 8px;
    }

    .category-checkbox {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        user-select: none;
    }

    .category-checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
        accent-color: #007bff; /* Tik rengi */
		display: math;
    }

    .category-checkbox span {
        font-size: 14px;
        color: #333;
    }
	
	.filter-row, .filter-shopby {
    border: none;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    justify-content: flex-start;
    flex-direction: row;
    align-items: flex-start;
    align-content: flex-end;
}

    .col-md-4 {
        flex: 0 0 auto;
        width: 17.333333%;
    }





//mobil
/* --- MOBİL FİLTRE STİLLERİ (992px altı) --- */

/* Varsayılan olarak mobil filtre barı gizli */
.mobile-filter-bar {
    display: none;
}

@media (max-width: 991px) {
    /* Masaüstü yan paneli (column-left) mobilde tamamen gizle */
    #column-left {
        display: none !important;
    }

    /* Mobil filtre barını görünür yap */
    .mobile-filter-bar {
        display: flex;
        width: 100%;
        gap: 3px;
        margin-bottom: 5px;
        position: relative;
        z-index: 100;
    }

    .mobile-filter-btn {
        flex: 1; /* Butonlar eşit genişlikte */
        background: #fff;
        border: 1px solid #ddd;
        padding: 10px 15px;
        font-size: 14px;
        font-weight: 600;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        border-radius: 4px;
    }

    /* Aşağı ok ikonu */
    .mobile-filter-btn::after {
        content: '';
        border: solid #333;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 3px;
        transform: rotate(45deg);
        margin-left: 10px;
        transition: transform 0.3s;
    }

    /* Dropdown açıkken ok yukarı baksın */
    .mobile-filter-btn.active::after {
        transform: rotate(-135deg);
    }

    /* Dropdown İçeriği */
    .mobile-dropdown-content {
        display: none; /* Varsayılan kapalı */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        border: 1px solid #ddd;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        padding: 15px;
        margin-top: 5px;
        border-radius: 4px;
        max-height: 400px;
        overflow-y: auto;
    }

    /* Hangi dropdown aktifse onu göster */
    .mobile-dropdown-content.show {
        display: block;
    }
    
    /* Mobil grid genişliği tam olsun */
    .col-md-12 {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}