/*
Theme Name: Betheme Child
Theme URI: https://themes.muffingroup.com/betheme
Author: Muffin group
Author URI: https://muffingroup.com
Description: Child Theme for Betheme
Template: betheme
Version: 2.0.3
*/

/* Product Category Checkbox Filter - Minimalist Design */
.category-filter-form {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.filter-section {
    margin-bottom: 20px;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-section h5 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-cat-checkboxes,
.product-tag-checkboxes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-cat-checkboxes li,
.product-tag-checkboxes li {
    margin: 0;
}

.product-cat-checkboxes label,
.product-tag-checkboxes label {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: #f9f9f9;
    font-size: 13px;
    font-weight: 400;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
	margin-bottom: 0;
}

.product-cat-checkboxes label:hover,
.product-tag-checkboxes label:hover {
    border-color: #999;
    background: #f0f0f0;
}

.product-cat-checkboxes input[type=checkbox],
.product-tag-checkboxes input[type=checkbox] {
    margin: 0 6px 0 0;
    transform: scale(0.9);
}

.product-cat-checkboxes input[type=checkbox]:checked + *,
.product-tag-checkboxes input[type=checkbox]:checked + * {
    background: #333;
    border-color: #333;
    color: #fff;
}

.category-filter-form button[type=submit] {
	max-height: 40px;
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-filter-form button[type=submit]:hover {
    background: #000;
    transform: translateY(-1px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .category-filter-form {
        padding: 15px;
    }
    
    .product-cat-checkboxes,
    .product-tag-checkboxes {
        gap: 6px;
    }
    
    .product-cat-checkboxes label,
    .product-tag-checkboxes label {
        padding: 5px 10px;
        font-size: 12px;
    }
}

/* Filter Buttons Container */
.filter-buttons {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

.filter-buttons .reset-btn {
	background: transparent;    
	color: #666;    
	margin-left: 15px;
	border: none;    padding: 10px 0;    
	border-radius: 0;    font-size: 13px;    
	font-weight: 400;    cursor: pointer;    
	transition: all 0.2s ease;    
	text-decoration: underline;    text-transform: none;    letter-spacing: normal;}
}


.category-filter-form .reset-btn:hover {    color: #333;    text-decoration: none;}

@media (max-width: 768px) {
    .filter-buttons {
        flex-direction: column;
        gap: 8px;
    }
}
