/* USER VARIABLES SECTION */

:root {
	--accent: #000;
	--text: #000;
	--regular-text: 16px;
	--lineheight: 1.65;
	--userfont: Rubik, sans-serif;
	--subfont: Satoshi, sans-serif;
	--accentfont: MEDIUM, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* FONTS LOAD SECTION */

@font-face { src: url("../fonts/Rubik-Light.woff2") format("woff2"); font-family: "Rubik"; font-weight: 300; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/Rubik-LightItalic.woff2") format("woff2"); font-family: "Rubik"; font-weight: 300; font-style: italic; font-display: swap; }
@font-face { src: url("../fonts/Rubik-Regular.woff2") format("woff2"); font-family: "Rubik"; font-weight: 400; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/Rubik-Italic.woff2") format("woff2"); font-family: "Rubik"; font-weight: 400; font-style: italic; font-display: swap; }
@font-face { src: url("../fonts/Rubik-Medium.woff2") format("woff2"); font-family: "Rubik"; font-weight: 500; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/Rubik-MediumItalic.woff2") format("woff2"); font-family: "Rubik"; font-weight: 500; font-style: italic; font-display: swap; }
@font-face { src: url("../fonts/Rubik-Bold.woff2") format("woff2"); font-family: "Rubik"; font-weight: 700; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/Rubik-BoldItalic.woff2") format("woff2"); font-family: "Rubik"; font-weight: 700; font-style: italic; font-display: swap; }

@font-face { src: url("../fonts/Satoshi-Regular.woff2") format("woff2"); font-family: "Satoshi"; font-weight: 400; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/Satoshi-Italic.woff2") format("woff2"); font-family: "Satoshi"; font-weight: 400; font-style: italic; font-display: swap; }
@font-face { src: url("../fonts/Satoshi-Bold.woff2") format("woff2"); font-family: "Satoshi"; font-weight: 700; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/Satoshi-BoldItalic.woff2") format("woff2"); font-family: "Satoshi"; font-weight: 700; font-style: italic; font-display: swap; }

@font-face { src: url("../fonts/Medium.woff2") format("woff2"); font-family: "MEDIUM"; font-weight: 400; font-style: normal; font-display: swap; }

/* GENERAL CSS SETTINGS */

::placeholder { color: #666; }
::selection { background-color: var(--accent); color: #fff; }
input, textarea { outline: none; }
/* input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; } */

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
}

.container {
	max-width: 1240px;
	margin: 0 auto;
}

a {
	transition: .25s all ease-in-out;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	color: #000;
}

p:last-child {
	margin-bottom: 0;
}

button {
	cursor: pointer;
	transition: .25s all ease-in-out;
}

button:focus {
	outline: none
}

img {
	pointer-events: none;
}

b, strong {
	font-weight: bold
}

.center {
	text-align: center;
}

.btn {
	display: inline-block;
	border-radius: 62px;
	padding: 16px 54px;
	background: #000;
	border: none;

	color: #fff;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-align: center;
}
.btn:hover {
	text-decoration: none;
	opacity: .8;
	color: #fff;
}
.btn.border {
	background-color: transparent;
	border: 1px solid rgba(0, 0, 0, 0.10);
	color: #000;
}
.btn.border:hover {
	background-color: #000;
	border: 1px solid #000;
	color: #fff;
}
.btn.white {
	background-color: #fff;
	color: #000;
}
.title {
	color: #000;
	text-align: center;
	font-family: MEDIUM;
	font-size: 48px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-bottom: 60px;
}

@media (max-width: 1300px) {
	.container {
		max-width: 960px;
	}

	.title {
		font-size: 44px;
	}
}

@media (max-width: 991px) {
	.container {
		max-width: 720px;
	}

	.title {
		font-size: 40px;
		margin-bottom: 45px;
	}
}

@media (max-width: 767px) {
	.container {
		max-width: 540px;
	}

	.title {
		font-size: 36px;
		margin-bottom: 35px;
	}
}

@media (max-width: 575px) {
	.container {
		max-width: 100%;
		padding-left: 16px;
		padding-right: 16px;
	}

	.title {
		font-size: 30px;
		margin-bottom: 20px;
	}
}
@media (max-width: 380px) {
	.title {
		font-size: 24px;
	}
}

/* USER STYLES */

/* header */
.header {
	background-color: #fff;
}
.header__container {
	padding: 30px 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header.noindex .header__container {
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.header__logo {
	color: #000;
	font-family: var(--accentfont);
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.header__logo:hover {
	text-decoration: none;
	opacity: 0.8;
}
.header__menu {
}
.header__menu>ul {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
}
.header__menu>ul>li {
	list-style: none;
	position: relative;
}
.header__menu>ul>li>a {
	display: block;
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	transition: .25s opacity ease-in-out;
}
.header__menu>ul>li>a:hover {
	text-decoration: none;
	opacity: .8;
}
.header__menu>ul>li.arrow>a {
	padding-right: 18px;
}
.header__menu>ul>li.arrow>a::after {
	content: '';
	width: 11px;
	height: auto;
	aspect-ratio: 1.5;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3e%3cpath fill='%23000' d='m11.53 2.03-5 5a.75.75 0 0 1-1.062 0l-5-5A.751.751 0 1 1 1.531.969L6 5.438l4.47-4.47a.751.751 0 1 1 1.062 1.062h-.001Z'/%3e%3c/svg%3e");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	flex: none;
	position: absolute;
	right: 0;
	top: 6px;
	transition: .25s transform ease-in-out;
}
.header__menu>ul>li.arrow:hover>a::after {
	transform: rotate(180deg);
}
.header__menu>ul>li>ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
	position: absolute;
	left: 0;
	top: calc(100% + 10px);
	background-color: #fff;
	padding: 20px;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.10);
    min-width: 200px;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	transition: .25s all ease-in-out;
}
.header__menu>ul>li:hover>ul {
	opacity: 1;
	visibility: visible;
}
.header__menu>ul>li>ul::before {
	content: '';
	width: 100%;
	height: 10px;
	background: transparent;
	position: absolute;
	left: 0;
	top: -10px;
}
.header__menu>ul>li>ul>li {
	list-style: none;
}
.header__menu>ul>li>ul>li>a {
	display: block;
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.header__menu>ul>li>ul>li>a:hover {
	text-decoration: none;
	opacity: .8;
}
.header__search {
	min-width: 470px;
	position: relative;
}
.header__search input {
	width: 100%;
	height: 48px;
	border-radius: 62px;
	background: #F0F0F0;
	border: none;
	padding: 0 16px 0 51px;
	color: rgba(0, 0, 0, 1);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	line-height: 1.2;
}
.header__search input::placeholder {
	color: rgba(0, 0, 0, 0.40);
}
.header__search button {
	position: absolute;
	left: 16px;
	top: 14px;
	width: 21px;
	height: auto;
	aspect-ratio: 1;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' fill='none' viewBox='0 0 21 21'%3e%3cpath fill='%23000' fill-opacity='.4' d='m19.888 18.362-4.267-4.268a8.277 8.277 0 1 0-1.527 1.527l4.27 4.271a1.08 1.08 0 0 0 1.527-1.527l-.003-.003Zm-16.935-9.3a6.11 6.11 0 1 1 6.11 6.11 6.116 6.116 0 0 1-6.11-6.11Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	flex: none;
	border: none;
	padding: 0;
	background-color: transparent;
}
.header__left {
	flex: none;
	display: flex;
	align-items: center;
	gap: 20px;
}
.header__right {
	flex: none;
	display: flex;
	align-items: center;
	gap: 20px;
}
.header__searchIcon {
	display: none;
	width: 25px;
	height: auto;
	aspect-ratio: 1;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='21' height='22' fill='none' viewBox='0 0 21 22'%3e%3cpath fill='%23000' d='M20.113 19.204 15.66 14.75a8.636 8.636 0 1 0-1.594 1.594l4.456 4.457a1.125 1.125 0 0 0 1.924-.797 1.126 1.126 0 0 0-.33-.797l-.004-.003ZM2.442 9.5a6.375 6.375 0 1 1 6.375 6.375A6.381 6.381 0 0 1 2.442 9.5Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	flex: none;
	transition: .25s all ease-in-out;
}
.header__searchIcon:hover {
	text-decoration: none;
	opacity: .8;
}
.header__user {
	width: 30px;
	height: auto;
	aspect-ratio: 1;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='none' viewBox='0 0 30 30'%3e%3cpath fill='%23000' d='M20.625 13.125A5.617 5.617 0 0 1 15 18.75a5.617 5.617 0 0 1-5.625-5.625A5.617 5.617 0 0 1 15 7.5a5.617 5.617 0 0 1 5.625 5.625Z'/%3e%3cpath fill='%23000' fill-rule='evenodd' d='M30 15c0 8.288-6.712 15-15 15-8.287 0-15-6.712-15-15C0 6.713 6.713 0 15 0c8.288 0 15 6.713 15 15ZM7.5 25.781c.3-.498 3.206-5.156 7.481-5.156 4.257 0 7.182 4.669 7.481 5.156A13.087 13.087 0 0 0 28.106 15c0-7.256-5.869-13.125-13.125-13.125S1.856 7.744 1.856 15c0 4.462 2.232 8.419 5.644 10.781Z' clip-rule='evenodd'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	flex: none;
}
.header__user:hover {
	text-decoration: none;
	opacity: .8;
}
.header__burger {
	display: none;
	height: 14px;
	width: 20px;
	position: relative;
	cursor: pointer;
	flex: none;
}
.header__burger span {
	width: 100%;
	height: 2px;
	background-color: #000;
	position: absolute;
	top: 6px;
	transition: .25s all ease-in-out;
}
.header__burger::before {
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #000;
	transition: .25s all ease-in-out;
}
.header__burger::after {
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
	transition: .25s all ease-in-out;
}
.header__burger.active span {
	transform: scale(0);
}
.header__burger.active::after {
	transform: rotate(-45deg);
	top: 6px;
}
.header__burger.active::before {
	transform: rotate(45deg);
	top: 6px;
}
.mobile__menu {
	position: fixed;
	width: 100%;
	height: 100%;
	right: -100%;
	top: 0;
	background-color: #fff;
	z-index: 100;
	transition: .25s all ease-in-out;
	overflow-y: auto;
}
.mobile__menuContainer {
	max-width: 350px;
	margin: 0 auto;
	padding: 50px 16px 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}
.mobile__menuContainer .header__menu {
	margin: 0;
	width: 100%;
}
.mobile__menuContainer .header__menu>ul {
	flex-direction: column;
	align-items: flex-start;
}
.mobile__menuContainer .header__menu>ul>li>a {
	border-bottom: none;
	font-size: 20px;
	padding: 0;
}
.mobile__menuContainer .header__menu>ul>li.arrow>a::after {
	display: none;
}
.mobile__menuContainer .header__menu>ul>li>ul {
	position: relative;
	left: auto;
	top: auto;
	padding: 0;
	background: transparent;
	border: none;
	opacity: 1;
	visibility: visible;
	gap: 10px;
	padding-left: 20px;
	margin-top: 10px ;
}
.mobile__menuContainer .header__menu>ul>li>ul::before {
	display: none;
}
.mobile__menuContainer .header__info {
	justify-content: center;
	padding: 15px 0;
	border-top: 1px solid #e7e7e7;
	border-bottom: 1px solid #e7e7e7;
}
.mobile__close {
	position: absolute;
	right: 15px;
	top: 15px;
	width: 30px;
	height: 30px;
	z-index: 2;
}
.mobile__close:before,
.mobile__close:after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 2px;
	background-color: #000;
	transition: .25s all ease-in-out;
}
.mobile__close:before:hover,
.mobile__close:after:hover {
	opacity: .8;
}
.mobile__close:before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.mobile__close:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 1300px) {
	.header__search {
		min-width: 250px;
	}
}
@media (max-width: 991px) {
	.header {
		position: relative;
	}
	.header__container {
		padding: 25px 0;
	}
	.header__search {
		position: absolute;
		left: 0;
		top: 100%;
		z-index: 10;
		background: #fff;
		width: 100%;
		padding: 20px;
		border-top: 1px solid rgba(0, 0, 0, 0.10);
		opacity: 0;
		visibility: hidden;
		transition: .25s all ease-in-out;
	}
	.header__search.active {
		opacity: 1;
		visibility: visible;
	}
	.header__searchIcon {
		display: block;
	}
	.header__logo {
		font-size: 28px;
	}
	.header__search button {
		top: 33px;
		left: 36px;
	}
	body.lock {
		overflow: hidden;
		height: 100vh;
	}
}
@media (max-width: 767px) {
	.header .header__menu {
		display: none;
	}
	.header__burger {
		display: block;
	}
	.mobile__menu.open {
		right: 0;
	}
}
@media (max-width: 575px) {
	.header.noindex .header__container {
		border-bottom: none;
	}
	.header__search {
		padding: 16px;
	}
	.header__search button {
		top: 29px;
        left: 32px;
	}
	.header__logo {
		font-size: 25px;
	}
	.header__user {
		width: 25px;
	}
	.header__searchIcon {
		width: 23px;
	}
	.header__right {
		gap: 15px
	}
}
/* header */

/* hero */
.hero {
	background-color: #F2F0F1;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	width: 100%;
	height: 200px;
	background: linear-gradient(180deg, rgba(217, 217, 217, 0.00) 0%, #FFF 78.74%);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 5;
}
.hero__container {
	padding: 110px 0 250px;
	position: relative;
}
.hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 55%;
	position: relative;
	z-index: 6;
}
.hero__pretitle {
	color: rgba(0, 0, 0, 0.60);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.1;
	margin-bottom: 16px;
}
.hero__title {
	color: #000;
	font-family: var(--accentfont);
	font-size: 64px;
	font-style: normal;
	font-weight: 500;
	line-height: 1;
}
.hero__btn {
	margin-top: 42px;
}
.hero__img {
	position: absolute;
	right: 0;
	top: 0;
}
.hero__img img {
	position: relative;
	z-index: 2;
	user-select: none;
}
.hero__img::before {
	content: '';
	width: 56px;
	height: auto;
	aspect-ratio: 1;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' fill='none' viewBox='0 0 56 56'%3e%3cpath fill='%23000' d='M28 .684c.95 14.815 12.947 26.623 28 27.558-15.053.936-27.05 12.743-28 27.558-.95-14.815-12.947-26.622-28-27.558C15.053 27.307 27.05 15.5 28 .684Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	position: absolute;
	left: -40px;
    top: 45%;
}
.hero__img::after {
	content: '';
	width: 105px;
	height: auto;
	aspect-ratio: 1;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' fill='none' viewBox='0 0 56 56'%3e%3cpath fill='%23000' d='M28 .684c.95 14.815 12.947 26.623 28 27.558-15.053.936-27.05 12.743-28 27.558-.95-14.815-12.947-26.622-28-27.558C15.053 27.307 27.05 15.5 28 .684Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	position: absolute;
	right: -40px;
    top: 10%;
}
@media (max-width: 1300px) {
	.hero__title {
		font-size: 50px;
	}
	.hero__img {
		max-width: 470px;
	}
	.hero__img img {
		width: 100%;
	}
	.hero__img::after {
		width: 80px;
		right: -20px;
	}
	.hero__img::before {
		width: 42px;
		top: 55%;
	}
	.hero__container {
		padding: 110px 0 160px;
	}
}
@media (max-width: 991px) {
	.hero__img {
		max-width: 350px;
	}
	.hero__title {
		font-size: 38px;
	}
	.hero__pretitle {
		font-size: 18px;
	}
	.hero__btn {
		margin-top: 30px;
	}
	.hero::before {
		height: 100px;
	}
	.hero__container {
		padding: 70px 0 100px;
	}
}
@media (max-width: 767px) {
	.hero__container {
		display: flex;
		flex-direction: column;
		gap: 44px
	}
	.hero__img {
		position: relative;
	}
	.hero__content {
		max-width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.hero__title {
		text-align: center;
	}
	.hero__title {
		font-size: 35px;
	}
	.hero__img {
		max-width: 400px;
		margin: 0 auto;
	}
	.hero__container {
		padding: 50px 0 0;
	}
}
@media (max-width: 575px) {
	.hero__title {
		font-size: 30px;
	}
	.hero__pretitle {
		font-size: 15px;
	}
	.hero__img {
		max-width: 320px;
	}
	.hero__img::after {
		width: 75px;
		right: -10px;
		top: -40px;
	}
	.hero__img::before {
		width: 38px;
		left: -10px;
		top: 40px;
	}
}
@media (max-width: 380px) {
	.hero__title {
		font-size: 28px;
	}
}
/* hero */

/* product */
.product__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.product {
}
.product__img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	flex: none;
	border-radius: 20px;
	background: #F0EEED;
	overflow: hidden;
}
.product__img img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: .25s all ease-in-out;
}
.product__img:hover img {
	opacity: .9;
	transform: scale(1.05);
}
.product__content {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.product__title {
	display: block;
	color: #000;
	font-family: Satoshi;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.product__title:hover {
	color: #000;
	text-decoration: none;
	opacity: .7;
}
.product__footer {
	margin-top: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product__more {
	display: block;
}
@media (max-width: 1300px) {
	.product__title {
		font-size: 18px;
	}
}
@media (max-width: 991px) {
	.product__title {
		font-size: 16px;
	}
	.product__footer {
		margin-top: 45px;
	}
}
@media (max-width: 767px) {
	.product__list {
		grid-template-columns: 1fr 1fr;
	}
	.product__content {
		margin-top: 8px;
	}
	.product__footer {
		margin-top: 35px;
	}
}
@media (max-width: 575px) {
	.product__title {
		font-size: 14px;
	}
	.product__img {
		border-radius: 12px;
	}
	.product__footer {
		margin-top: 20px;
	}
}
/* product */

/* arrivals */
.arrivals {
	margin-top: 80px;
}
.arrivals + .leader .container {
	padding-top: 80px;
	margin-top: 40px;
}
.arrivals + .leader .container {
	border-top: 1px solid rgba(0, 0, 0, 0.10);
}
@media (max-width: 1300px) {

}
@media (max-width: 991px) {

}
@media (max-width: 767px) {

}
@media (max-width: 575px) {
	.arrivals + .leader .container {
		border-top: none;
		padding-top: 0;
	}
	.arrivals {
		margin: 20px 0 80px;
	}
}
/* arrivals */

/* leader */
.leader {
	margin-bottom: 100px;
}
@media (max-width: 1300px) {

}
@media (max-width: 991px) {

}
@media (max-width: 767px) {

}
@media (max-width: 575px) {
	.leader {
		margin: 80px 0;
	}
}
/* leader */

/* catalog */
.catalog {
	margin: 100px 0 160px;
}
.catalog__container {
	border-radius: 40px;
	background: #F0F0F0;
	padding: 76px 64px;
}
.catalog__list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}
.catalog__item {
	border-radius: 20px;
	overflow: hidden;
	background: #FFF;
	padding: 28px 36px;
	min-height: 290px;
	position: relative;
	z-index: 1;
}
.catalog__item:hover {
	text-decoration: none;
	opacity: .8;
}
.catalog__item:nth-child(4n+2) {
	grid-column: 2/4
}
.catalog__item:nth-child(4n+3) {
	grid-column: 1/3
}
.catalog__item:nth-child(4n+4),
.catalog__item:nth-child(4n+1){
	min-width: 410px;
}
.catalog__itemTitle {
	color: #000;
	font-size: 36px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	display: block;
}
.catalog__itemImg {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
	height: 100%;
}
.catalog__itemImg img {
	max-width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 1300px) {
	.catalog__list {
		grid-template-columns: 1fr 1fr;
	}
	.catalog__item:nth-child(4n+2) {
		grid-column: auto
	}
	.catalog__item:nth-child(4n+3) {
		grid-column: auto
	}
	.catalog__item:nth-child(4n+4),
	.catalog__item:nth-child(4n+1){
		min-width: auto;
	}
	.catalog__itemTitle {
		font-size: 32px;
	}
	.catalog__item {
		min-height: 220px;
	}
}
@media (max-width: 991px) {
	.catalog {
		margin: 90px 0 130px;
	}
	.catalog__container {
		padding: 60px 30px;
	}
	.catalog__item {
		padding: 18px 24px;
	}
	.catalog__itemTitle {
		font-size: 26px;
	}
}
@media (max-width: 767px) {
	.catalog {
		margin: 70px 0 110px;
	}
	.catalog__list {
		grid-template-columns: 1fr;
	}
	.catalog__item {
		min-height: 190px;
	}
	.catalog__itemTitle {
		font-size: 24px;
	}
}
@media (max-width: 575px) {
	.catalog__container {
		padding: 35px 24px 25px;
		border-radius: 20px;
	}
	.catalog {
		margin: 56px 0 100px;
	}
	.catalog .title {
		margin-bottom: 40px;
	}
}
@media (max-width: 380px) {
	.catalog__container {
		padding: 30px 18px 20px;
	}
	.catalog__item {
		padding: 15px;
	}
	.catalog__itemTitle {
		font-size: 21px;
	}
	.catalog__item {
		min-height: 160px;
	}
	.catalog .title {
		margin-bottom: 25px;
	}
}
/* catalog */

/* section */
.section__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 50px;
}
.section__header .title {
	font-size: 35px;
	margin-bottom: 0;
	text-align: left;
}
.slider__arrows {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}
.slider__arrow {
	width: 24px;
	height: auto;
	aspect-ratio: 1;
	flex: none;
	cursor: pointer;
	transition: .25s all ease-in-out;
}
.slider__arrow:hover {
	text-decoration: none;
	opacity: .8;
}
.slider__prev {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3e%3cpath fill='%23000' d='m9.704 4.454-6.75 6.75a1.124 1.124 0 0 0 0 1.594l6.75 6.75a1.127 1.127 0 0 0 1.594-1.594l-4.83-4.829H20.25a1.125 1.125 0 1 0 0-2.25H6.469l4.83-4.829a1.127 1.127 0 1 0-1.594-1.594v.002Z'/%3e%3c/svg%3e");
}
.slider__next {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3e%3cpath fill='%23000' d='m14.296 4.454 6.75 6.75a1.124 1.124 0 0 1 0 1.594l-6.75 6.75a1.127 1.127 0 0 1-1.594-1.594l4.83-4.829H3.75a1.125 1.125 0 1 1 0-2.25h13.781l-4.83-4.829a1.127 1.127 0 1 1 1.594-1.594v.002Z'/%3e%3c/svg%3e");
}
@media (max-width: 1300px) {
	.section__header .title {
		max-width: 87%;
	}
}
@media (max-width: 991px) {

}
@media (max-width: 767px) {
	.section__header {
		margin-bottom: 36px;
		gap: 0;
		align-items: flex-end;
		flex-direction: column;
	}
	.section__header .title {
		max-width: 100%;
		font-size: 32px;
	}
}
@media (max-width: 575px) {
	.section__header .title {
		font-size: 30px;
		text-align: left;
	}
	.section__header {
		margin-bottom: 24px;
	}
}
@media (max-width: 380px) {
	.section__header .title {
		font-size: 24px;
	}
}
/* section */

/* reviews */
.reviews {
	margin: 150px 0;
	overflow: hidden;
}
.reviews__slider {
	margin: 0 -10px;
}
.reviews__slider.slick-initialized .reviews__item {
	display: block;
}
.reviews__slider.slick-initialized .slick-track {
	display: flex;
}
.reviews__slider.slick-initialized .slick-list {
	overflow: visible;
}
.reviews__item {
	display: none;
	padding: 28px 32px;
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.10);
	height: auto;
	margin: 0 10px;
	filter: blur(2px);
}
.reviews__item.slick-active {
	filter: blur(0);
}
.reviews__itemRaiting {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 15px;
}
.reviews__itemRaiting li {
	list-style: none;
	width: 22px;
	height: auto;
	aspect-ratio: 1;
	flex: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='23' height='21' fill='none' viewBox='0 0 23 21'%3e%3cpath fill='%23F0F0F0' d='m11.29 0 3.198 6.887 7.538.914-5.561 5.17 1.46 7.452-6.636-3.692-6.635 3.692 1.46-7.452-5.561-5.17 7.538-.914L11.29 0Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.reviews__itemRaiting li.active {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='23' height='21' fill='none' viewBox='0 0 23 21'%3e%3cpath fill='%23FFC633' d='m11.29 0 3.198 6.887 7.538.914-5.561 5.17 1.46 7.452-6.636-3.692-6.635 3.692 1.46-7.452-5.561-5.17 7.538-.914L11.29 0Z'/%3e%3c/svg%3e");
}
.reviews__itemRaiting {
}
.reviews__itemTitle {
	color: #000;
	font-family: var(--subfont);
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.1;
	display: flex;
	align-items: baseline;
	gap: 6px;
}
.reviews__itemTitle::after {
	content: '';
	width: 20px;
	height: auto;
	aspect-ratio: 1;
	flex: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' fill='none' viewBox='0 0 21 21'%3e%3cpath fill='%2301AB31' d='M10.25.83a10 10 0 1 0 10 10 10.01 10.01 0 0 0-10-10Zm4.39 8.236L9.256 14.45a.77.77 0 0 1-1.089 0L5.86 12.143a.77.77 0 0 1 1.088-1.089l1.764 1.764 4.84-4.84a.77.77 0 0 1 1.088 1.088Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: translateY(2px);
}
.reviews__itemText {
	color: rgba(0, 0, 0, 0.60);
	font-family: var(--subfont);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: calc(22 / 16);
	margin-top: 12px;
}
.reviews__itemText p:last-child {
	margin-bottom: 0;
}
@media (max-width: 1300px) {
	.reviews {
		margin: 110px 0 70px;
	}
}
@media (max-width: 991px) {

}
@media (max-width: 767px) {

}
@media (max-width: 575px) {
	.reviews__item {
		filter: none;
		padding: 24px;
	}
	.reviews__itemTitle {
		font-size: 16px;
	}
	.reviews__itemText {
		font-size: 14px;
	}
	.reviews__itemTitle::after {
		width: 15px;
	}
	.reviews__itemRaiting {
		margin-bottom: 12px;
	}
	.reviews__itemRaiting {
		gap: 5px;
	}
	.reviews__itemRaiting li {
		width: 19px;
	}
	.reviews {
		margin: 70px 0;
	}
}
/* reviews */

/* offer */
.offer {
	margin-top: 50px;
	margin-bottom: -60px;
	z-index: 1;
	position: relative;
}
.offer__container {
	padding: 36px 64px;
	border-radius: 20px;
	background: #000;
	display: grid;
	grid-template-columns: 1fr 350px;
	align-items: center;
	gap: 35px 50px
}
.offer__title {
	color: #FFF;
	font-family: var(--accentfont);
	font-size: 30px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
}
.offer__form {
	display: flex;
	flex-direction: column;
	gap: 14px
}
.offer__form input {
	height: 48px;
	border: none;
	padding: 0 16px 0 52px;
	border-radius: 62px;
	background: #FFF;
	color: rgba(0, 0, 0, 1);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	width: 100%;
}
.offer__formInput {
	position: relative;
}
.offer__formInput.mail::before {
	content: '';
	width: 20px;
	height: auto;
	aspect-ratio: 1;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='22' height='16' fill='none' viewBox='0 0 22 16'%3e%3cpath fill='%23000' fill-opacity='.4' d='M20 .125H2A1.125 1.125 0 0 0 .875 1.25V14a1.875 1.875 0 0 0 1.875 1.875h16.5A1.875 1.875 0 0 0 21.125 14V1.25A1.125 1.125 0 0 0 20 .125Zm-9 7.849L4.892 2.375h12.216L11 7.974ZM7.7 8l-4.575 4.193V3.807L7.699 8Zm1.664 1.526.876.804a1.125 1.125 0 0 0 1.52 0l.876-.804 4.472 4.099H4.892l4.472-4.099ZM14.301 8l4.574-4.192v8.385L14.301 8Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	position: absolute;
	left: 16px;
	top: 13px;
}
.offer__form input::placeholder {
	color: rgba(0, 0, 0, 0.40);
}
.offer__form button {
	width: 100%;
	font-weight: 400;
	padding: 13px 54px;
}
@media (max-width: 1300px) {
	.offer__container {
		gap: 35px;
		padding: 36px 44px;
	}
	.offer__title {
		font-size: 28px;
	}
}
@media (max-width: 991px) {
	.offer__title {
		font-size: 26px;
	}
	.offer__container {
		grid-template-columns: 1fr 1fr;
	}
	.offer__form button {
		padding: 13px 30px;
	}
}
@media (max-width: 767px) {
	.offer__container {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 575px) {
	.offer__title {
		font-size: 24px;
	}
	.offer__container {
		padding: 30px 24px;
	}
	.offer {
		margin-bottom: -40%;
	}
}
@media (max-width: 380px) {
	.offer__title {
		font-size: 21px;
	}
	.offer__form button {
		padding: 13px 10px;
	}
	.offer__container {
		padding: 30px 18px;
	}
}
/* offer */

/* footer */
.footer {
	background: #F0F0F0;
	padding: 170px 0 36px;
}
.footer__container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.footer__col {
}
.footer__logo {
	color: #000;
	font-family: var(--accentfont);
	font-size: 33px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.footer__logo:hover {
	text-decoration: none;
	opacity: .8
}
.footer__slogan {
	margin-top: 25px;
	color: rgba(0, 0, 0, 0.60);
	font-size: 20px;
	font-style: normal;
	font-weight: 300;
	line-height: 1.1
}
.footer__social {
	margin-top: 35px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.footer__social a {
	width: 28px;
	height: auto;
	aspect-ratio: 1;
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.20);
	background: #FFF;
}
.footer__social a svg {
	width: 14px;
	height: auto;
	aspect-ratio: 1;
	object-fit: contain;
}
.footer__social a svg path {
	transition: .25s all ease-in-out;
}
.footer__social a:hover {
	text-decoration: none;
	background-color: #000;
}
.footer__social a:hover svg path {
	fill: #fff
}
.footer__title {
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.12;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 26px;
}
.footer__menu {
}
.footer__menu ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}
.footer__menu ul li {
	list-style: none;
}
.footer__menu ul li a {
	color: rgba(0, 0, 0, 0.60);
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 1.18;
}
.footer__menu ul li a:hover {
	color: rgba(0, 0, 0, 1);
}
.footer__shop {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
}
.footer__shop:not(:nth-child(1)) {
	margin-top: 15px;
}
.footer__address {
	color: rgba(0, 0, 0, 0.60);
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 1.18;
}
.footer__phone {
	color: rgba(0, 0, 0, 0.60);
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 1.18;
}
.footer__phone:hover {
	color: rgba(0, 0, 0, 1);
}
.footer__bottom {
	border-top: 1px solid rgba(0, 0, 0, 0.10);
	margin-top: 100px;
}
@media (max-width: 1300px) {

}
@media (max-width: 991px) {

}
@media (max-width: 767px) {
	.footer__container {
		display: grid;
		grid-template-columns: auto auto;
	}
	.footer__col:nth-child(1) {
		grid-column: 1/3;
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		margin-bottom: 40px;
	}
	.footer__social {
		margin-top: 0;
	}
	.footer__slogan {
		margin-top: 15px;
		font-size: 15px;
	}
	.footer__logo {
		font-size: 28px;
	}
	.footer__bottom {
		display: none;
	}
	.footer {
		padding: 160px 0 50px;
	}
}
@media (max-width: 575px) {
	.footer {
		padding: 50% 0 50px;
	}
}
@media (max-width: 380px) {
	.footer__title {
		font-size: 14px;
	}
	.footer__address {
		font-size: 14px;
	}
	.footer__phone {
		font-size: 14px;
	}
	.footer__menu ul li a {
		font-size: 14px;
	}
	.footer__title {
		margin-bottom: 18px;
	}
}
/* footer */

/* page */
.page {
	margin: 100px 0;
}
.content {
}
@media (max-width: 991px) {
	.page {
		margin: 90px 0;
	}
}
@media (max-width: 767px) {
	.page {
		margin: 80px 0;
	}
}
@media (max-width: 575px) {
	.page {
		margin: 30px 0 60px;
	}
}
/* page */

/* aboutPage */
.aboutPage {
}
.aboutPage__container {
	display: grid;
	grid-template-columns: 1fr 704px;
	gap: 40px;
}
.aboutPage__left {
}
.aboutPage__left .title {
	text-align: left;
}
.aboutPage__img {
	display: block;
	width: 100%;
	height: auto;
}
.aboutPage__img img {
	width: 100%;
	height: auto;
	border-radius: 20px;
}
@media (max-width: 1300px) {
	.aboutPage__container {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 991px) {
	.aboutPage__container {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
}
@media (max-width: 380px) {

}
/* aboutPage */

/* breadcrumbs */
.breadcrumbs {
	margin: 0 0 40px;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}
.breadcrumbs li {
	position: relative;
	flex: none;
	list-style: none;
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;

	display: flex;
	align-items: center;
	gap: 9px;
}
.breadcrumbs li:not(:last-child)::after {
	content: '';
	width: 10px;
	height: auto;
	aspect-ratio: 1;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='7' height='13' fill='none' viewBox='0 0 7 13'%3e%3cpath fill='%23000' fill-opacity='.6' d='m1.53.97 5 5a.75.75 0 0 1 0 1.062l-5 5a.751.751 0 0 1-1.062-1.063L4.938 6.5.468 2.03A.751.751 0 1 1 1.53.969V.97Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	flex: none;
}
.breadcrumbs li a {
	font-family: var(--userfont);
	display: flex;
	color: rgba(0, 0, 0, 0.60);
	font-family: var(--subfont);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.breadcrumbs li a:hover {
	text-decoration: none;
	color: rgba(0, 0, 0, 1);
}
@media (max-width: 1300px) {

}
@media (max-width: 991px) {
	.breadcrumbs {
		margin-bottom: 30px;
	}
	.breadcrumbs {
		gap: 6px;
	}
	.breadcrumbs li {
		gap: 6px;
		font-size: 14px;
	}
	.breadcrumbs li a {
		font-size: 14px;
	}
}
@media (max-width: 767px) {
}
@media (max-width: 575px) {
	.breadcrumbs {
		margin-bottom: 20px;
	}
}
@media (max-width: 380px) {

}
/* breadcrumbs */

/* productPage */
.productPage {
	margin: 24px 0 90px;
}
.productPage__container {
	display: grid;
	grid-template-columns: 610px 1fr;
	gap: 40px;
}
.productSlider {
	display: grid;
	grid-template-columns: 152px auto;
	overflow: hidden;
	gap: 14px;
}
.productSliderMain {
	flex: 1;
	overflow: hidden;
	max-width: 100%;
}
.productSliderMain .slick-track {
	display: flex;
}
.productSliderMain.slick-initialized .productSliderMain__item {
	display: block;
}
.productSliderMain__item {
	display: none;
	width: 100%;
	height: auto;
	aspect-ratio: .92;
	background-color: #F3F1EF;
	border-radius: 20px;
	overflow: hidden;
}
.productSliderMain__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.productSliderNav {
	width: 100%;
	flex: none;
	margin: -7px 0;
}
.productSliderNav.slick-initialized .productSliderNav__item {
	display: block;
}
.productSliderNav__item {
	display: none;
	width: 100%;
	background-color: #F3F1EF;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid transparent;
	margin: 7px 0;
	cursor: pointer;
}
.productSliderNav__item.slick-current {
	border-color: #000000
}
.productSliderNav__item img {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
}
.productPage__content {
	display: flex;
	flex-direction: column;
}
.productPage__title {
	color: #000;
	font-family: var(--accentfont);
	font-size: 30px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-bottom: 22px;
}
.productPage__text {
	color: rgba(0, 0, 0, 0.60);
	font-family: var(--subfont);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.37;
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
	padding-bottom: 22px;
	margin-bottom: 22px;
}
.productPage__available {
	color: rgba(0, 0, 0, 0.60);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 13px;
}
.productPage__address {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
}
.productPage__addressItem {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.productPage__addressItemTitle {
	color: #000;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.productPage__addressItemLinks {
	display: flex;
	align-items: center;
	gap: 14px;
}
.productPage__addressItemLinks a {
	display: flex;
	width: 20px;
	height: auto;
	aspect-ratio: 1;
	flex: none;
}
.productPage__addressItemLinks a:hover {
	text-decoration: none;
	opacity: .7;
}
.productPage__footer {
	margin-top: auto;
}
.productPage__where {
	width: 100%;
	max-width: 400px;
}
@media (max-width: 1300px) {
	.productPage__title {
		font-size: 28px;
	}
	.productPage__addressItemTitle {
		font-size: 18px;
	}
	.productPage__container {
		gap: 20px;
		grid-template-columns: 530px 1fr;
	}
	.productSlider {
		grid-template-columns: 130px auto;
	}
}
@media (max-width: 991px) {
	.productPage__title {
		font-size: 24px;
	}
	.productPage__container {
		gap: 20px;
		grid-template-columns: 1fr 1fr;
	}
	.productSlider {
		grid-template-columns: 82px auto;
	}
	.productPage__addressItemTitle {
		font-size: 16px;
	}
	.productPage__text {
		margin-bottom: 14px;
		padding-bottom: 14px;
	}
}
@media (max-width: 767px) {
	.productPage__container {
		grid-template-columns: 100%;
	}
	.productSlider {
		display: flex;
		flex-direction: column-reverse;
	}
	.productSliderNav {
		margin: 0 -6px;
		width: auto;
	}
	.productSliderNav__item {
		margin: 0 6px;
	}
	.productSliderMain__item {
		aspect-ratio: unset;
        height: 500px;
	}
	.productPage__where {
		max-width: 100%;
	}
	.productSliderMain__item img {
		object-fit: contain;
	}
}
@media (max-width: 575px) {
	.productPage {
		margin: 10px 0 50px;
	}
}
@media (max-width: 380px) {

}
/* productPage */

/* categoryPage */
.categoryPage {
	margin: 24px 0 78px;
}
.categoryPage__container {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}
.categoryPage__aside {
	width: 296px;
	flex: none;
}
.categoryPage__main {
	flex: 1;
	width: auto;
}
.categoryPage__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.categoryPage__title {
	color: #000;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.categoryPage__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 20px;
}
.categoryPage__footer {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.10);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (max-width: 1300px) {

}
@media (max-width: 991px) {
	.categoryPage__title {
		font-size: 30px;
	}
	.categoryPage__container {
		flex-direction: column-reverse;
	}
	.categoryPage__aside {
		display: none;
	}
}
@media (max-width: 767px) {
	.categoryPage__title {
		font-size: 28px;
	}
}
@media (max-width: 575px) {
	.categoryPage {
		margin: 10px 0 50px;
	}
	.categoryPage__list {
		grid-template-columns: 1fr 1fr;
	}
	.categoryPage__footer {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px 20px
	}
	.categoryPage__footer .navigation__arrow {
		order: 1;
	}
	.categoryPage__footer .pagination {
		grid-column: 1/3;
		justify-content: center;
		gap: 5px;
	}
	.categoryPage__footer .pagination {
		grid-column: 1/3;
		justify-content: center;
		gap: 5px;
	}
	.categoryPage__footer .pagination li a {
		width: 30px;
	}
	.categoryPage__list {
		gap: 20px;
	}
	.categoryPage__title {
		font-size: 26px;
	}
}
@media (max-width: 380px) {

}
/* categoryPage */

/* navigation */
.navigation__arrow {
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.10);
	background: #FFF;
	min-width: 110px;
	height: 36px;
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #000;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.42
}
.navigation__arrow:hover {
	background-color: #000;
	color: #fff;
}
.navigation__prev::before {
	content: '';
	width: 14px;
	height: auto;
	aspect-ratio: 1;
	flex: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 14 14'%3e%3cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.67' d='M12.833 7H1.167m0 0L7 12.833M1.167 7 7 1.167'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: .25s all ease-in-out;
}
.navigation__prev:hover::before {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 14 14'%3e%3cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.67' d='M12.833 7H1.167m0 0L7 12.833M1.167 7 7 1.167'/%3e%3c/svg%3e");
}
.navigation__next::after {
	content: '';
	width: 14px;
	height: auto;
	aspect-ratio: 1;
	flex: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 14 14'%3e%3cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.67' d='M1.167 7h11.666m0 0L7 1.167M12.833 7 7 12.833'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: .25s all ease-in-out;
}
.navigation__next:hover::after {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 14 14'%3e%3cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.67' d='M1.167 7h11.666m0 0L7 1.167M12.833 7 7 12.833'/%3e%3c/svg%3e");
}
.pagination {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 2px;
}
.pagination li {
	list-style: none;
}
.pagination li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex: none;
	width: 40px;
	height: auto;
	aspect-ratio: 1;
	border-radius: 8px;
	color: rgba(0, 0, 0, 0.50);
	text-align: center;
	font-family: var(--subfont);
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.2
}
.pagination li a:hover {
	color: #000;
}
.pagination li span {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex: none;
	width: 40px;
	height: auto;
	aspect-ratio: 1;
	border-radius: 8px;
	color: #000;
	background: rgba(0, 0, 0, 0.06);
	text-align: center;
	font-family: var(--subfont);
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.2;
	cursor: default;
}
/* navigation */

/* asideFilter */
.asideFilter {
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.10);
	padding: 20px 24px 30px 24px;
}
.asideFilter__header {
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.asideFilter__headerTitle {
	color: #000;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	position: relative;
	padding-right: 24px;
}
.asideFilter__headerTitle::before {
	content: '';
	width: 24px;
	height: auto;
	aspect-ratio: 1;
	position: absolute;
	right: 0;
	top: 0px;
	flex: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3e%3cpath fill='%23000' fill-opacity='.4' d='M13.125 11.625v8.625a1.125 1.125 0 1 1-2.25 0v-8.625a1.125 1.125 0 1 1 2.25 0ZM18.75 18a1.125 1.125 0 0 0-1.125 1.125v1.125a1.125 1.125 0 1 0 2.25 0v-1.125A1.125 1.125 0 0 0 18.75 18ZM21 14.25h-1.125V3.75a1.125 1.125 0 1 0-2.25 0v10.5H16.5a1.125 1.125 0 1 0 0 2.25H21a1.125 1.125 0 1 0 0-2.25ZM5.25 15a1.125 1.125 0 0 0-1.125 1.125v4.125a1.125 1.125 0 0 0 2.25 0v-4.125A1.125 1.125 0 0 0 5.25 15Zm2.25-3.75H6.375v-7.5a1.125 1.125 0 0 0-2.25 0v7.5H3a1.125 1.125 0 1 0 0 2.25h4.5a1.125 1.125 0 1 0 0-2.25Zm6.75-4.5h-1.125v-3a1.125 1.125 0 1 0-2.25 0v3H9.75a1.125 1.125 0 0 0 0 2.25h4.5a1.125 1.125 0 0 0 0-2.25Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.asideFilter__content {
}
.asideFilter__block {
}
.asideFilter__block:not(:last-child) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
	margin-bottom: 24px;
	padding-bottom: 24px;
}
.asideFilter__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.asideFilter__list a {
	display: block;
	color: rgba(0, 0, 0, 0.60);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	position: relative;
	padding-right: 16px;
}
.asideFilter__list a::before {
	content: '';
	width: 16px;
	height: auto;
	aspect-ratio: 1;
	position: absolute;
	right: 0;
	top: 2px;
	flex: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='%23000' fill-opacity='.6' d='m6.53 2.47 5 5a.75.75 0 0 1 0 1.062l-5 5a.751.751 0 1 1-1.062-1.063L9.938 8l-4.47-4.47A.751.751 0 1 1 6.53 2.469v.001Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: .25s all ease-in-out;
}
.asideFilter__list a:hover {
	color: rgba(0, 0, 0, 1);
}
.asideFilter__list a:hover::before {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='%23000' fill-opacity='1' d='m6.53 2.47 5 5a.75.75 0 0 1 0 1.062l-5 5a.751.751 0 1 1-1.062-1.063L9.938 8l-4.47-4.47A.751.751 0 1 1 6.53 2.469v.001Z'/%3e%3c/svg%3e");
}
.asideFilter__title {
	color: #000;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 14px;
}
.asideFilter__btn {
	width: 32px;
	height: auto;
	aspect-ratio: 1;
	flex: none;
	border-radius: 50%;
	background-color: #F0F0F0;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='%23000' d='M8.75 7.75v5.75a.75.75 0 1 1-1.5 0V7.75a.75.75 0 0 1 1.5 0ZM12.5 12a.75.75 0 0 0-.75.75v.75a.75.75 0 1 0 1.5 0v-.75a.75.75 0 0 0-.75-.75ZM14 9.5h-.75v-7a.75.75 0 1 0-1.5 0v7H11a.75.75 0 1 0 0 1.5h3a.75.75 0 1 0 0-1.5ZM3.5 10a.75.75 0 0 0-.75.75v2.75a.75.75 0 1 0 1.5 0v-2.75A.75.75 0 0 0 3.5 10ZM5 7.5h-.75v-5a.75.75 0 0 0-1.5 0v5H2A.75.75 0 0 0 2 9h3a.75.75 0 0 0 0-1.5Zm4.5-3h-.75v-2a.75.75 0 0 0-1.5 0v2H6.5a.75.75 0 0 0 0 1.5h3a.75.75 0 1 0 0-1.5Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px;
	transition: .25s all ease-in-out;
	cursor: pointer;

	display: none;
}
.asideFilter__btn:hover {
	opacity: .8;
}
@media (max-width: 1300px) {

}
@media (max-width: 991px) {
	.asideFilter__btn {
		display: block;
	}
}
@media (max-width: 767px) {

}
@media (max-width: 575px) {

}
@media (max-width: 380px) {

}
/* asideFilter */

/* filterPopup */
.filterPopup {
	position: fixed;
	width: 100%;
	height: 100%;
	right: -100%;
	top: 0;
	background-color: #fff;
	z-index: 100;
	transition: .25s all ease-in-out;
	overflow-y: auto;
}
.filterPopup__container {
	max-width: 350px;
	margin: 0 auto;
	padding: 30px 16px 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}
.filterPopup__close {
	position: absolute;
	right: 0;
	top: 0;
	width: 23px;
	height: auto;
	aspect-ratio: 1;
	flex: none;
	z-index: 2;
}
.filterPopup__close:before,
.filterPopup__close:after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 2px;
	background-color: #999999;
	transition: .25s all ease-in-out;
}
.filterPopup__close:before:hover,
.filterPopup__close:after:hover {
	opacity: .8;
}
.filterPopup__close:before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.filterPopup__close:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.filterPopup__container .asideFilter {
	width: 100%;
	padding: 0;
	border: none
}
.filterPopup__container .asideFilter__headerTitle::before {
	display: none;
}
.filterPopup__container .asideFilter__header {
	position: relative;
}
@media (max-width: 1300px) {

}
@media (max-width: 991px) {
	.filterPopup.open {
		right: 0;
	}
}
@media (max-width: 767px) {
	
}
@media (max-width: 575px) {

}
@media (max-width: 380px) {

}
/* filterPopup */

/* form popup */
.white-popup {
    position: relative;
    background: #FFF;
    padding: 50px;
    width: auto;
    max-width: 450px;
    margin: 20px auto;
    border-radius: 10px;
}
.formLogin {
	padding: 50px 36px;
	max-width: 1050px;
}
.form .mfp-close {
    font-size: 0;
    width: 30px;
    height: 30px;
    right: 10px;
    top: 10px;
    opacity: 1;
}
.form .mfp-close:hover {
    opacity: .8;
}
.form .mfp-close:before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #909090;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.form .mfp-close:after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #909090;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.form__title {
	color: #000;
	font-family: var(--accentfont);
	font-size: 36px;
	font-style: normal;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 30px;
}
.form form input {
    width: 100%;
	height: 45px;
	background: #FFF;
	border-radius: 10px;
	border: 1px solid #F0EEED;
	padding: 0 20px;
}
.formInput:not(:first-child) {
	margin-top: 20px;
}
.formInput__title {
	color: #000;
	font-family: var(--accentfont);
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-bottom: 15px;
}
.form form button {
	width: 100%;
	margin-top: 45px;
}
.form form button:hover {

}
.form form {
	max-width: 720px;
}
@media (max-width: 767px) {
	.form__title {
		font-size: 24px;
	}
}
@media (max-width: 575px) {
	.form__title {
		font-size: 20px;
	}
	.formLogin {
		padding: 50px 20px;
	}
	.formInput__title {
		font-size: 11px;
	}
	.form form button {
		margin-top: 30px;
	}
	.formInput__title {
		margin-bottom: 10px;
	}
}
/* form popup */

/* Magnific popup */
.my-mfp-zoom-in .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
}
.my-mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}
.my-mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.my-mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}
.my-mfp-slide-bottom {
    opacity: 0;
    opacity--webkit-transition: opacity 0.3s ease-out;
    opacity--moz-transition: opacity 0.3s ease-out;
    opacity--o-transition: opacity 0.3s ease-out;
    opacity-transition: opacity 0.3s ease-out;
}
.my-mfp-slide-bottom .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    transform: translateY(-20px) perspective(600px) rotateX(10deg);
}
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: translateY(0) perspective(600px) rotateX(0);
    -moz-transform: translateY(0) perspective(600px) rotateX(0);
    -ms-transform: translateY(0) perspective(600px) rotateX(0);
    -o-transform: translateY(0) perspective(600px) rotateX(0);
    transform: translateY(0) perspective(600px) rotateX(0);
}
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
    opacity: 0;
    -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    transform: translateY(-10px) perspective(600px) rotateX(10deg);
}
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
    opacity: 0.8;
}
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
    opacity: 0;
}
/* Magnific popup */

/* addProductPage */
.addProductPage {
	margin: 50px 0 100px;
}
.addProductPage__title {
	color: #000;
	font-family: var(--accentfont);
	font-size: 36px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-bottom: 30px;
}
.addProductPage__container {
	display: grid;
	grid-template-columns: 550px 1fr;
	gap: 35px;
}
.addProductPage__slider {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 10px;
}
.addProductPage__sliderNav {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.addProductPage__loadImg {
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	border-radius: 15px;
	background: #F9F9F9;
	cursor: pointer;
}
.addProductPage__loadImg::before {
	content: '';
	width: 80px;
	height: auto;
	aspect-ratio: 1;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='79' height='79' fill='none' viewBox='0 0 79 79'%3e%3cpath fill='%23000' fill-opacity='.05' d='M51.974 41.575H41.579V51.97a2.08 2.08 0 0 1-4.158 0V41.575H27.026a2.079 2.079 0 0 1 0-4.158h10.395V27.022a2.079 2.079 0 1 1 4.158 0v10.395h10.395a2.079 2.079 0 0 1 0 4.158Z'/%3e%3cpath stroke='%23000' stroke-opacity='.05' stroke-width='2.079' d='M41.579 40.535h-1.04V51.97a1.04 1.04 0 1 1-2.078 0V40.535H27.026a1.04 1.04 0 0 1 0-2.078H38.461V27.021a1.04 1.04 0 0 1 2.078 0V38.457H51.974a1.04 1.04 0 1 1 0 2.078H41.579Z'/%3e%3ccircle cx='39.5' cy='39.5' r='37.421' stroke='%23000' stroke-opacity='.05' stroke-width='4.158'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: .25s all ease-in-out;
}
.addProductPage__loadImg:hover::before { 
	transform: translate(-50%, -50%) scale(1.1);
}
.addProductPage__sliderNav .addProductPage__loadImg::before {
	width: 46px;
}
.addProductPage__loadImg input {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	max-width: 10px;
}
.addProductPage__sliderMain {
	min-height: 400px;
}
.addProductPage__content {
	padding-top: 10px;
}
.addProductPage__option {
	display: flex;
	flex-direction: column;
}
.addProductPage__option:not(:first-child) {
	margin-top: 20px;
}
.addProductPage__optionTitle {
	color: #000;
	font-family: var(--accentfont);
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-bottom: 12px;
}
.addProductPage__optionContent {
	display: flex;
	flex-direction: column;
}
.addProductPage__optionContent input {
	width: 100%;
	height: 45px;
	border-radius: 10px;
	border: 1px solid #F0EEED;
	padding: 0 20px;
}
.addProductPage__optionContent select {
	width: 100%;
	height: 45px;
	border-radius: 10px;
	border: 1px solid #F0EEED;
	padding: 0 40px 0 20px;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none' viewBox='0 0 14 9'%3e%3cpath fill='%231C1243' fill-rule='evenodd' d='M7.707 8.297A.982.982 0 0 1 7 8.6a.982.982 0 0 1-.707-.303L.636 2.427a1.059 1.059 0 0 1-.28-.73c.002-.272.107-.532.292-.724a.982.982 0 0 1 .699-.304.981.981 0 0 1 .703.291L7 6.096 11.95.96a.981.981 0 0 1 .703-.291.982.982 0 0 1 .699.304c.185.192.29.452.293.725.002.272-.099.534-.281.73L7.707 8.296Z' clip-rule='evenodd'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: calc(100% - 18px) center;
}
.addProductPage__optionContent select::-ms-expand {
    display: none;
}
.addProductPage__optionContent textarea {
	width: 100%;
	height: 110px;
	border-radius: 10px;
	border: 1px solid #F0EEED;
	padding: 10px 20px;
	resize: none;
}
.addProductPage__content button {
	margin-top: 20px;
	width: 100%;
}
@media (max-width: 1300px) {
	.addProductPage__container {
		grid-template-columns: 440px 1fr;
	}
	.addProductPage__slider {
		grid-template-columns: 100px 1fr;
	}
}
@media (max-width: 991px) {
	.addProductPage__container {
		grid-template-columns: 1fr;
	}
	.addProductPage__slider {
		grid-template-columns: 20% 1fr;
	}
	.addProductPage__title {
		font-size: 30px;
	}
}
@media (max-width: 767px) {
	.addProductPage__title {
		font-size: 25px;
	}
}
@media (max-width: 575px) {
	.addProductPage__title {
		font-size: 20px;
	}
	.addProductPage__slider {
		grid-template-columns: 25% 1fr;
	}
	.addProductPage__sliderMain {
		min-height: 320px;
	}
	.addProductPage__optionContent input {
		padding: 0 10px;
		font-size: 14px;
	}
	.addProductPage__optionContent select {
		padding: 0 10px;
		font-size: 14px;
	}
	.addProductPage__optionContent textarea {
		padding: 10px;
		font-size: 14px;
	}
	.addProductPage {
		margin: 30px 0 60px;
	}
}
@media (max-width: 380px) {
	.addProductPage__sliderMain {
		min-height: 280px;
	}
}
/* addProductPage */