header {
	background: var(--White);
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(45, 47, 46, 0.16);
}
header .wrapper,
.scrollPage .wrapper {
	max-width: 1800px;
	width: calc(100% - 120px);
}
.breadcrumbs-box {
	padding-top: 10px;
	margin-top: 155px;
	.breadcrumbs {
		margin-bottom: 35px;
	}
}
main * {
	color: var(--text-color);
	/* font-family: Lato; */
}
h1 {
	display: block;
}
section:not(.promo) {
	transform: none;
}
footer {
	padding: 50px 0;
	z-index: 0;
}
.product {
	margin-bottom: 150px;
	.wrapper {
		display: grid;
		grid-template-columns: 0.54fr 0.46fr;
		column-gap: 8.35%;
		.image-box {
			position: relative;
			margin-bottom: auto;
			display: grid;
			aspect-ratio: 895 / 711;
			width: 100%;
			gap: 4px;
			&:has(.bubbles-slider) {
				grid-template-columns: 0.2fr 0.8fr;
			}
			& .like {
				position: absolute;
				top: 20px;
				right: 20px;
				z-index: 2;
				background: transparent;
				&::before {
					content: '\e911';
					font-family: icon;
					font-size: 19px;
					line-height: 1;
					color: var(--text-color);
					transition: 0.2s linear;
				}
				&.active::before {
					content: '\e913';
					color: var(--hover);
				}
			}
			.bubbles-slider {
				position: relative;
				display: flex;
				flex-direction: column;
				align-items: center;
				height: 100%;
				width: 100%;
				:is(.arrow-l, .arrow-r) {
					position: relative;
					z-index: 1;
					width: 32px;
					display: flex;
					align-items: center;
					justify-content: center;
					aspect-ratio: 1/1;
					border-radius: 3px;
					background-color: rgba(255, 255, 255, 0.2);
					transition: background-color 0.2s linear;
					transform: rotate(90deg);
					&[disabled] {
						cursor: not-allowed;
						opacity: 0.5;
					}
					&::before {
						content: '\e90f';
						font-family: icon;
						line-height: 1;
						transition: color 0.2s linear;
					}
				}
				.arrow-r {
					margin-top: auto;
					transform: rotate(-90deg);
				}
				.slides {
					position: absolute;
					left: 0;
					top: 0;
					width: 100%;
					height: 100%;
					display: flex;
					flex-direction: column;
					gap: 4px;
					overflow-y: auto;
					scroll-behavior: smooth;
					scrollbar-width: none;
					&::-webkit-scrollbar {
						width: 0;
						height: 0;
						background: transparent;
						display: none;
					}
					img {
						object-fit: cover;
						width: 100%;
						cursor: pointer;
						aspect-ratio: 1 / 1;
						&.active {
							border: 1px solid rgba(45, 47, 46, 0.36);
						}
					}
				}
			}
			.modal-slider {
				position: relative;
				overflow: hidden;
				transition: 0.5s linear;
				:is(.arrow-l, .arrow-r) {
					position: absolute;
					left: 60px;
					top: 50%;
					z-index: 1;
					width: 32px;
					display: none;
					align-items: center;
					justify-content: center;
					aspect-ratio: 1/1;
					border-radius: 3px;
					background-color: rgba(255, 255, 255, 0.2);
					transform: translateY(-50%);
					transition: background-color 0.2s linear;
					&[disabled] {
						cursor: not-allowed;
						opacity: 0.5;
					}
					&::before {
						content: '\e90f';
						font-family: icon;
						line-height: 1;
						transition: color 0.2s linear;
					}
				}
				.arrow-r {
					left: initial;
					right: 60px;
					transform: translateY(-50%) rotate(-180deg);
				}
				.close {
					display: none;
				}
				.slides {
					position: relative;
					display: grid;
					grid-template-columns: 1fr;
					width: 100%;
					height: 100%;
					aspect-ratio: 1;
					img {
						cursor: url(../images/cursor1.png) 62.5 62.5, default;
						position: absolute;
						grid-column: 1/2;
						grid-row: 1/2;
						width: 100%;
						height: 100%;
						object-fit: contain;
						aspect-ratio: 1;
						transform: translate3d(-100vw, 0, 0);
						transition: transform 0.5s linear;
						background-color: var(--White);
						&.active {
							z-index: 1;
							transform: translate3d(0, 0, 0);
							~ img {
								transform: translate3d(100vw, 0, 0);
							}
						}
					}
				}
			}
		}
		.content {
			margin-right: 90px;
			.top {
				padding: 6px 0;
				display: grid;
				grid-template-columns: 1fr auto;
				column-gap: 20px;
				justify-content: space-between;
				h1 {
					text-transform: capitalize;
				}
				p {
					grid-column: span 2;
					text-align: right;
					font-weight: 300;
					font-size: 14px;
					text-transform: lowercase;
				}
			}
			form {
				border-top: 1px solid #2d2f2e;
				display: grid;
				align-items: center;
				grid-template-columns: 1fr auto;

				.select {
					width: max-content;
					min-width: 75px;
					background: #f0f0f0;
					border-radius: 3px;
					display: flex;
					flex-direction: column;
					cursor: pointer;
					padding: 2px 5px;
					position: relative;
					color: rgb(243, 229, 171);
					&::after {
						content: '';
						position: absolute;
						top: 0;
						right: 0;
						left: 0;
						bottom: 0;
						border: 1px solid #fff;
						border-bottom: none;
						border-top-left-radius: 3px;
						border-top-right-radius: 3px;
					}
					p {
						color: rgba(45, 47, 46, 0.73);
						font-family: Lato;
						font-size: 16px;
						font-style: normal;
						font-weight: 400;
						line-height: 20px;
						text-transform: lowercase;
						display: flex;
						align-items: center;
						gap: 6px;
						justify-content: space-between;
						position: relative;
						z-index: 3;
						&::after {
							content: '\e90f';
							font-family: 'icon';
							font-size: 10px;
							width: 16px;
							height: 16px;
							display: flex;
							justify-content: center;
							align-items: center;
							transform: rotate(270deg);
							transition: .3s linear;
						}
					}
					&.open {
						p::after {
							transform: rotate(90deg);
						}
						.items {
							max-height: 200px;
						}
					}
					.items {
						position: absolute;
						display: flex;
						flex-direction: column;
						gap: 10px;
						background: #f0f0f0;
						box-shadow: 0px 6px 10px 0px rgba(45, 47, 46, 0.10);
						width: 100%;
						z-index: 3;
						padding: 0 5px;
						top: 100%;
						left: 0;
						border-bottom-left-radius: 3px;
						border-bottom-right-radius: 3px;
						max-height: 0;
						transition: .3s linear;
						overflow: hidden;
						&::after {
							content: '';
							position: absolute;
							top: 0;
							right: 0;
							left: 0;
							bottom: 0;
							border: 1px solid #fff;
							border-top: none;
							border-bottom-left-radius: 3px;
							border-bottom-right-radius: 3px;
						}
						a {
							color: rgba(45, 47, 46, 0.73);
							font-family: Lato;
							font-size: 16px;
							font-style: normal;
							font-weight: 400;
							line-height: normal;
							text-transform: lowercase;
							transition: .3s linear;
							position: relative;
							z-index: 2;
							&:hover {
								color: #ffcbc2;
							}
							&:first-child {
								margin-top: 10px;
							}
							&:last-child {
								margin-bottom: 7px;
							}
						}
					}
				}
				.select-color {
					min-width: 119px;
					padding: 0;
					p {
						padding: 2px 4px 2px 2px;
						align-items: center;
						span {
							display: block;
							width: 20px;
							height: 20px;
							border-radius: 50%;
						}
					}
					.items {
						padding: 0px 4px 0 2px;
						a {
							display: flex;
							gap: 6px;
							line-height: 20px;
							align-items: center;
							span {
								display: block;
								width: 20px;
								height: 20px;
								border-radius: 50%;
							}
						}
					}
				}
				fieldset {
					display: grid;
					grid-template-columns: repeat(3, 1fr);
					gap: 8px;
					padding: 4px 6px;
					border-left: 1px solid #2d2f2e;
					border-top: none;
					border-bottom: none;
					border-right: none;
					> * {
						width: 24px;
						height: 24px;
					}
					input {
						padding: 0;
						font-size: 14px;
						border-color: transparent;
						color: rgba(45, 47, 46, 0.73);
					}
					button {
						position: relative;
						display: flex;
						align-items: center;
						justify-content: center;
						background-color: transparent;
						&::before,
						&::after {
							content: '';
							position: absolute;
							left: 50%;
							top: 50%;
							transform: translate(-50%, -50%);
							width: 18px;
							height: 1px;
							transition: background-color 0.2s linear;
							background-color: #666766;
						}
						&:last-child::after {
							transform: translate(-50%, -50%) rotate(90deg);
						}
					}
				}
				button.dark-btn {
					grid-column: span 2;
					font-size: 12px;
					line-height: 1.16;
					padding: 10px;
				}
			}
		}
	}
}
.spoiler {
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid rgba(45, 47, 46, 0.16);
	&.open .head span {
		transform: rotate(135deg);
		transition: transform 0.3s linear;
	}
	.head {
		display: flex;
		gap: 30px;
		justify-content: space-between;
		padding: 4px 6px 4px 0;
		color: rgba(45, 47, 46, 0.73);
		font-family: Lato;
		font-size: 14px;
		font-weight: 400;
		text-transform: lowercase;
		cursor: pointer;
		transition: color 0.2s linear;
		span {
			position: relative;
			width: 24px;
			aspect-ratio: 1/1;
			flex-wrap: nowrap;
			display: flex;
			transition: transform 0.2s linear;
			&::before,
			&::after {
				content: '';
				position: absolute;
				left: 50%;
				top: 50%;
				width: 18px;
				height: 1px;
				background-color: var(--text-color);
				transition: background-color 0.2s linear;
				transform: translate(-50%, -50%);
			}
			&::after {
				transform: translate(-50%, -50%) rotate(90deg);
			}
		}
	}
	.box {
		overflow: hidden;
		max-height: 0;
		transition: max-height 0.4s linear;
		.content {
			display: flex;
			flex-direction: column;
			gap: 10px;
			color: rgba(45, 47, 46, 0.73);
			font-size: 14px;
			font-weight: 300;
			margin-bottom: 20px;
			* {
				color: rgba(45, 47, 46, 0.73);
				font-weight: 300;
			}
			:is(div, p) {
				font-size: 14px;
			}
		}
	}
}
.certificates-content {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: rgba(45, 47, 46, 0.73);
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 20px;
	> * {
		color: rgba(45, 47, 46, 0.73);
		font-weight: 300;
	}
	:is(div, p) {
		font-size: 14px;
	}
}
.call-manager-modal {
	display: none;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(24, 23, 28, 0.4);
	z-index: 1000;
	overflow-y: auto;
	scrollbar-width: none;
	&.active {
		display: flex;
	}
	.window-body {
		width: calc(100% - 40px);
		max-width: 600px;
		background: var(--White);
		position: absolute;
		top: -420px;
		padding: 30px 30px 51px 30px;
		animation: show-feedback 0.5s forwards;
		*:not(.dark-btn) {
			color: var(--text-color);
		}
		.top {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 20px;
			border-bottom: none;
			margin-bottom: 20px;
			h2 {
				font-size: 18px;
			}
			.close {
				background: none;
				outline: none;
				border: none;
				&::before {
					content: '\e909';
					font-family: icon;
					line-height: 1;
					font-weight: 100;
					font-size: 20px;
					transition: color 0.2s linear;
				}
			}
		}
		form {
			display: flex;
			flex-direction: column;
			gap: 20px;
			.label {
				position: relative;
				display: block;
				padding-bottom: 4px;
				width: 100%;
				cursor: pointer;
				border: none;
				margin-top: 20px;
				border-bottom: 1px solid rgba(45, 47, 46, 0.5);
				&.active span {
					transform: translateY(calc(-50% - 12px))
				}
				&:has(.valid)::after {
					content: '\e910';
					position: absolute;
					bottom: 5px;
					right: 5px;
					font-size: 12px;
					font-family: icon;
					color: #34A476;
				}
				input {
					border: none;
					padding: 0 22px 0 0;
					text-align: left;
					&:focus-visible,
					&:-internal-autofill-selected {
						+ span {
							transform: translateY(calc(-50% - 12px));
						}
					}
				}
				span {
					color: rgba(45, 47, 46, 0.36);
					position: absolute;
					left: 5px;
					bottom: 4px;
					font-size: 12px;
					transition: transform 0.2s linear;
				}
			}
			:where(input, textarea) {
				padding: 10px;
				&:autofill,
				&:-webkit-autofill,
				&:-webkit-autofill:hover,
				&:-webkit-autofill:focus,
				&:-webkit-autofill:active {
					-webkit-box-shadow: 0 0 0 30px #fff inset !important;
					-webkit-text-fill-color: var(--text-color);
				}
			}
			textarea {
				height: 80px;
				resize: none;
				padding: 10px;
				border: 1px solid rgba(45, 47, 46, 0.5);
				&::placeholder {
					font-size: 12px;
				}
			}
		}
	}
}
.purchase-modal {
	display: none;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(24, 23, 28, 0.4);
	z-index: 1000;
	overflow-y: auto;
	scrollbar-width: none;
	&.active {
		display: flex;
	}
	.window-body {
		width: calc(100% - 40px);
		max-width: 520px;
		background: var(--White);
		position: absolute;
		top: -420px;
		padding: 30px 30px 51px 30px;
		animation: show-feedback 0.5s forwards;
		*:not(.dark-btn) {
			color: var(--text-color);
		}
		.top {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 20px;
			border-bottom: none;
			margin-bottom: 20px;
			h2 {
				font-size: 18px;
			}
			.close {
				background: none;
				outline: none;
				border: none;
				&::before {
					content: '\e909';
					font-family: icon;
					line-height: 1;
					font-weight: 100;
					font-size: 20px;
					transition: color 0.2s linear;
				}
			}
		}
		p {
			color: var(--text-color);
			font-size: 14px;
			line-height: 120%;
			margin-bottom: 15px;
		}
		a {
			color: var(--text-color);
			font-size: 16px;
			text-decoration: underline;
			line-height: 133%;
		}
	}
}
@keyframes show-feedback {
	0% {
		top: -420px;
	}
	100% {
		top: calc(50% - 210px);
	}
}
.call-manager-done {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100dvh;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	z-index: 100;
	&.active {
		display: flex;
	}
	.content {
		position: relative;
		width: min(560px, 100%);
		padding: 50px 80px;
		background: #fff;
		:is(div, p, .close-modal) {
			color: var(--text-color);
		}
		.close-modal {
			position: absolute;
			right: 10px;
			top: 10px;
			width: 24px;
			aspect-ratio: 1/1;
			display: flex;
			background: transparent;
			align-items: center;
			justify-content: center;
			&::before {
				content: '\e915';
				line-height: 1;
				font-family: icon;
				font-size: 23px;
				transition: color 0.2s linear;
			}
		}
		div {
			text-align: center;
			font-size: 20px;
			text-transform: uppercase;
		}
		p {
			margin: 20px 0 40px;
			text-align: center;
		}
		.dark-btn {
			display: block;
		}
	}
}
@media screen and (max-width: 1500px) {
	header .wrapper,
	.scrollPage .wrapper {
		width: calc(100% - 80px);
		padding: 0;
	}
	.product {
		margin-bottom: 80px;
		.wrapper {
			grid-template-columns: 0.51fr 0.49fr;
			column-gap: 3.3%;
			.content {
				margin-right: 0;
			}
		}
	}
	.call-manager-done .content {
		width: min(405px, 100%);
		padding: 40px 30px;
		div {
			font-size: 18px;
		}
		p {
			font-size: 14px;
		}
	}
}
@media screen and (max-width: 1279px) {
	header .wrapper,
	.scrollPage .wrapper {
		width: calc(100% - 40px);
	}
	header {
		padding-bottom: 10px;
		> .wrapper {
			padding-bottom: 6px !important;
		}
		.bottom-menu .body {
			margin-top: 30px !important;
		}
	}
	.breadcrumbs-box {
		margin-top: 170px;
		.breadcrumbs {
			margin-bottom: 30px;
		}
	}
}
@media screen and (min-width: 768px) {
	.breadcrumbs-box {
		margin-top: 165px;
	}
	.product .wrapper .image-box .modal-slider.open {
		position: fixed;
		left: 0;
		top: 0;
		width: 100vw;
		height: 100dvh;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 10;
		background: rgba(0, 0, 0, 0.2);
		backdrop-filter: blur(10px);
		.close {
			position: absolute;
			display: flex;
			align-items: center;
			justify-content: center;
			z-index: 11;
			top: 40px;
			right: 60px;
			width: 24px;
			height: 24px;
			cursor: pointer;
			&::before {
				content: '\e909';
				font-family: icon;
				line-height: 1;
				font-size: 20px;
				transition: color 0.2s linear;
			}
		}
		:is(.arrow-l, .arrow-r) {
			display: flex;
		}
		.slides {
			width: 70vw;
			max-width: 1200px;
			max-height: calc(100dvh - 144px);
			aspect-ratio: 1200/815;
			height: auto;
			img {
				cursor: auto;
				&.active {
					z-index: 1;
				}
			}
		}
	}
}
@media screen and (max-width: 767px) {
	.breadcrumbs-box {
		padding-top: 6px;
	}
	.scrollPage {
		.wrapper {
			width: calc(100% - 20px);
		}
		.product .wrapper {
			display: flex;
			flex-direction: column;
			gap: 20px;
			.image-box {
				grid-template-columns: 1fr;
				aspect-ratio: 1;
				.bubbles-slider {
					display: none;
				}
				.modal-slider {
					aspect-ratio: 1;
					:is(.arrow-r, .arrow-l) {
						display: flex;
						z-index: 2;
						width: 24px;
					}
					.arrow-l {
						left: 0;
					}
					.arrow-r {
						right: 0;
					}
					/* .slides {
						aspect-ratio: 37 / 36;
					} */
				}
			}
		}
	}
}
@media screen and (hover: hover) {
	.product .wrapper {
		.image-box :is(.modal-slider, .bubbles-slider) {
			.close:hover::before {
				color: var(--hover);
			}
			:is(.arrow-r, .arrow-l):not([disabled]):hover {
				background-color: rgba(255, 255, 255, 0.6);
				&::before {
					color: var(--hover);
				}
			}
		}
		.content form fieldset button:hover {
			&::before,
			&::after {
				background-color: #2D2F2E;
			}
		}
	}
	.spoiler .head:hover {
		color: rgba(45, 47, 46, 1);
		span {
			&::before,
			&::after {
				background-color: var(--hover);
			}
		}
	}
	.call-manager-done .content .close-modal:hover::before {
		color: var(--hover);
	}
}