*,
::after,
:before {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	border: 0;
}
li,
ol,
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
a {
	text-decoration: none;
	margin: 0;
	color: inherit;
}
h1,
h2,
h3,
h4,
h5,
p {
	padding: 0;
	margin: 0;
	font-size: inherit;
	cursor: default;
}
button {
	font-family: inherit;
	font-size: inherit;
	border: none;
	background: 0 0;
	padding: 0;
}
img,
video {
	display: block;
	max-width: 100%;
}
textarea {
	resize: none;
}
div,
span {
	cursor: default;
}
input {
	outline: 0;
}
input[type="search"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
	-webkit-appearance: none;
}
input[type="number"] {
	-moz-appearance: textfield;
}
html {
	font-size: 100%;
}
body,
html {
	width: 100%;
	height: 100%;
	font-family: Montserrat, Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	font-style: normal;
	scroll-behavior: smooth;
	background-color: #fff;
	color: #000;
	margin: 0;
}
@media (max-width: 1023px) {
	body,
	html {
		font-size: 16px;
	}
}
.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}
.main {
	flex: 1 1 auto;
}
.container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 40px;
}
@media (max-width: 767px) {
	.container {
		padding: 0 20px;
	}
}
.lock {
	overflow: hidden;
}
@font-face {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url(../fonts/Montserrat-Medium.woff) format("woff"), url(../fonts/Montserrat-Medium.woff2) format("woff2");
}
@font-face {
	font-family: Montserrat;
	font-style: italic;
	font-weight: 500;
	font-display: swap;
	src: url(../fonts/Montserrat-MediumItalic.woff) format("woff"),
		url(../fonts/Montserrat-MediumItalic.woff2) format("woff2");
}
@font-face {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/Montserrat-Regular.woff) format("woff"), url(../fonts/Montserrat-Regular.woff2) format("woff2");
}
@font-face {
	font-family: Montserrat;
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/Montserrat-RegularItalic.woff) format("woff"),
		url(../fonts/Montserrat-RegularItalic.woff2) format("woff2");
}
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
.header::before {
	width: 100%;
	height: 100%;
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	z-index: 2;
	background-color: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.header_nav {
	width: 100%;
}
.header__body {
	height: 80px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 3;
}
.header__logo {
	width: 120px;
	height: auto;
}
.header__logo img {
	width: 120px;
	height: auto;
}
@media (max-width: 767px) {
	.header__logo {
		width: 100px;
		height: auto;
	}
	.header__logo img {
		width: 100px;
		height: auto;
	}
	.header__btn {
		width: 30px;
		height: 30px;
		position: absolute;
		top: 50%;
		right: 0;
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
		border-radius: 50%;
		background-color: #000;
		cursor: pointer;
		transition: 0.3s;
		z-index: 2;
		transform: translateY(-50%);
	}
	.header__btn span {
		display: block;
		width: 20px;
		height: 2px;
		background-color: #fff;
		transition: 0.3s;
		cursor: pointer;
		border-radius: 5px;
		margin-bottom: 2px;
	}
	.header__btn_active span {
		position: relative;
	}
	.header__btn_active span:first-child {
		transform: rotate(45deg);
		top: 3px;
	}
	.header__btn_active span:nth-child(2n) {
		display: none;
	}
	.header__btn_active span:last-child {
		transform: rotate(-45deg);
		bottom: 1px;
	}
	.header__nav {
		position: fixed;
		top: 80px;
		right: -100%;
		width: 100%;
		height: 100%;
		background-color: #fff;
		transition: all 0.3s ease;
		display: flex;
		flex-direction: column;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.header__nav_active {
		right: 0;
		height: calc(100vh - 80px);
		overflow-y: auto;
	}
	.header__nav .menu {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding-top: 30px;
	}
	.header__nav .menu .menu__item {
		padding: 10px;
	}
}
.menu {
	display: flex;
	padding: 20px;
	gap: 20px;
	align-items: center;
	width: 100%;
	flex-direction: row;
	justify-content: space-around;
}
.menu__item {
	cursor: pointer;
}
@media (min-width: 768px) {
	.menu {
		height: 80px;
	}
}
@media (max-width: 767px) {
	.menu {
		width: 100%;
		flex-direction: column;
		overflow-y: auto;
		max-height: calc(100vh - 80px);
	}
	.menu__item {
		width: 100%;
	}
	.menu__link {
		font-weight: 500;
	}
}
.dropdown {
	position: relative;
}
.dropdown__btn {
	cursor: pointer;
	color: #000;
}
.dropdown__link {
	position: relative;
	display: block;
	padding: 5px 40px 5px 5px;
	transition: 0.3s;
	font-size: 16px;
}
.dropdown__link:hover {
	opacity: 0.5;
}
.dropdown__btn {
	height: 80px;
	position: relative;
	padding-right: 25px;
	min-width:80px;
}
.dropdown__btn:after {
	position: absolute;
	content: "";
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 15px;
	height: 15px;
	background-image: url(../icons/arrow-btn.svg);
	background-repeat: no-repeat;
}
@media (min-width: 768px) {
	.dropdown__content {
		display: none;
	}
	.dropdown__content_active {
		position: absolute;
		left: 0;
		background-color: #fff;
		padding: 20px;
		display: flex;
		flex-direction: column;
		gap: 20px;
		width: -moz-max-content;
		width: max-content;
	}
	.dropdown:hover .dropdown__content {
		position: absolute;
		left: 0;
		background-color: #fff;
		padding: 10px;
		display: flex;
		flex-direction: column;
		gap: 20px;
		max-width: 200px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	}
}
@media (max-width: 767px) {
	.dropdown {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		width: 100%;
	}
	.dropdown__link {
		font-size: 14px;
	}
	.dropdown__btn {
		font-weight: 500;
		height: -moz-fit-content;
		height: fit-content;
		position: relative;
	}
	.dropdown__content {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease;
		width: 100%;
	}
	.dropdown__content_active {
		max-height: 300px;
		overflow-y: auto;
		padding: 15px;
	}
}
.checkout {
	margin-top: 80px;
	padding-bottom: 3.75rem;
}
.checkout__wrapper {
	display: flex;
	gap: 30px;
}
.checkout__item {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #fff;
	height: -moz-fit-content;
	height: fit-content;
	padding: 10px 20px 30px;
	width: 100%;
}
.checkout__title {
	font-size: 1.5rem;
	font-style: italic;
	padding: 30px;
	padding-left: 20px;
}
.checkout__summ {
	gap: 10px;
	font-weight: 500;
	font-style: italic;
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 20px 0 0;
}
.checkout__summ span {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.checkout__summ-input {
	border: none;
}
@media (max-width: 1023px) {
	.checkout__wrapper {
		flex-direction: column;
	}
}
.cart {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.cart__list {
	width: 100%;
	font-size: 16px;
}
.cart__item {
	border-bottom: 1px solid #000;
	display: grid;
	grid-template-columns: auto 1fr auto;
	grid-template-rows: auto;
	-moz-column-gap: 10px;
	column-gap: 10px;
	row-gap: 5px;
	padding: 20px 0;
}
.cart__item_title .cart__elem {
	font-size: 0.9rem;
	font-weight: 500;
}
.cart__elem {
	display: flex;
	align-items: center;
	justify-content: center;
}
.cart__elem_link {
	cursor: pointer;
	flex-direction: column;
	align-items: flex-start;
	font-weight: 500;
}
.cart__elem_link a {
	display: block;
	text-align: center;
	text-align: left;
}
.cart__desc {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0;
	grid-area: 1/2/2/4;
}
.cart__amount {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	grid-area: 2/2;
}
.cart__amount input {
	font-family: Montserrat, Arial, sans-serif;
	color: #000;
	display: block;
	text-align: center;
	width: 60px;
	height: 30px;
	padding: 0 10px;
}
.cart__amount button {
	width: 24px;
	height: 24px;
	cursor: pointer;
}
.cart__amount button:hover {
	opacity: 0.5;
}
.cart__actions {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	justify-content: flex-end;
	gap: 10px;
	grid-area: 1/2/4/4;
	padding-top: 30px;
}
.cart__actions-item {
	display: flex;
	gap: 10px;
	transition: 0.3s;
	cursor: pointer;
	align-items: flex-end;
}
.cart__actions-item span {
	cursor: pointer;
}
.cart__actions-item:hover {
	opacity: 0.8;
}
.cart__actions-item svg {
	width: 18px;
	height: 18px;
	cursor: pointer;
}
.cart__actions-item svg:hover {
	opacity: 0.8;
}
.cart__summ {
	grid-area: 3/2/3/2;
	display: flex;
	align-items: flex-end;
}
.cart__summ span {
	display: block;
	padding-right: 10px;
}
.cart__img {
	grid-area: 1/1/4;
}
.cart__price {
	justify-content: flex-start;
}
@media (max-width: 767px) {
	.cart__list {
		font-size: 14px;
	}
	.cart__elem_link {
		justify-content: flex-start;
	}
	.cart__summ {
		gap: 5px;
	}
	.cart__actions {
		grid-area: 4/2/4/4;
	}
	.cart__actions-item {
		display: flex;
		gap: 10px;
	}
}
.order {
	padding: 30px 20px;
	height: -moz-fit-content;
	height: fit-content;
	max-width: 400px;
	width: 100%;
	margin-left: auto;
}
.order__form {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: flex-start;
	justify-content: flex-end;
	width: 100%;
}
.order__field {
	width: 100%;
	gap: 5px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.order__field span {
	padding-left: 10px;
	flex-shrink: 0;
	font-size: 16px;
}
.order__field input {
	padding: 10px 15px;
	border-radius: 50px;
	width: 100%;
	background-color: #fff;
	border: 1px solid #000;
}
.order__field input::-moz-placeholder {
	font-size: inherit;
	font-weight: inherit;
}
.order__field input::placeholder {
	font-size: inherit;
	font-weight: inherit;
}
.order__field textarea {
	padding: 15px 20px;
	scrollbar-width: none;
	border-radius: 20px;
	border: 1px solid #000;
	font-size: inherit;
	width: 100%;
}
.order__field input,
.order__field textarea {
	font-family: Montserrat, Arial, sans-serif;
	font-size: inherit;
}
.order__btn {
	padding: 15px;
	border-radius: 50px;
	background-color: #000;
	cursor: pointer;
	width: 90%;
	color: #fff;
	margin-top: 30px;
	font-weight: 500;
	transition: 0.3s;
}
.order__btn:hover {
	opacity: 0.8;
}
.order__qr {
	display: flex;
	align-items: flex-end;
	gap: 20px;
	cursor: pointer;
	margin-top: 20px;
}
.order__qr span {
	border-bottom: 1px solid #000;
	margin-bottom: 15px;
	font-size: 14px;
}
@media (max-width: 1023px) {
	.order__form {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.order {
		margin: 0 auto;
		max-width: 100%;
	}
	.order__field span {
		font-size: 14px;
	}
}
.popup {
	position: fixed;
	top: -1000px;
	left: 50%;
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	background-color: #fff;
	width: 100%;
	height: 100%;
	max-width: 300px;
	max-height: 100px;
	transform: translateX(-50%);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.popup_active {
	top: 90px;
	opacity: 1;
}
