.categoriesContainer
{
	display: grid;
	grid-template-columns: 255px auto;
	gap: 30px;
}
.bottomPager{
	margin-top: 50px;
	margin-bottom: 30px;
}
.sortSelectorWrapper {
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
}

.sortSelector {
	position: relative;
}

.chip-btn {
	font-weight: 400 !important;
	padding: 0 12px !important;
}
.chips {
	display: none;
}

.sortSelector select {
	appearance: none;
	-webkit-appearance: none;
	width: 255px;

	padding: 8px 12px 8px 12px;
	background-color: transparent;
	border: 1px solid #222222;
	border-radius: 32px;
	color: #000000;
	cursor: pointer;
	outline: none;

	font-weight: 400;
	font-style: Regular;
	font-size: 14px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 0%;
}

.sortSelector select:focus {
	background: #F2F2F2;
	border-radius: 32px;
}

.sortSelector { 
	border-radius:8px; 
	background:transparent; 
	box-shadow:none; 
	border:0; 
	display:inline-block; 
	position:relative; 
}
.custom-select__toggle {
	border: 1px solid black;
	display:inline-flex;
	align-items:center;
	gap:8px;
	background:transparent;
	padding:8px 12px;
	font-size:14px;
	border-radius:32px;
	cursor:pointer;
	transition:background .12s ease;
	width: 255px;
}
.custom-select__toggle::after {
	content: "";
	position: absolute;
	pointer-events: none;
	top: 50%;
	transform: translate(0, -50%);
	width: 12px;
	height: 10px;
	right: 12px;
	background-color: #000000;
	clip-path: polygon(8% 17%, 0% 25%, 50% 84%, 100% 25%, 92% 17%, 50% 65%);
}
.custom-select__list {
	display:none;
	position:absolute;
	left:0;
	top:calc(100% + 8px);
	min-width:220px;
	margin:0;
	list-style:none;
	background:transparent;
	border-radius:8px;
	z-index:1100;
	box-sizing: border-box;
	padding: 20px;
	width: 100%;
}
.custom-select__item{
	display:block;
	padding:8px 12px;
	font-size:14px;
	border-radius:32px;
	cursor:pointer;
	background:transparent;
	transition:background .08s ease;
	margin-bottom:6px;
}
.custom-select__item:last-child{ margin-bottom:0; }
.custom-select__item:hover,
.custom-select__item:focus { background:#F4F1E7; outline:none; }
.custom-select__item.is-selected { background: #F4F1E7; }
.custom-select[data-open="true"] .custom-select__list{ display:block; }
.custom-select[data-open="true"] .custom-select__list{ background:#ffffff; box-shadow:0 6px 20px rgba(0,0,0,0.25); }
@media (max-width:480px){
.custom-select__list{ min-width:160px; right:0; left:auto; }
}

.itemReviewsTitle{
	font-weight: 600;
	font-style: Semibold;
	font-size: 24px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 0%;
	margin-top: 50px;
}
.itemReviewsContainer{
	margin-bottom: 50px;
}
.itemReviewsButton{
	text-align: center;
}
.seeMoreTitle{
	font-weight: 600;
	font-style: Semibold;
	font-size: 32px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 0%;
	margin-top: 80px;
	margin-bottom: 30px;
}

.filter-title-wrapper .cross-icon {
	display: none;
}
.filterToggleBtn {
	display: none;
}
.filterToggleBtnMenu {
	position: relative;
}
@media (max-width:968px) {
	.filterToggleBtn {
		display: block;
		margin: auto 0;
		position: relative;
	}
	.smartFilter {
		position: fixed;
		top: 66px;
		right: -100%;
		width: 100%;
		height: 100vh;
		padding: 37px;
		background: white;
		z-index: 999;
		transition: right 0.3s ease;
		overflow-y: auto;
		box-sizing: border-box;
		padding-bottom: 150px;
	}
	.smartFilter.active {
		right: 0;
	}
	.smartFilter::before {
		content: "";
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.3);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.3s ease;
		z-index: 999;
	}
	.categoriesContainer {
		display: block;
	}
	.filter-title-wrapper {
		display: flex;
		flex-direction: column-reverse;
	}
	.filter-title-wrapper .cross-icon {
		display: block;
		margin-left: auto;
	}
	.sortSelector {
		position: relative;
		width: 100%;
		max-width: 288px;
	}
	.sortSelector select {
		width: 100%;
		max-width: 288px;
		padding: 16px;
	}
	.sortSelector::after {
		right: 25px;
		left: unset;
	}
	.custom-select__toggle {
		width: 235px;
	}
	.custom-select__toggle::after {
		right: 70px;
	}
}

@media (max-width: 475px) {
	.sortSelector select {
		max-width: 180px;
	}
	.sortSelector {
		max-width: 180px;
	}
	.smartFilter {
		padding-bottom: 200px;
	}
	.custom-select__toggle::after {
		right: 12px;
	}
	.custom-select__toggle {
		width: 185px;
	}
}
