/* General Page Styles */
body {
	font-family: 'Poppins', sans-serif;
	color: #111111;
	background-color: #ffffff;
}

.page-container {
	display: flex;
	max-width: 1240px;
	margin: 2.5rem auto;
	gap: 40px;
	padding: 0 10px;
}

/* Sidebar Styles */
.sidebar {
	width: 230px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.sidebar__navigation .sidebar__title {
	font-family: 'ChakraPetch-Bold', sans-serif;
	font-size: 16px;
	padding-bottom: 10px;
	border-bottom: 3px solid #ffd21d;
	margin-bottom: 15px;
}

.category-list__item a {
	color: #111111;
	font-size: 12px;
	letter-spacing: 0.8px;
	display: flex;
	align-items: center;
	gap: 10px;
	line-height: 1.3;
	padding: 5px 0;
}

.category-list__item--active a {
	font-weight: 700;
}

.category-list__item.category-list__item--active::before {
	content: '';
	background: #ffd21d;
	display: inline-block;
	height: 2px;
	width: 11px;
	float: left;
	margin-top: 11px;
	margin-right: 10px;
}

.sidebar__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.sidebar__tags a {
	transition: color .23s, background-color .23s;
}
.sidebar__tags a:hover {
	 background-color: #111;
	 color: #fff;
 }

.tag {
	background: #f6f5f1;
	padding: 6px 10px;
	font-family: 'ChakraPetch-SemiBold', sans-serif;
	font-size: 13px;
	color: #111111;
}

.sidebar__filter .filter__title {
	font-family: 'ChakraPetch-Bold', sans-serif;
	font-size: 14px;
	margin-bottom: 10px;
}

.filter-list {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.filter-list__item {
	font-size: 12px;
	display: flex;
	justify-content: space-between;
	gap: 5px;
	position: relative;
}


li.filter-list__item label::before {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	border: solid 0.7px #999598;
	margin: 3px 7px -1px 0;
}
li.filter-list__item label:hover {
	outline: solid 0.7px #999598aa;
	outline-offset: 3px;
}
ul.filter-list [type="checkbox"] {
	width: 0;
	height: 0;
	opacity: 0;
	display: none;
	position: absolute;
}
li.filter-list__item label {
	padding: 2px 0;
	cursor: pointer;
	width: 100%;
}
li.filter-list__item input:checked ~ label {
	font-weight: 700;
}
li.filter-list__item input:checked ~ label::before {
	border-color: #111111;
}
li.filter-list__item input:checked ~ label::after {
	content: '';
	position: absolute;
	width: 7px;
	height: 7px;
	background: #fecc00;
	left: 2.6px;
	top: 7.4px;
}

.sidebar__promo-box {
	background: linear-gradient(-90deg, #ffd3e6, #ffe0ee);
	border-radius: 10px;
	/* padding: 30px; */
	text-align: center;
	/* position: relative; */
	/* overflow: hidden;*/
}

.promo-box__background {
position: absolute;
top: 0;
left: -100px;
opacity: 0.15;
z-index: 1;
}

.promo-box__content {
position: relative;
z-index: 2;
}

/* Main Content Styles */
.main-content {
	flex-grow: 1;
}

.banner {
	/*background: linear-gradient(-90deg, #ebc148, #ffed5e, #fff8b6);*/
	/*border-radius: 10px;*/
	/*padding: 30px 50px;*/
	/*display: flex;*/
	/*align-items: center;*/
	/*justify-content: space-between;*/
	/*position: relative;*/
	/*overflow: hidden;*/
	/*margin-bottom: 20px;*/
	/*flex-direction: row-reverse;*/
	margin-bottom: 2rem;
}
.banner-half {
	width: 100%;
	span.link.flex {
		font-size: 14px;
	}
}
.banner__background {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	opacity: 1;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-position: bottom;
	object-fit: none;
}
.banner__content {
	position: relative;
	z-index: 2;
}
.banner__image{
	position: relative;
	z-index: 2;
	width: 147px;
}
.banner__subtitle {
	font-family: 'ChakraPetch-Bold', sans-serif;
	color: #079600;
	font-size: 14px;
	text-transform: uppercase;
}
.banner__title {
	font-family: 'ChakraPetch-Bold', sans-serif;
	font-size: 30px;
}
.banner__link {
	font-size: 14px;
	color: #4a4849;
	text-decoration: underline;
}

.category-header {
	border-bottom: 1px solid #e8e8e8;
	padding-bottom: 20px;
	margin-bottom: 30px;
}

.category-header__title {
	font-family: 'ChakraPetch-Bold', sans-serif;
	font-size: 18px;
	margin-bottom: 10px;
}

.category-header__description {
	font-size: 14px;
	color: #4a4849;
	line-height: 24px;
}

.product-listing__toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}
.toolbar__view-options, .toolbar__sort-options {
	display: flex;
	align-items: center;
	gap: 11px;
}
.view-options__btn {
	opacity: 0.25;
	border: solid 1px #888;
	transition: opacity .23s;
}
.view-options__btn--active, .view-options__btn:hover {
	opacity: 1;
}
.toolbar__view-options img {
	filter: brightness(0);
}
.toolbar__product-count {
	font-size: 11px;
	color: #808080;
}
.sort-options__select {
	border: 1px solid #ededed;
	padding: 10px;
	font-size: 12px;
	color: #999598;
	width: 313px;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 30px;
}

.product-card {
	border: 1px solid #d6d5d6;
	text-align: center;
	padding: 12px;
	position: relative;
}
.product-card__image-container {
	position: relative;
	margin-bottom: 10px;
}
.product-card__image {
	max-width: 100%;
	height: auto;
}
.product-card__badges {
	position: absolute;
	top: 5px;
	left: 5px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.badge {
	color: #ffffff;
	padding: 2px 8px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 4px;
}
.badge--sale { background: #fb0018; }
.badge--new { background: #bf9900; }
.product-card__content {
	text-align: left;
}
.product-card__title {
	font-family: 'ChakraPetch-Bold', sans-serif;
	font-size: 14px;
	min-height: 40px;
}
.product-card__rating {
	margin: 8px 0;
}
.product-card__category {
	font-size: 12px;
	color: #999598;
	margin-bottom: 8px;
	padding-right: 35px;
}
.product-card__price {
	display: flex;
	gap: 10px;
	align-items: baseline;
	font-family: 'ChakraPetch-Bold', sans-serif;
}
.price__old {
	text-decoration: line-through;
	color: #999598;
	font-size: 14px;
}
.price__current {
	font-size: 16px;
	color: #fb0018;
}
.product-card__add-to-cart {
	position: absolute;
	bottom: 24px;
	right: 12px;
}

.pagination {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pagination__info {
	font-size: 12px;
	color: #4a4849;
}
.pagination__links {
	display: flex;
	gap: 2px;
}
.pagination__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 31px;
	font-size: 12px;
	color: #ffffff;
	background-color: #111111;
	transition: background-color .23s, opacity .23s;
}
a.pagination__link:hover {
	/*background-color: #ccc;*/
	color: #ffffff;
	opacity: .5;
}
.pagination__link--active {
	background-color: #ffd21d;
	color: #111111;
	pointer-events: none;
}
.pagination__link--next {
	background: none;
}
a.pagination__link.pagination__link--prev {
	rotate: 180deg;
}


.bar,
.bar * {
	box-sizing: border-box;
}
.bar {
	background: linear-gradient(to left, #fecc00, #fecc00);
	border-radius: 3.42px;
	border-style: solid;
	border-color: var(--standard-colors-grey-iv, #4a4849);
	border-width: 0.86px;
	width: 221px;
	height: 5px;
	position: relative;
}
.background {
	background: var(--standard-colors-black, #111111);
	border-radius: 3.42px;
	width: 99.55%;
	height: 60%;
	position: absolute;
	right: 0%;
	left: 0.45%;
	bottom: 20%;
	top: 20%;
}
.price-slider .noUi-handle.noUi-handle.noUi-handle {
	background: var(--brand-colors-tangerine-yellow, #fecc00);
	border-radius: 10px;
	border-style: solid;
	border-color: var(--standard-colors-black, #111111);
	border-width: 1px;
	width: 19px;
	height: 19px;
	margin-top: -2px;
	/*position: absolute;*/
	/*right: 93.67%;*/
	/*left: 0%;*/
	/*top: -4.14px;*/
}
.price-slider .noUi-target {
	background: none;
	border-radius: 0;
	border: 0;
	box-shadow: none;
}

.price-slider {
	padding-right: 8px;
	display: flex;
	flex-direction: column-reverse;
	.noUi-handle:after, .noUi-handle:before {
		content: "";
		display: block;
		position: absolute;
		height: 14px;
		width: 1px;
		background: #E8E7E6;
		left: 14px;
		top: 6px;
		opacity: 0;
	}
	.noUi-connects {
		background: #0003;
		height: 4px;
		margin-top: 5px;
	}
	.noUi-connect {
		background: #000;
		/*height: 4px;*/
		/*margin-top: 5px;*/
	}
	.noUi-handle.noUi-handle-upper {
		translate: -10px;
	}
}


/*.link2 {*/
/*	background: var(--brand-colors-tangerine-yellow, #fecc00);*/
/*	border-radius: 10px;*/
/*	border-style: solid;*/
/*	border-color: var(--standard-colors-black, #111111);*/
/*	border-width: 1px;*/
/*	width: 6.33%;*/
/*	height: 14px;*/
/*	position: absolute;*/
/*	right: -4.52%;*/
/*	left: 98.19%;*/
/*	top: -4.14px;*/
/*}*/

button.product-card__add-to-cart:hover {
	filter: invert(1) hue-rotate(187deg) brightness(0.9) contrast(1.5);
}

select#sort-by {
	cursor: pointer;
}
li.filter-list__item label[data-color="grey"]::before {
	background-color: #aab2bd;
}
li.filter-list__item label[data-color="white"]::before {
	background-color: #fff;
}
li.filter-list__item label[data-color="red"]::before {
	background-color: #e84c3d;
}
li.filter-list__item label[data-color="yellow"]::before {
	background-color: #fecc00;
}
.colors li.filter-list__item input:checked ~ label::after {
	background: none;
	outline: solid 1.7px #111;
	outline-offset: 3px;
}
section.product-listing.product-listing--list,
section.product-listing.product-listing--list2 {
	a.product-card__link {
		display: flex;
		gap: 15px;
		width: 100%;
	}
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.product-card {
		max-width: 100%;
	}
	.product-card__image-container {
		width: 33%;
		width: 200px;
	}
	.product-card__content {
		width: 66%;
		/*zoom: 1.1;*/
	}
	.product-card__title {
		font-size: 16px;
		min-height: 15px;
		padding-top: 5px;
		padding-bottom: 1px;
		line-height: 1.25;
	}
}
section.product-listing.product-listing--list {
	.product-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.product-card__content {
		/*width: 66%;*/
		zoom: 1.15;
	}
	.product-card__add-to-cart {
		left: 225px;
		right: auto;
	}
}
button#view-list2 {
	display: flex;
}
.category-list__item a {
	transition: translate .23s;
}
.category-list__item:not(.category-list__item--active) a:hover {
	translate: 8px 0;
	font-weight: 600;
}


.sidebar__promo-box {
	margin: 10px 0;
	.banner-half {
		border-radius: 10px;
		position: relative;
		overflow: hidden;
		padding: 20px 28px;
		align-items: start;
		flex-direction: column-reverse;
		height: auto;
	}
	.banner-half-text {
		position: relative;
		z-index: 1;
		width: 100%;
	}
	.banner-promo-image {
		position: static;
	}
	.banner-half-text {
		position: relative;
		z-index: 1;
		align-items: start;
		justify-content: start;
		text-align: left;
		zoom: .9;
		line-height: 1.2;
		h2 {
			font-size: 22px;
			margin: 8px 0 10px;
		}
	}
}