/*MAIN=============================================*/
body {
	position: relative;
}


.page {
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 1;
}

.page__shop {
	width: 100%;
	max-width: 1600px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	z-index: 1;
	padding-bottom: 50px;
}

/*NAV================================================*/
.nav__shop {
	width: 100%;
	max-width: 1400px;
	height: 50px;
	display: flex;
	align-items: center;
	padding: 0 50px 0 50px;
}

.nav__shop a {
	font-size: 14px;
	font-weight: 200;
	padding: 0 5px 5px 0;
}

.nav__shop a:hover {
	text-decoration: underline;
}

.shop__wrapper {
	width: 100%;
	max-width: 1600px;
	display: flex;
	padding: 0 50px;
}

/*container__title================================================*/
.container__title {
	width: 100%;
	max-width: 1400px;
	margin: 50px 0 0 0;
	padding: 0 50px;
}

.title__shop {
	border-left: solid 3px #fa8200;
	width: 100%;
	display: flex;
	flex-direction: column;
}


.simple__title {
	width: 100%;
	font-size: 20px;
	font-weight: 100;
	color: #323232;
	margin-left: 10px;
	text-transform: uppercase;
}

.basic__title {
	width: 100%;
	font-size: 60px;
	font-weight: 900;
	margin-top: 4px;
	color: #323232;
	margin-left: 10px;
}

/*filter__content  ==============================================*/
.form__filter {
	width: 26.6%;
	max-width: 500px;
	display: flex;
	justify-content: center;
}

.filter__block {
	width: 100%;
	display: flex;
	justify-content: center;
}

.filter__wrepper {
	width: 200px;
	max-width: 200px;
	height: auto;
	max-height: 580px;
	display: flex;
	flex-direction: column;
}

.filter__item {
	display: flex;
	flex-direction: column;
	width: 65%;
	max-width: 300px;
	height: auto;
	border-bottom: solid 2px #323232;
	padding-bottom: 20px;
}

.filter__title {
	font-size: 16px;
	font-weight: bold;
	padding: 20px 0;
}

.filter__content {
	display: flex;
	flex-direction: column;
	align-items: start;
}

.options__item {
	width: auto;
	padding: 5px 0;
}

.filter__button {
	background-color: transparent;
}

.checkbox {
	position: relative;
	width: 16px;
	height: 16px;
	display: inline-block;
	margin-right: 6px;
	min-width: 16px;
	border: 1px solid #999;
	border-radius: 1px;
}

.checked {
	background-color: #3296fa;
}

.checked::after {
	content: '';
	position: absolute;
	left: 4px;
	top: 1px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.none {
	display: none;
}

.label {
	font-size: 14px;
	font-weight: 200;
	color: #323232;
}

/*products  ==============================================*/
.products {
	width: 73.3%;
	max-width: 1100px;
	display: grid;
	gap: 50px 15px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	margin-top: 20px;
}

.product__wrapper {
	max-width: 500px;
}

.product__item {
	display: grid;
	grid-auto-flow: row;
	grid-template: auto 1fr minmax(40px, auto) / 1fr;
	position: relative;
}

.product__image {
	position: relative;
	padding: 0 0 100% 0;
	margin: 0 0 20px 0;
	overflow: hidden;
}

.product__image img {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	object-fit: cover;
	transition: all .2s ease;
}

.product__wrapper:hover {
	box-shadow: 0.3em 0.3em 1em rgba(0, 0, 0, 0.2);
}

.product__name {
	font-size: 16px;
	line-height: 20px;
	font-weight: 200;
	color: #323232;
	padding: 0 20px;
}

.price__number {
	font-size: 25px;
	font-weight: 700;
	color: #323232;
}

.price__currency {
	font-size: 22px;
	font-weight: 700;
	margin-top: 2px;
	color: #323232;
	justify-self: end;
}

.shop__price-old {
	display: inline-flex;
	align-items: end;
	text-decoration: line-through;
}

.price__currency-old,
.price__number-old {
	color: gray;
	font-size: 18px;
	font-weight: 200;
}

.shop__price-new {
	padding-left: 10px;
}

.product__item[data-promotion]::after {
	content: '-' attr(data-promotion) '%';
	position: absolute;
	width: 50px;
	max-width: 50px;
	height: 50px;
	background-color: #fa8200;
	font-size: 20px;
	color: #fff;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.custom__order {
	position: absolute;
	width: 120px;
	height: 30px;
	font-size: 14px;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
	border: solid 1px #323232;
	left: 0;
	top: 0;
}

.custom__order::after {
	content: 'If a product is listed as "Custom Order", it will be made specifically for you and will be available within the agreed timeframe. Payment is required before production begins.';
	position: absolute;
	top: 20px;
	left: 0;
	margin: 10px;
	padding-top: 25px;
	background: linear-gradient(#fff, 90%, transparent);
	font-size: 14px;
	font-weight: 400;
	line-height: 25px;
	color: #323232;
	white-space: normal;
	width: 250px;
	max-width: 250px;
	max-height: 0;
	z-index: 1000;
	opacity: 0;
	overflow: hidden;
	transform: translateY(-20px);
	transition: transform 1s ease, max-height 1s ease, opacity 1s ease;
}

.custom__order:hover::after {
	opacity: 1;
	max-height: 200px;
	transform: translateY(5px);
}

.custom__order:not(:hover)::after {
	opacity: 0;
	transform: translateY(-20px);
	max-height: 0;
}

.product__image a {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	object-fit: cover;
}

.block__image {
	width: 50%;
}

.block__image img {
	object-fit: cover;
	width: 100%;
}

.shop__price {
	padding: 10px 20px 10px 20px;
}

/*products  ==============================================*/
.features__wrapper {
	width: 100%;
	max-width: 1400px;
	height: auto;
	display: flex;
	flex-direction: column;
	position: relative;
	padding: 0 50px 50px 50px;
}

.details__title {
	font-size: 14px;
	font-weight: 200;
	line-height: 25px;
	margin: 20px 0 0 0;
	text-transform: none;
	text-align: justify;
}

.text__features {
	margin: 20px 0 0 0;
	font-size: 16px;
	font-weight: 900;
	text-transform: uppercase;
	text-align: justify;
}

.form__filter-name {
	display: none;
	width: 100%;
}

.form__filter-img {
	width: 30px;
	height: 30px;
}

.form__filter-title {
	font-size: 16px;
	font-weight: bold;
	padding-left: 15px;
	text-transform: uppercase;
}

/*@media    =============================1600*/
@media (max-width: 1600px) {
	.form__filter {
		width: auto;
	}

	.products {
		width: 100%;
	}

	.shop__wrapper {
		width: 100%;
		justify-content: center;
	}
}

/*@media    =============================1365*/
@media (max-width: 1365px) {
	.form__filter {
		width: auto;
	}

	.products {
		width: 85%;
	}

	.shop__wrapper {
		justify-content: start;
	}

	.filter__item {
		width: 65%;
		max-width: 200px;
	}
}

/*@media    =============================1280*/
@media (max-width: 1280px) {
	.products {
		width: 80%;
	}
}

/*@media    =============================950*/
@media (max-width: 950px) {
	.products {
		width: 75%;
	}
}

/*@media    =============================700*/
@media (max-width: 700px) {
	.form__filter {
		width: 40%;
	}

	.products {
		width: 60%;
	}
}

/*@media    =============================500*/
@media (max-width: 500px) {
	.form__filter-name {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 15px;
	}

	.form__filter {
		z-index: 200;
		width: 100%;
		height: 50px;
		background: #e4e4e4;
		position: fixed;
		bottom: 0;
		right: 0;
	}

	.filter__block {
		z-index: 100;
		position: fixed;
		bottom: 0;
		right: 0;
		height: 0;
		background-color: #fff;
		overflow-y: auto;
		width: 100vw;
		max-width: none;
		opacity: 0;
		transform: translateY(100%);
		transition: transform 1s ease, height 1s ease, opacity .3s ease;
	}

	.filter__block-activ {
		opacity: 1;
		height: 100vh;
		transform: translateY(0);
		padding: 50px 15px 0 15px;
	}

	.filter__wrepper {
		position: relative;
		top: 150px;
	}

	.filter__button {
		width: 100%;
	}

	.products {
		width: 100%;
	}

	.basic__title {
		font-size: 50px;
	}

	.filter__title {
		font-size: 20px;
	}

	.label {
		font-size: 18px;
		font-weight: 200;
		color: #323232;
	}

	.filter__item {
		width: 100%;
	}
}

/*@media    =============================390*/
@media (max-width: 426px) {
	.nav__shop {
		padding: 0 15px;
	}

	.container__title {
		padding: 0 15px;
	}

	.basic__title {
		font-size: 40px;
	}

	.features__wrapper {
		padding: 0 15px;
	}
}