.category-products-list-wrapper {
	width: 100%;
	max-width: 1280px;
	padding: 82px 0;
}

#my-product-list {
	display: flex;
	justify-content: center;
	gap: 32px 16px;
	width: 100%;
	max-width: 1280px;
	flex-wrap: wrap;
}

.filter-wrapper {
	font-weight: 500;
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	font-size: 14px;
	margin-bottom: 32px;
	font-family: "Work Sans", serif;
	color: var(--primary-color);
}

.filter-wrapper p {
	padding-left: 14px;
	margin: 0 0 6px 0;
}

/* select dropdown */
.form-select {
	width: min-content;
	position: relative;
}

.form-select select {
	font-family: "Work Sans", serif;
	white-space: pre-wrap;
	border: 1px solid var(--primary-color);
	width: 268px;
	font-size: 16px;
	color: var(--primary-color);
	height: 45px;
	border-radius: 7.5px;
	padding-left: 16px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.drop-down-arrow {
	border-radius: 0 7.5px 7.5px 0;
	background: var(--primary-color);
	display: block;
	position: absolute;
	width: 45px;
	height: 45px;
	right: 0;
	top: 0;
	z-index: 10;
	pointer-events: none;
}

.drop-down-arrow::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 30px;
	background: url("data:image/svg+xml;utf8,<svg fill='%23fff' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'><path d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/></svg>")
		no-repeat center;
	background-size: contain;
	transform: translate(-50%, -50%);
}

.product-categories {
	font-family: "Work Sans", serif;
	font-size: 10px;
	margin: 23px 0 4px 0;
	font-weight: 600;
	color: var(--accent-color);
}

.thumbnail {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-height: 211px;
	max-width: 211px;
}

.thumbnail img {
	object-fit: contain;
	height: 211px !important;
}

.single-category-product {
	box-shadow: 0px 1px 8px 0px #0000001a, 0px 15px 15px 0px #00000017, 0px 34px 21px 0px #0000000d, 0px 61px 25px 0px #00000003,
		0px 96px 27px 0px #00000000;
	border-radius: 8px;
	max-width: 243px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.single-category-product-content {
	padding: 16px;
}

.single-category-product h4,
.product h4 {
	font-family: "Work Sans", serif;
	font-size: 20px;
	font-weight: 400;
	color: var(--primary-color);
	margin-top: 0;
}

.single-category-product a {
	font-family: "Ubuntu", serif;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	border-radius: 0 0 8px 8px;
	display: block;
	width: 100%;
	padding: 16px 0;
	background-color: var(--primary-color);
	color: #fff;
	transition: background-color 0.3s ease-in-out;
}

.single-category-product a:hover {
	background-color: var(--accent-color);
}

@media (max-width: 1280px) {
	.filter-wrapper {
		justify-content: center;
	}
	.category-products-list-wrapper {
		padding: 41px 0;
	}
}

@media (max-width: 768px) {
	.single-category-product {
		width: 173px;
	}
}
