.component-shop-content .component-shop-content-products {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	row-gap: 2rem;
	margin-top: 2rem;
}


.component-shop-content .component-shop-content-sort-selection {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.component-shop-content .component-shop-content-sort-selection-right {
	justify-self: end;
	align-items: center;
	display: flex;
}

.component-shop-content .component-shop-content-sort-selection-right > div{
	float: left;
	margin-right: 1rem;
}

.component-shop-content .component-shop-content-active-filters {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid black;
	margin-bottom: 5rem;
	display: flex;
	flex-wrap: wrap;
	row-gap: 1rem;
}

.component-shop-content-products > li.hide {
	display: none;
}

.component-shop-content-active-filter {
	background: #4A4848;
	color: white;
	display: flex;
	align-items: center;
	margin-right: 1rem;
	border: 1px solid black;
	border-radius: 1rem;
	padding: 0.2rem;
	gap: 0.5rem;
}

.component-shop-content-active-filter span {
	font-size: 0.8rem;
	margin-left: 1rem;

}

.component-shop-content-active-filter svg {
	margin-right: 0.5rem;
	cursor: pointer;

}

@media screen and (max-width: 1024px) {
	.component-shop-content .component-shop-content-products {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 776px) {
	.component-shop-content .component-shop-content-sort-selection {
		font-size: 12px;
	}

	.component-shop-filter-dropdown {
		width: 120px;
	}

	.component-shop-sort-dropdown {
		width: 125px;
	}

	.component-shop-content-sort-selection-left {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.component-shop-content-sort-selection-right > div:first-child {
		width: max-content;
	}

	.component-shop-content .component-shop-content-products {
		grid-template-columns: repeat(1, 1fr);
	}
}



