/*null*/
* {
	padding: 0;
	margin: 0;
	border: 0;
}

*, *:before, *:after {
	box-sizing: border-box;
}

:focus, :active {
	outline: none;
}

a:focus, a:active {
	outline: none;
}

nav, footer, header, aside {
	display: block;
}

html, body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input, button, textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a, a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: 400;
}

/*null*/
@font-face {
	font-display: swap;
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 300;
	src: url("../fonts/montserrat-v29-cyrillic_latin-300.woff2") format("woff2");
}
@font-face {
	font-display: swap;
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/montserrat-v29-cyrillic_latin-regular.woff2") format("woff2");
}
@font-face {
	font-display: swap;
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 500;
	src: url("../fonts/montserrat-v29-cyrillic_latin-500.woff2") format("woff2");
}
@font-face {
	font-display: swap;
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 600;
	src: url("../fonts/montserrat-v29-cyrillic_latin-600.woff2") format("woff2");
}
@font-face {
	font-display: swap;
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 700;
	src: url("../fonts/montserrat-v29-cyrillic_latin-700.woff2") format("woff2");
}
@font-face {
	font-display: swap;
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 800;
	src: url("../fonts/montserrat-v29-cyrillic_latin-800.woff2") format("woff2");
}
body {
	font-family: "Montserrat";
	display: flex;
	flex-direction: column;
}

.wrapper {
	max-width: 1340px;
	margin: 0 auto;
}
@media (max-width: 1366px) {
	.wrapper {
		padding: 0 10px;
	}
}

.header__container {
	display: flex;
	justify-content: space-between;
}
.header__menu {
	padding: 52px 0 0 0;
}
@media (max-width: 1178px) {
	.header__menu {
		padding: 25px 0 0 0;
	}
}
.header__list {
	display: flex;
}
@media (max-width: 1178px) {
	.header__list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
}
@media (max-width: 856px) {
	.header__list {
		display: none;
		flex-direction: column;
		position: fixed;
		height: -moz-fit-content;
		height: fit-content;
		width: 100%;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 50;
		overflow: hidden;
		padding: 70px 0 50px 40px;
		background: linear-gradient(to bottom, #333, #333 50%, #333 75%, #eee 200%);
		animation: burger-animation 0.4s;
	}
}
.header__list-active {
	display: flex;
}
.header__item {
	padding: 0 0 0 30px;
}
@media (max-width: 1336px) {
	.header__item {
		padding: 0 0 0 15px;
	}
}
@media (max-width: 856px) {
	.header__item {
		padding: 6px 0 0 0;
	}
}
.header__buttons {
	padding: 35px 0 0 33px;
	display: flex;
}
@media (max-width: 1336px) {
	.header__buttons {
		padding: 35px 0 0 15px;
	}
}
@media (max-width: 856px) {
	.header__buttons {
		padding: 35px 67px 0 0;
	}
}
@media (max-width: 354px) {
	.header__buttons {
		padding: 64px 21px 0 0;
	}
}
.header__cart {
	padding: 10px 0 0 0;
}
.header__call {
	padding: 0 10px 0 24px;
}
@media (max-width: 614px) {
	.header__call {
		display: none;
	}
}

.cart {
	position: relative;
}
.cart__btn {
	background: transparent;
}
.cart__btn img:hover {
	transition: all 500ms;
	transform: scale(1.05);
}
.cart__count {
	background: #3d4f64;
	border-radius: 100%;
	position: absolute;
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	top: 4px;
	left: 70%;
}
.cart__count span {
	display: block;
	padding: 2px 4px;
}

.call__btn {
	display: block;
	text-wrap: nowrap;
	background: transparent;
	border: 3px solid #06cc0e;
	border-radius: 10px;
	padding: 14px 24px;
	font-weight: 700;
	font-size: 1.25rem;
	color: #000;
}
.call__btn:hover {
	transition: all 700ms;
	border: 3px solid #2982ff;
	transform: scale(1.05);
}

@keyframes burger-animation {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.burger {
	display: none;
	position: relative;
	z-index: 50;
	align-items: center;
	justify-content: flex-end;
	width: 30px;
	height: 18px;
	margin: 52px 15px 0 0;
	position: absolute;
	top: -5px;
	right: 15px;
}
@media (max-width: 856px) {
	.burger {
		display: flex;
	}
}
@media (max-width: 354px) {
	.burger {
		top: -20px;
		right: 17px;
	}
}
.burger:before, .burger:after {
	content: "";
	position: absolute;
	height: 2px;
	width: 100%;
	background: #000;
	transition: all 0.3s ease 0s;
}
.burger:before {
	top: 0;
}
.burger:after {
	bottom: 0;
}
.burger span {
	height: 2px;
	width: 100%;
	transform: scale(1);
	background: #000;
}

.burger-active {
	position: fixed;
}
.burger-active span {
	transform: scale(0);
}
.burger-active:before {
	top: 50%;
	transform: translateY(-50%);
	transform: rotate(45deg);
}
.burger-active:after {
	top: 50%;
	transform: translateY(-50%);
	transform: rotate(-45deg);
}

.menu__item a {
	text-wrap: nowrap;
	font-weight: 600;
	font-size: 16px;
	color: #7a7a7a;
	position: relative;
}
.menu__item a:after {
	content: "";
	position: absolute;
	width: 0%;
	height: 3px;
	background: #06cc0e;
	bottom: -3px;
	left: 0;
	transition: all 800ms;
}
.menu__item a:hover:after {
	width: 100%;
}

main {
	flex: 1 1 auto;
}

.btn {
	background: #3d4f64;
	font-weight: 700;
	font-size: 15px;
	color: #fff;
	padding: 15px 58px;
	border-radius: 11px;
	transition: all 500ms;
}
.btn:hover {
	transform: scale(1.1);
}

.title {
	font-weight: 800;
	font-size: 30px;
}
.title::before {
	content: "";
	background: #fcde15;
	width: 5px;
	height: 25px;
	position: absolute;
	margin: 2px 0 0 -10px;
}

.hero__container {
	padding: 40px 0 0 0;
	display: flex;
}
@media (max-width: 976px) {
	.hero__container {
		flex-direction: column;
	}
}
.hero__desc {
	position: relative;
}
@media (max-width: 976px) {
	.hero__desc {
		text-align: center;
	}
}
.hero__title {
	font-weight: 800;
	font-size: 28px;
	line-height: 143%;
	color: #000;
	padding: 0 67px 0 0;
}
@media (max-width: 1136px) {
	.hero__title {
		font-size: 24px;
	}
}
@media (max-width: 976px) {
	.hero__title {
		padding: 0 0 0 0;
	}
}
.hero__title span {
	font-size: 25px;
}
.hero__subtitle {
	font-weight: 500;
	line-height: 157%;
	color: #000;
}
.hero__subtitle p {
	padding: 20px 50px 0 0;
}
@media (max-width: 976px) {
	.hero__subtitle p {
		padding: 20px 0 0 0;
	}
}
.hero__btn {
	margin: 31px 0 0 0;
}
.hero__back {
	position: absolute;
	display: block;
	top: 54%;
	left: 49%;
	z-index: -1;
	width: 25%;
}
@media (max-width: 976px) {
	.hero__back {
		top: 27%;
		left: 69%;
	}
}

.swiper {
	width: 100%;
	height: 100%;
}
@media (max-width: 976px) {
	.swiper {
		margin: 40px 0 0 0;
		width: 70vw;
	}
}
@media (max-width: 570px) {
	.swiper {
		width: 85vw;
		height: 50vw;
	}
}
.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.catalog__container {
	padding: 45px 0 0 0;
	display: flex;
	justify-content: space-between;
}
@media (max-width: 664px) {
	.catalog__container {
		justify-content: center;
	}
}
.catalog__desc {
	min-width: 50%;
}
.catalog__menu {
	padding: 20px 0 0 0;
}
.catalog__item {
	position: relative;
	padding: 12px 0 12px 0;
}
.catalog__item a {
	font-weight: 700;
	color: #242424;
}
.catalog__item a:after {
	content: "";
	position: absolute;
	width: 80%;
	height: 1px;
	background: #9a9a9a;
	bottom: -3px;
	left: 0;
	transition: all 500ms ease;
}
@media (max-width: 664px) {
	.catalog__item a:after {
		width: 100%;
	}
}
.catalog__item a:hover:after {
	background: #fcde15;
}
.catalog__btn {
	margin: 26px 0 0 0;
}
.catalog__img {
	padding: 30px 0 0 50px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
@media (max-width: 940px) {
	.catalog__img {
		padding: 30px 0 0 10px;
	}
}
@media (max-width: 664px) {
	.catalog__img {
		display: none;
	}
}
.catalog__img img {
	width: 100%;
	height: auto;
	max-width: 100%;
}

.services__container {
	padding: 45px 0 0 0;
}

@keyframes slide {
	0% {
		opacity: 0;
		transform: translateY(-10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
details[open] summary + * {
	animation: slide 400ms ease-in-out;
}

.details {
	border-bottom: 1px solid #e5e5e5;
	padding: 35px 0 35px 0;
	margin: 0 0 0 50px;
	position: relative;
	display: block;
}
.details__title {
	list-style: none;
	font-weight: 700;
	font-size: 16px;
	color: #535353;
	display: block;
	padding: 0 50px 0 0;
}
.details__title:hover {
	cursor: pointer;
}
.details__title:hover .details__icon {
	transform: scale(120%);
	transition: all 500ms ease;
}
.details__title::after {
	position: absolute;
	right: 24px;
	top: 32px;
	content: "";
	width: 14px;
	height: 14px;
	border-right: 3px solid #fcde15;
	border-bottom: 3px solid #fcde15;
	transform: rotate(45deg);
	transition: all 500ms ease;
}
.details[open] .details__title::after {
	transform: rotate(-135deg);
}
.details__icon {
	position: absolute;
	top: 30px;
	left: -55px;
}
.details__content {
	font-size: 14px;
	line-height: 171%;
	color: #444444;
	max-width: 90%;
	text-wrap: balance;
}
.details__subtitle {
	font-weight: 700;
	padding: 18px 0 0 0;
}
.details__item {
	position: relative;
	padding: 5px 0 0 10px;
}
.details__item::before {
	content: "";
	width: 6px;
	height: 6px;
	position: absolute;
	top: 13px;
	left: 0px;
	border-radius: 100%;
	background: #06cc0e;
}

.popular__container {
	padding: 44px 0 0 0;
}
.popular__cards {
	padding: 66px 0 0 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, 302px);
	grid-auto-rows: 1fr;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.popular__btn {
	padding: 34px 0 0 0;
	text-align: center;
}
.popular__btn button {
	border: 1px solid #000;
}

.card {
	background: #fff;
	border: 1px solid #eaeaea;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.card:hover {
	box-shadow: 0 4px 30px 0 rgba(255, 201, 79, 0.3);
}
.card__wrapper {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.card__img {
	padding: 10px;
	width: 100%;
	height: 50%;
}
.card__img img {
	border-radius: 45px;
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
}
.card__title {
	padding: 17px 0 0 0;
	text-align: center;
	font-weight: 700;
	color: #535353;
}
.card__list {
	padding: 11px 0 0 42px;
}
.card__item {
	font-weight: 300;
	position: relative;
	color: #8c8c8c;
}
.card__item:not(:first-child) {
	margin: 10px 0 0 0;
}
.card__item::before {
	content: "";
	background: #ffc94f;
	border-radius: 3px;
	width: 5px;
	height: 6px;
	position: absolute;
	top: 4px;
	left: -12px;
}
.card__price {
	font-weight: 700;
	font-size: 20px;
	color: #535353;
	padding: 23px 0 0 28px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: auto;
}
.card__price span {
	margin: 0 0 0 5px;
}
.card__buttons {
	display: flex;
	justify-content: space-between;
	padding: 40px 0 0 0;
	align-items: flex-end;
}
.card__btn {
	width: 100%;
	border-radius: 0;
}
.card__btn:hover {
	transform: none;
}
.card__btn-add {
	width: 17%;
	height: 100%;
	font-weight: 700;
	font-size: 24px;
	color: #535353;
	background: #fff;
	border: 1px solid #eaeaea;
}
.card__btn-add:hover {
	transition: all 700ms;
	background: #bba409;
}

.consult__wrapper {
	position: relative;
}
.consult__container {
	padding: 73px 0 17px 0;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.consult__title {
	padding: 56px 0 0 0;
	text-align: center;
	font-weight: 800;
	font-size: 24px;
	line-height: 142%;
	color: #535353;
}
.consult__title::before {
	content: "";
	background: url(../img/icons/icon-ask.svg);
	width: 164px;
	height: 164px;
	position: absolute;
	top: 80px;
	left: 15%;
	z-index: -1;
}

.form {
	width: 300px;
}
.form__wrapper {
	display: flex;
	flex-direction: column;
}
.form__item {
	width: 100%;
	margin: 23px 0 0 0;
	border-bottom: 1px solid #efefef;
	resize: none;
	font-size: 14px;
	color: #535353;
	background: transparent;
}
.form__btn {
	margin: 36px 0 0 0;
	width: 100%;
}
.form__block-check {
	padding: 10px 0 0 0;
	font-size: 12px;
	color: #cfd0d3;
	text-align: center;
}
.form__block-check a {
	color: #cfd0d3;
	text-decoration: underline;
}

.btn-up {
	display: none;
}
.btn-up-active {
	display: block;
	position: fixed;
	right: 20px;
	bottom: 20px;
	cursor: pointer;
	z-index: 2;
}

.breadcrumbs__container {
	padding: 20px 0 0 0;
}
.breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
}
.breadcrumbs__item:not(:last-child)::after {
	content: "-";
	margin: 0 7px;
}
.breadcrumbs__item:not(:last-child) a {
	border-bottom: 1px solid #525252;
}
.breadcrumbs__item a {
	font-weight: 500;
	font-size: 0.75rem;
	color: #7c7c7c;
}

.catalog-page__container {
	padding: 30px 0 0 0;
	display: flex;
	flex-direction: column;
}
.catalog-page__title {
	font-weight: 800;
	font-size: 30px;
}
.catalog-page__list {
	display: flex;
	flex-wrap: wrap;
}
.catalog-page__list a {
	text-wrap: nowrap;
	font-weight: 500;
	color: #535353;
}
.catalog-page__item {
	border-radius: 2px;
	border: 1px solid #e5e5e5;
	padding: 10px 27px;
	margin: 14px 10px 0 0;
	flex: 1 1 auto;
	text-align: center;
}
@media (max-width: 474px) {
	.catalog-page__item {
		padding: 5px 10px;
		margin: 6px 10px 0 0;
	}
}
.catalog-page__item:hover {
	box-shadow: 0 0 15px 0 rgba(255, 201, 79, 0.3);
	background: #3d4f64;
	transition: all 300ms ease;
}
.catalog-page__item:hover span {
	color: #fff;
}
.catalog-page__item-active {
	box-shadow: 0 0 15px 0 rgba(255, 201, 79, 0.3);
	background: #3d4f64;
	transition: all 300ms ease;
}
.catalog-page__item-active span {
	color: #fff;
}
.catalog-page__item a {
	text-wrap: nowrap;
	font-weight: 500;
	color: #535353;
}
.catalog-page__cards {
	padding: 32px 0 0 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
	overflow: hidden;
	transition: opacity 0.3s ease;
}
@media (max-width: 1317px) {
	.catalog-page__cards {
		justify-content: center;
	}
}
@media (max-width: 1024px) {
	.catalog-page__cards {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}
}
@media (max-width: 768px) {
	.catalog-page__cards {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 20px;
	}
}
@media (max-width: 474px) {
	.catalog-page__cards {
		grid-template-columns: 1fr;
		gap: 15px;
	}
}
.catalog-page__card {
	transition: opacity 0.4s ease, transform 0.5s ease;
	will-change: transform, opacity;
}

.pagination {
	display: flex;
	padding: 36px 0;
	align-self: center;
}
.pagination__arrow-left {
	padding: 5px 6px 0 0;
}
.pagination__arrow-right {
	padding: 5px 0 0 6px;
}
.pagination__list {
	display: flex;
}
.pagination__list a {
	text-transform: uppercase;
	color: #464855;
	display: block;
}
.pagination__container {
	padding: 0 7px;
}
.pagination__item {
	text-align: center;
	padding: 4px 0 0 0;
	margin: 0 7px;
	border: 1px solid #ececec;
	border-radius: 2px;
	width: 24px;
	height: 24px;
	transition: all 500ms;
}
.pagination__item:hover {
	background: #ffc94f;
}
.pagination__item.active {
	background: #ffc94f;
	font-weight: bold;
}

.product {
	transition: transform 0.4s ease, opacity 0.3s ease;
}
.product__container {
	padding: 30px 0 0 0;
}
.product__info {
	display: flex;
}
@media (max-width: 778px) {
	.product__info {
		flex-direction: column;
		align-items: center;
	}
}
.product__feature {
	padding: 35px 0 0 113px;
	transition: all 700ms ease;
}
@media (max-width: 1206px) {
	.product__feature {
		padding: 35px 0 0 50px;
	}
}
@media (max-width: 927px) {
	.product__feature {
		padding: 35px 0 0 30px;
	}
}
@media (max-width: 778px) {
	.product__feature {
		padding: 25px 0 0 0;
	}
}
.product__accordion {
	padding: 50px 0 0 0;
}
.product__subtitles {
	display: flex;
	justify-content: space-between;
	transition: all 0.3s ease;
}
@media (max-width: 641px) {
	.product__subtitles {
		flex-wrap: wrap;
	}
}
.product__subtitle {
	border: 1px solid #ededed;
	flex: 1 1 auto;
	transition: all 400ms ease;
}
@media (max-width: 641px) {
	.product__subtitle {
		width: 100%;
	}
}
.product__subtitle:hover {
	background: #3d4f64;
}
.product__subtitle:hover span {
	color: #fff;
}
.product__subtitle span {
	display: block;
	padding: 10px 0;
	text-align: center;
	font-weight: 600;
	font-size: 16px;
	color: #535353;
	transition: all 400ms ease;
}
.product__subtitle-active {
	background: #3d4f64;
}
.product__subtitle-active span {
	color: #fff;
}
.product__item {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: all 400ms ease-out;
}
.product__item-active {
	max-height: 1500px;
	opacity: 1;
}
.product__desc {
	padding: 22px 0 0 0;
	color: #000;
	font-weight: 500;
}
.product__list {
	padding: 10px 0 0 0;
}
.product__list li {
	position: relative;
	padding: 12px 0 0 12px;
}
.product__list li:before {
	content: "";
	width: 6px;
	height: 6px;
	position: absolute;
	top: 16px;
	left: 0px;
	border-radius: 100%;
	background: #06cc0e;
}

.gallery__wrapper {
	display: flex;
	align-items: center;
}
.gallery__container {
	display: flex;
	flex-direction: column;
}
.gallery__arrow-up {
	padding: 0 0 10px 0;
}
.gallery__arrow-up button {
	width: 100%;
	background: transparent;
	border: 1px solid #ededed;
	padding: 0 0 3px 0;
}
.gallery__arrow-up button:hover {
	border: 1px solid #ffc94f;
	transition: all 700ms ease;
}
.gallery__arrow-down {
	padding: 10px 0 0 0;
}
.gallery__arrow-down button {
	width: 100%;
	background: transparent;
	border: 1px solid #ededed;
	padding: 0 0 3px 0;
}
.gallery__arrow-down button:hover {
	border: 1px solid #ffc94f;
	transition: all 700ms ease;
}
.gallery__thumb {
	display: block;
	width: 80px;
	height: 80px;
	border: 1px solid #ddd;
	transition: border-color 0.3s;
}
.gallery__thumb.active {
	border-color: #f3a800;
}
.gallery__thumb img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
@media (max-width: 768px) {
	.gallery__thumb {
		flex-shrink: 0;
	}
}
.gallery__images {
	display: grid;
	gap: 20px;
	overflow-y: auto;
	max-height: 286px;
	scroll-behavior: smooth;
}
.gallery__images::-webkit-scrollbar {
	display: none;
}
@media (max-width: 778px) {
	.gallery__images {
		gap: 10px;
		max-height: 266px;
	}
}
.gallery__images img {
	max-height: 100%;
}
.gallery__img {
	padding: 0px 0 0 96px;
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
@media (max-width: 856px) {
	.gallery__img {
		padding: 0px 0 0 30px;
	}
}
@media (max-width: 361px) {
	.gallery__img {
		padding: 0px 0 0 10px;
	}
}
.gallery__img img {
	max-width: 247px;
	height: auto;
}
@media (max-width: 350px) {
	.gallery__img img {
		max-width: 99%;
	}
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}
.overlay.active {
	opacity: 1;
	pointer-events: all;
}
.overlay .big-image {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: white;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}
.overlay .big-image img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	-o-object-fit: contain;
	   object-fit: contain;
}
.overlay .big-image .close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 30px;
	font-weight: bold;
	color: #333;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.7);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background 0.2s;
	z-index: 10;
}
.overlay .big-image .close:hover {
	background: rgba(255, 255, 255, 0.9);
}

.zoom-lens {
	position: absolute;
	border: 2px solid #fff;
	background: rgba(255, 255, 255, 0.3);
	cursor: none;
	display: none;
	pointer-events: none;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.zoom-result {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	z-index: 999;
	display: none;
	background-size: 200% 200%;
	background-position: center;
	background-repeat: no-repeat;
}

.feature__title {
	font-weight: 700;
	font-size: 24px;
	color: #535353;
	position: relative;
	border-bottom: 1px solid #ededed;
	padding: 0 0 10px 0;
}
@media (max-width: 778px) {
	.feature__title {
		text-align: center;
	}
}
@media (max-width: 414px) {
	.feature__title {
		font-size: 16px;
	}
}
.feature__subtitle {
	font-weight: 500;
	color: #535353;
	display: flex;
	text-wrap: nowrap;
	flex-direction: column;
	gap: 20px;
}
@media (max-width: 778px) {
	.feature__subtitle {
		padding-left: 30px;
	}
}
@media (max-width: 503px) {
	.feature__subtitle {
		padding-left: 10px;
	}
}
@media (max-width: 389px) {
	.feature__subtitle {
		font-size: 12px;
	}
}
.feature__subtitle p {
	margin: 0;
	padding: 5px 0;
}
.feature__wrapper {
	position: relative;
	display: flex;
	padding: 7px 0 10px 0;
	border-bottom: 1px solid #ededed;
}
.feature__container {
	display: flex;
	padding: 27px 0 0 0;
}
.feature__btn {
	background: transparent;
	border: 1px solid #ededed;
	border-radius: 2px;
	padding: 4px 7px;
	margin: -10px 0 0 0;
	display: inline-block;
	font-weight: 500;
	color: #535353;
	transition: all 500ms ease;
	text-wrap: nowrap;
}
@media (max-width: 359px) {
	.feature__btn {
		padding: 4px 1px;
	}
}
.feature__btn:hover {
	border: 1px solid #ffc94f;
}
.feature__btn.selected {
	border: 1px solid #ffc94f;
	background-color: #f1f1f1;
}
.feature__option {
	padding: 0px 0 0 12px;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 18px;
}
.feature__option div {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	row-gap: 15px;
	justify-content: flex-start;
	padding: 10px 0 0 0;
}
.feature__controls {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.feature__count {
	margin: 11px 0 0 0;
	padding: 5px 9px;
	display: flex;
	font-size: 15px;
	color: #535353;
	border: 1px solid #ededed;
	border-radius: 2px;
	width: -moz-fit-content;
	width: fit-content;
}
.feature__count span {
	padding: 4px 0 0 0;
}
.feature__count p {
	padding: 4px 3px 0 0;
}
.feature__price {
	padding: 20px 0 0 0;
	font-weight: 700;
	font-size: 20px;
	color: #535353;
	transition: color 300ms ease, transform 300ms ease;
}
.feature__price.highlight {
	color: #ffc94f;
	transform: scale(1.1);
	animation: highlightAnimation 500ms ease forwards;
}
@keyframes highlightAnimation {
	0% {
		color: #ffc94f;
		transform: scale(1.1);
	}
	100% {
		color: #535353;
		transform: scale(1);
	}
}
.feature__decrease {
	font-size: 18px;
	background: transparent;
	color: #535353;
	padding: 0 5px 0 0;
}
.feature__increase {
	font-size: 18px;
	background: transparent;
	color: #535353;
	padding: 1px 0 0 5px;
}
.feature__button {
	margin: 25px 0 0 0;
	width: 100%;
}
@media (max-width: 778px) {
	.feature__button {
		margin: 15px 0 0 0;
	}
}
@media (max-width: 503px) {
	.feature__button {
		margin: 15px 0 0 8px;
	}
}

.recommended__container {
	padding: 34px 0 0 0;
}
.recommended__title {
	text-align: center;
	font-weight: 800;
	font-size: 30px;
}
.recommended__cards {
	padding: 20px 0 68px 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, 302px);
	gap: 30px;
	justify-content: center;
}

.services-page__container {
	padding: 30px 0 17px 0;
}
.services-page__title {
	font-weight: 800;
	font-size: 30px;
}
.services-page__accordion {
	padding: 42px 0 0 0;
}

.accordion__subtitles {
	display: flex;
}
@media (max-width: 681px) {
	.accordion__subtitles {
		flex-wrap: wrap;
		justify-content: center;
	}
}
.accordion__subtitle {
	width: 100%;
	text-align: center;
	font-weight: 500;
	color: #535353;
	border: 1px solid #ededed;
	border-top: none;
}
.accordion__subtitle:hover {
	transition: all 500ms;
	background: #3d4f64;
	color: #fff;
}
.accordion__subtitle-active {
	background: #3d4f64;
	color: #fff;
}
.accordion__subtitle span {
	padding: 17px;
	display: inline-block;
}
.accordion__items {
	padding: 17px 0 0 0;
}
.accordion__item {
	line-height: 171%;
	color: #444444;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 400ms ease-out, opacity 400ms ease-out, padding 400ms ease-out;
}
.accordion__item p {
	padding: 0 0 1.2em 0;
}
.accordion__item-active {
	max-height: 1500px;
	opacity: 1;
}
.accordion__list {
	padding: 0 0 1.2em 0;
}
.accordion__list strong {
	color: #2a592a;
}
.accordion__list li {
	padding: 10px 0 0 10px;
	position: relative;
}
.accordion__list li::before {
	content: "";
	width: 6px;
	height: 6px;
	position: absolute;
	top: 18px;
	left: 0px;
	border-radius: 100%;
	background: #06cc0e;
}
.accordion__gerb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 25px;
}
.accordion__gerb img {
	width: 200px;
	height: auto;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.delivery__container {
	padding: 30px 0 17px 0;
}
.delivery__title {
	font-weight: 800;
	font-size: 30px;
}
.delivery__block {
	display: flex;
}
@media (max-width: 1010px) {
	.delivery__block {
		flex-direction: column;
		align-items: center;
	}
}
.delivery__info {
	padding: 0 124px 0 0;
}
@media (max-width: 1010px) {
	.delivery__info {
		padding: 0 0 0 0;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}
.delivery__subtitles {
	padding: 42px 0 20px 0;
	display: flex;
}
.delivery__subtitle {
	padding: 14px 31px;
	font-weight: 700;
	font-size: 16px;
	color: #535353;
	border: 1px solid #ededed;
	border-top: none;
	text-align: center;
}
.delivery__subtitle:first-child {
	border-right: none;
}
@media (max-width: 379px) {
	.delivery__subtitle {
		padding: 7px 15px;
	}
}
.delivery__subtitle:hover {
	transition: all 500ms;
	color: #fff;
	background: #3d4f64;
}
.delivery__subtitle-active {
	color: #fff;
	background: #3d4f64;
}
.delivery__subtitle span {
	text-align: center;
}
.delivery__content {
	font-weight: 300;
	line-height: 171%;
	color: #444444;
}
.delivery__content p {
	font-weight: 700;
	padding: 8px 0 0 0;
}
@media (max-width: 1010px) {
	.delivery__content {
		text-align: center;
	}
}
.delivery__content {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: all 400ms ease-out;
}
.delivery__content-active {
	max-height: 1500px;
	opacity: 1;
}
.delivery__list li {
	position: relative;
	padding: 0 0 0 12px;
}
.delivery__list li::before {
	content: "";
	width: 6px;
	height: 6px;
	position: absolute;
	top: 8px;
	border-radius: 100%;
	background: #06cc0e;
	margin: 0 0 0 -12px;
}
.delivery__steps {
	display: flex;
	padding: 35px 0 0 0;
	max-width: 645px;
	transition: all 400ms ease-out;
}
@media (max-width: 500px) {
	.delivery__steps {
		flex-direction: column;
	}
}
.delivery__form {
	padding: 0 200px 0 0;
}
@media (max-width: 1010px) {
	.delivery__form {
		padding: 0 0 0 0;
	}
}

.steps__item {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.steps__item:first-child {
	max-width: 33.333%;
}
@media (max-width: 500px) {
	.steps__item:first-child {
		max-width: none;
	}
}
@media (max-width: 500px) {
	.steps__item {
		padding: 15px 0 0 0;
	}
}
.steps__number {
	font-weight: 700;
	font-size: 18px;
	color: #535353;
	border: 1px solid #ffc94f;
	border-radius: 100%;
}
.steps__number p {
	padding: 15px 20px;
}
.steps__info {
	padding: 15px 0 0 0;
	text-align: center;
	font-weight: 300;
	font-size: 12px;
	line-height: 167%;
	color: #535353;
	text-wrap: balance;
}

.about-page__container {
	padding: 30px 0 17px 0;
}
.about-page__title {
	font-weight: 800;
	font-size: 30px;
}
.about-page__accordion {
	padding: 42px 0 0 0;
}

.contacts-page__container {
	padding: 15px 0 17px 0;
}
.contacts-page__title {
	font-weight: 800;
	font-size: 30px;
	text-align: center;
}
.contacts-page__content {
	padding: 20px 0 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 22px;
}
.contacts-page__content a {
	color: #000;
}
.contacts-page__content p:not(:first-child) {
	padding: 15px 0 0 0;
}
.contacts-page__phone a {
	position: relative;
	transition: all 300ms;
}
.contacts-page__phone a:hover {
	color: #06cc0e;
}
.contacts-page__phone a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #bba409;
	animation: underline 2s linear infinite;
}
.contacts-page__email a {
	position: relative;
	transition: all 300ms;
}
.contacts-page__email a:hover {
	color: #06cc0e;
}
.contacts-page__email a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #bba409;
	animation: underline 2s linear infinite;
}
.contacts-page__address {
	text-align: center;
}
.contacts-page__social {
	padding: 15px 0 0 0;
}
.contacts-page__map {
	margin: 15px 0 15px 0;
	width: 500px;
	height: 200px;
	position: relative;
	transition: all 500ms;
}
@media (max-width: 530px) {
	.contacts-page__map {
		width: 300px;
	}
}
.contacts-page__map:after {
	content: "";
	display: block;
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #bba409;
	animation: underline 2s linear infinite;
}

@keyframes underline {
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
.social a:not(:first-child) {
	margin: 0 0 0 18px;
}
.social__tg {
	display: inline-block;
	width: 35px;
	height: 35px;
	background: #2aabee;
	position: relative;
	border-radius: 5px;
}
.social__tg::after {
	content: "";
	background: url(../img/icons/icon-tg.svg) no-repeat;
	position: absolute;
	display: block;
	width: 24px;
	height: 24px;
	margin: 6px 0 0 5px;
	transition: transform 250ms ease-in-out;
}
.social__tg:hover::after {
	transform: rotate(-10deg) scale(1.2);
}
.social__vk {
	display: inline-block;
	width: 35px;
	height: 35px;
	background: #4c75a3;
	position: relative;
	border-radius: 5px;
}
.social__vk::after {
	content: "";
	background: url(../img/icons/icon-vk.svg) no-repeat;
	position: absolute;
	display: block;
	width: 24px;
	height: 24px;
	margin: 9px 0 0 4px;
	transition: transform 250ms ease-in-out;
}
.social__vk:hover::after {
	transform: rotate(-10deg) scale(1.2);
}
.social__wa {
	display: inline-block;
	width: 35px;
	height: 35px;
	background: #25d366;
	position: relative;
	border-radius: 5px;
}
.social__wa::after {
	content: "";
	background: url(../img/icons/icon-wa.svg) no-repeat;
	position: absolute;
	display: block;
	width: 24px;
	height: 24px;
	margin: 6px 0 0 5px;
	transition: transform 250ms ease-in-out;
}
.social__wa:hover::after {
	transform: rotate(-10deg) scale(1.2);
}

.cart-page__container {
	padding: 30px 0 17px 0;
}
.cart-page__title {
	font-weight: 800;
	font-size: 30px;
}
.cart-page__item {
	margin: 34px 0 0 0;
}
.cart-page__controls {
	padding: 23px 0 0 0;
	display: flex;
	justify-content: space-between;
}
@media (max-width: 445px) {
	.cart-page__controls {
		flex-direction: column;
		align-items: center;
	}
}
.cart-page__back {
	height: -moz-fit-content;
	height: fit-content;
	background: transparent;
	font-weight: 700;
	color: #535353;
}
@media (max-width: 445px) {
	.cart-page__back {
		display: none;
	}
}
.cart-page__finalPrice {
	display: flex;
	font-weight: 700;
	color: #535353;
	justify-self: center;
	font-size: 18px;
}
@media (max-width: 445px) {
	.cart-page__finalPrice {
		padding: 10px 0 0 0;
	}
}
.cart-page__finalPrice p:not(:first-child) {
	padding: 0 0 0 5px;
}
.cart-page__btn {
	margin: 38px 0 0 0;
}

.item {
	border: 1px solid #535353;
}
.item:hover {
	box-shadow: 5px 5px 13px 0 #bba409;
}
.item__wrapper {
	padding: 23px 18px;
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(120px, auto) minmax(80px, auto) auto;
	align-items: center;
	gap: 15px;
}
@media (max-width: 768px) {
	.item__wrapper {
		grid-template-columns: minmax(0, 1fr) minmax(100px, auto) minmax(70px, auto);
		grid-template-areas: "info info info" "count price delete";
	}
}
@media (max-width: 480px) {
	.item__wrapper {
		grid-template-columns: 1fr;
		grid-template-areas: "info" "count" "price" "delete";
	}
}
.item__info {
	display: flex;
	min-width: 0;
	grid-column: 1;
}
@media (max-width: 441px) {
	.item__info {
		flex-direction: column;
	}
}
@media (max-width: 730px) {
	.item__info {
		grid-area: info;
	}
}
.item__img {
	max-width: 131px;
	max-height: 131px;
	flex-shrink: 0;
}
@media (max-width: 441px) {
	.item__img {
		align-self: center;
	}
}
.item__img img {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	-o-object-fit: cover;
	   object-fit: cover;
}
.item__desc {
	padding: 0 0 0 31px;
	min-width: 0;
}
@media (max-width: 441px) {
	.item__desc {
		padding: 15px 0 0 0;
	}
}
.item__title {
	font-weight: 700;
	font-size: 16px;
	color: #535353;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}
@media (max-width: 441px) {
	.item__title {
		text-align: center;
		white-space: normal;
	}
}
.item__characters {
	padding: 18px 0 0 0;
	color: #505050;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
@media (max-width: 441px) {
	.item__characters {
		padding: 18px 0 0 0;
		justify-content: center;
	}
}
.item__subtitles {
	padding: 0 19px 0 0;
	border-right: 1px solid #e5e5e5;
}
.item__subtitles p:not(:first-child) {
	padding: 7px 0 0 0;
}
.item__choose {
	padding: 0 0 0 19px;
}
.item__choose p:not(:first-child) {
	padding: 7px 0 0 0;
}
.item__count {
	display: flex;
	height: -moz-fit-content;
	height: fit-content;
	grid-column: 2;
	justify-self: center;
}
@media (max-width: 730px) {
	.item__count {
		grid-area: count;
		padding: 15px 0 0 0;
		justify-self: center;
	}
}
.item__count p {
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	padding: 7px 16px;
	color: #535353;
	min-width: 40px;
	text-align: center;
}
.item__btn {
	background: #3d4f64;
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}
.item__decrease {
	border-radius: 2px 0 0 2px;
}
.item__increase {
	border-radius: 0 2px 2px 0;
}
.item__price {
	font-weight: 700;
	color: #535353;
	grid-column: 3;
	justify-self: end;
}
@media (max-width: 730px) {
	.item__price {
		grid-area: price;
		padding: 15px 0 0 0;
		justify-self: center;
	}
}
.item__delete {
	font-weight: 700;
	color: #f3a800;
	background: transparent;
	grid-column: 4;
	justify-self: end;
}
@media (max-width: 730px) {
	.item__delete {
		grid-area: delete;
		padding: 15px 0 0 0;
		justify-self: center;
	}
}

.cart-empty {
	text-align: center;
	padding: 40px 20px;
	max-width: 400px;
	margin: 0 auto;
}
.cart-empty__icon {
	margin-bottom: 20px;
}
.cart-empty__icon svg {
	stroke: #535353;
}
.cart-empty__title {
	font-size: 24px;
	font-weight: 700;
	color: #535353;
	margin-bottom: 10px;
}
.cart-empty__text {
	font-size: 16px;
	color: #505050;
	margin-bottom: 25px;
}
.cart-empty__btn {
	width: 100%;
	max-width: 250px;
	margin: 0 auto;
}

.popup {
	position: fixed;
	z-index: 52;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	pointer-events: none;
	transition: 0.5s all;
}
.popup-active {
	display: block;
	opacity: 1;
	pointer-events: all;
	transition: 0.5s all;
}
.popup__form {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	background: linear-gradient(to bottom, #333, #333 50%, #222222 75%, #eee 200%);
	border-radius: 20px;
	width: 400px;
	padding: 25px;
	transition: 0.5s all;
}
@media (max-width: 424px) {
	.popup__form {
		width: 300px;
	}
}
.popup__form-active {
	transform: translate(-50%, -50%) scale(1);
	transition: 0.5s all;
}
.popup__close {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}
.popup__group {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin: 0 0 25px 0;
}
.popup__text {
	text-transform: uppercase;
	font-weight: 700;
	color: #cfd0d3;
	margin: 0 0 5px 0;
}
.popup__text-red {
	color: #ff0000;
}
.popup input {
	height: 45px;
	font-size: 16px;
	outline: none;
	border: 1px solid #cfd0d3;
	padding: 0 3px;
}
.popup input:focus {
	border-bottom: 1px solid #2982ff;
	color: #2982ff;
}
.popup textarea {
	resize: none;
	width: 100%;
	height: 150px;
	border: 1px solid #cfd0d3;
	outline: none;
	border-bottom: 1px solid #cfd0d3;
	font-size: 16px;
	padding: 3px;
}
.popup textarea:focus {
	border-bottom: 1px solid #2982ff;
	color: #2982ff;
}
.popup__phone {
	text-transform: uppercase;
	font-weight: 700;
	color: #cfd0d3;
	margin: 0 0 5px 0;
}
.popup__message {
	text-transform: uppercase;
	font-weight: 700;
	color: #cfd0d3;
	margin: 0 0 5px 0;
}
.popup__email {
	text-transform: uppercase;
	font-weight: 700;
	color: #cfd0d3;
	margin: 0 0 5px 0;
}
.popup__check {
	font-size: 12px;
	color: #cfd0d3;
	text-align: center;
}
.popup__check a {
	color: #cfd0d3;
	text-decoration: underline;
}
.popup__btn {
	width: 100%;
	font-size: 18px;
}

.popup-call {
	position: fixed;
	z-index: 52;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	pointer-events: none;
	transition: 0.5s all;
}
.popup-call-active {
	display: block;
	opacity: 1;
	pointer-events: all;
	transition: 0.5s all;
}
.popup-call__form {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	background: linear-gradient(to bottom, #333, #333 50%, #222222 75%, #eee 200%);
	border-radius: 20px;
	width: 400px;
	padding: 25px;
	transition: 0.5s all;
}
@media (max-width: 424px) {
	.popup-call__form {
		width: 300px;
	}
}
.popup-call__form-active {
	transform: translate(-50%, -50%) scale(1);
	transition: 0.5s all;
}
.popup-call__close {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}
.popup-call__group {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin: 0 0 25px 0;
}
.popup-call__text {
	text-transform: uppercase;
	font-weight: 700;
	color: #cfd0d3;
	margin: 0 0 5px 0;
}
.popup-call__text-red {
	color: #ff0000;
}
.popup-call input {
	height: 45px;
	font-size: 16px;
	outline: none;
	border: 1px solid #cfd0d3;
	padding: 0 3px;
}
.popup-call input:focus {
	border-bottom: 1px solid #2982ff;
	color: #2982ff;
}
.popup-call__phone {
	text-transform: uppercase;
	font-weight: 700;
	color: #cfd0d3;
	margin: 0 0 5px 0;
}
.popup-call__check {
	font-size: 12px;
	color: #cfd0d3;
	text-align: center;
}
.popup-call__check a {
	color: #cfd0d3;
	text-decoration: underline;
}
.popup-call__btn {
	width: 100%;
	font-size: 18px;
}

.thanks-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}
.thanks-popup--active {
	opacity: 1;
	visibility: visible;
}
.thanks-popup--success .thanks-popup__container {
	border-top: 4px solid #4caf50;
}
.thanks-popup--error .thanks-popup__container {
	border-top: 4px solid #f44336;
}
.thanks-popup__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}
.thanks-popup__container {
	position: relative;
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	transform: translateY(20px);
	transition: transform 0.3s ease;
}
.thanks-popup--active .thanks-popup__container {
	transform: translateY(0);
}
.thanks-popup__close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #999;
	transition: color 0.2s;
}
.thanks-popup__close:hover {
	color: #333;
}
.thanks-popup__content {
	text-align: center;
}
.thanks-popup__title {
	font-size: 22px;
	margin-bottom: 15px;
	color: #333;
}
.thanks-popup__message {
	font-size: 16px;
	color: #666;
	line-height: 1.5;
}

.no-scroll {
	overflow: hidden;
}

.button--loading {
	position: relative;
	color: transparent;
}
.button--loading::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #fff;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
.cart-notification {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}
.cart-notification--active {
	opacity: 1;
	visibility: visible;
}
.cart-notification__overlay {
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.cart-notification__container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 2rem;
	border-radius: 0.5rem;
	max-width: 25rem;
	width: 90%;
	text-align: center;
	box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.15);
}
.cart-notification--success .cart-notification__container {
	border-top: 0.25rem solid #4caf50;
}
.cart-notification--error .cart-notification__container {
	border-top: 0.25rem solid #f44336;
}
.cart-notification__close {
	position: absolute;
	top: 0.625rem;
	right: 0.625rem;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #666;
	transition: color 0.2s ease;
}
.cart-notification__close:hover {
	color: #333;
}
.cart-notification__title {
	margin-top: 0;
	margin-bottom: 1rem;
	color: #333;
	font-size: 1.5rem;
	font-weight: 600;
}
.cart-notification__message {
	color: #666;
	line-height: 1.5;
	margin-bottom: 0;
}

.no-scroll {
	overflow: hidden;
}

.cookie-consent {
	position: fixed;
	bottom: 15px;
	left: 15px;
	right: 15px;
	max-width: 350px;
	background-color: rgba(0, 0, 0, 0.8);
	color: #fff;
	font-size: 14px;
	padding: 10px 15px;
	border-radius: 8px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 9999;
}
.cookie-consent__text {
	margin: 0;
	padding-right: 10px;
	flex: 1;
}
.cookie-consent__button {
	background-color: #4caf50;
	border: none;
	color: #fff;
	padding: 6px 12px;
	font-size: 14px;
	border-radius: 5px;
	cursor: pointer;
	flex-shrink: 0;
	transition: background-color 0.3s ease;
	text-align: center;
}
.cookie-consent__button:hover {
	background-color: #45a049;
}
@media (max-width: 400px) {
	.cookie-consent {
		font-size: 12px;
		max-width: 90vw;
		padding: 8px 12px;
	}
	.cookie-consent__button {
		padding: 5px 10px;
		font-size: 12px;
	}
}

.error-page__container {
	padding: 50px 0 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
@media (max-width: 698px) {
	.error-page__container {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}
.error-page__content {
	width: 50%;
	font-size: 18px;
}
.error-page__content p {
	line-height: 1.5;
}
.error-page__content p a {
	color: #06cc0e;
	text-decoration: none;
	position: relative;
	display: inline-block;
	font-weight: bold;
}
.error-page__content p a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #ff6347;
	transform: scaleX(0);
	transform-origin: bottom right;
	animation: underlineAnimation 2000ms infinite;
}
.error-page__content p a {
	transition: color 0.3s ease;
}
.error-page__content p a:hover {
	color: #ff6347;
}
@media (max-width: 698px) {
	.error-page__content {
		width: 100%;
	}
}
@keyframes underlineAnimation {
	0% {
		transform: scaleX(0);
		transform-origin: bottom right;
	}
	50% {
		transform: scaleX(1);
		transform-origin: bottom left;
	}
	100% {
		transform: scaleX(0);
		transform-origin: bottom right;
	}
}
.error-page__title {
	font-size: 80px;
	font-weight: 700;
}
.error-page__img {
	width: 45%;
}
@media (max-width: 698px) {
	.error-page__img {
		width: 100%;
		padding: 20px 0 0 0;
	}
}
.error-page__img img {
	width: 100%;
	height: auto;
	border-radius: 30px;
	max-width: 400px;
}

.privacy-page__container {
	padding: 20px 0;
}
.privacy-page__title {
	text-align: center;
	font-size: 36px;
	font-weight: bold;
	color: #333;
	margin: 0 0 20px 0;
}
@media (max-width: 490px) {
	.privacy-page__title {
		font-size: 24px;
	}
}
.privacy-page__content {
	max-width: 800px;
	margin: 0 auto;
	background-color: #fff;
	padding: 10px 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	font-size: 16px;
	line-height: 1.6;
	color: #555;
}
.privacy-page__content h2 {
	font-size: 24px;
	color: #06cc0e;
	padding: 0 0 15px 0;
}
.privacy-page__content ul li {
	padding: 0 0 10px 12px;
	position: relative;
}
.privacy-page__content ul li::before {
	content: "";
	width: 6px;
	height: 6px;
	position: absolute;
	top: 10px;
	left: 0px;
	border-radius: 100%;
	background: #06cc0e;
}
.privacy-page__content a {
	color: #06cc0e;
	text-decoration: none;
	transition: color 0.3s ease;
}
.privacy-page__content a:hover {
	color: #ff6347;
	text-decoration: underline;
}
.privacy-page__content p {
	padding: 0 0 20px 0;
}

.footer {
	background: #3d4f64;
}
.footer__container {
	padding: 27px 0 38px 0;
	display: flex;
	justify-content: space-between;
}
@media (max-width: 780px) {
	.footer__container {
		flex-direction: column;
		align-items: center;
		padding: 10px 0 15px 0;
	}
}
.footer__logo p {
	padding: 10px 0 0 0;
	color: #fff;
	text-align: center;
}
.footer__faq {
	padding: 10px 0 0 0;
}
@media (max-width: 780px) {
	.footer__faq {
		padding: 17px 0 0 0;
		text-align: center;
	}
}
.footer__contacts {
	display: flex;
	flex-direction: column;
}
@media (max-width: 780px) {
	.footer__contacts {
		text-align: center;
	}
}
.footer__contacts p {
	padding: 25px 0 0 0;
	font-weight: 600;
	color: #fff;
}
.footer__contacts p:nth-child(1) {
	padding: 15px 0 0 0;
}
.footer__contacts p:nth-child(1)::before {
	content: "";
	background: url(../img/icons/address.svg) no-repeat;
	width: 20px;
	height: 20px;
	position: absolute;
	margin: -3px 0 0 -25px;
}
.footer__contacts p:nth-child(2)::before {
	content: "";
	background: url(../img/icons/phone.svg) no-repeat;
	width: 20px;
	height: 20px;
	position: absolute;
	margin: 0 0 0 -23px;
}
.footer__contacts p:nth-child(3)::before {
	content: "";
	background: url(../img/icons/mail.svg) no-repeat;
	width: 20px;
	height: 20px;
	position: absolute;
	margin: -2px 0 0 -24px;
}
.footer__contacts a {
	font-weight: 600;
	color: #fff;
}

.faq__list {
	display: inline-block;
}
.faq__item a {
	font-weight: 600;
	line-height: 214%;
	color: #fff;
	position: relative;
}
.faq__item a:after {
	content: "";
	position: absolute;
	width: 0%;
	height: 3px;
	background: #ffc94f;
	bottom: -3px;
	left: 0;
	transition: all 800ms;
}
.faq__item a:hover:after {
	width: 100%;
}