/* Filter Wrapper */
.custom-filter-wrapper {
	/*margin-bottom: 20px;
	max-height: 250px;
	overflow-y: scroll;*/
	height: 0;
	overflow: hidden;
}

.widget_custom_filter_widget span{
	color: rgba(37, 56, 88, 1);
	font-weight: 700;
	font-size: 16px;
	line-height: 32px;
	display: inline-block;
	margin-bottom: 5px;
	width: 100%;
	position: relative;
	cursor: pointer
}

.widget_custom_filter_widget span:after{
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	content: "";
	background: center center no-repeat url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.9201 15.05L13.4001 8.53001C12.6301 7.76001 11.3701 7.76001 10.6001 8.53001L4.08008 15.05' stroke='%237A869A' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	right: 0;
	top: 5px;
	transform: rotate(180deg);
	transition: all ease-in-out .3s
}

.widget_custom_filter_widget span.open:after{
	transform: rotate(0)
}

.custom-filter-wrapper .search-attributes{
	border: 1px solid rgba(235, 236, 240, 1);
	background: rgba(255, 255, 255, 1) no-repeat center right 10px  url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.58341 17.5C13.9557 17.5 17.5001 13.9556 17.5001 9.58332C17.5001 5.21107 13.9557 1.66666 9.58341 1.66666C5.21116 1.66666 1.66675 5.21107 1.66675 9.58332C1.66675 13.9556 5.21116 17.5 9.58341 17.5Z' stroke='%237A869A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18.3334 18.3333L16.6667 16.6667' stroke='%237A869A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	padding-right: 35px;
	color: rgba(223, 225, 230, 1);
	font-weight: 400;
	font-size: 12.64px;
	line-height: 20px;
}

.checkbox-option,
.radio-option {
	margin-bottom: 8px;
}

.checkbox-option,
.radio-option {
	display: flex;
	align-items: center;
	cursor: pointer;
	flex-direction: row;
	justify-content: start;
	text-align: right;
	gap: 10px;
}

.checkbox-option input,
.radio-option input{
	margin-left: auto;
	order: 2;
}

/* Color Options */
.color-option {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}

.color-swatch {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	margin-right: 8px;
	border: 1px solid #ddd;
}

.color-option.selected .color-swatch {
	border: 2px solid #000;
}

.term-name {
	font-size: 14px;
}

/* Loading State */
.products.loading,
.custom-filter-wrapper.loading{
	opacity: 0.5;
	pointer-events: none;
}

.title-product span.current {
	color: #000; /* Or your preferred highlight color */
	font-weight: bold;
}

body nav.woocommerce-pagination {
	grid-column: 1 / -1;
	padding: 1rem;
	border-color: rgba(226,226,226,1);
	border-width: 1px;
	border-radius: .5rem;
	font-size: 1.8rem;
	width: max-content;
	margin: 0 auto;
}




/* Responsive Design */
@media (max-width: 768px) {
	.custom-filter-wrapper {
		/*display: flex;
		flex-wrap: wrap;
		gap: 10px;*/
	}

	.color-option,
	.checkbox-option,
	.radio-option {
		margin-bottom: 5px;
	}
}