/* Common */
/* Blocks */
.main-shop {
	padding: 20.55556vw 0 5.55556vw 0;
}

.main-shop__box {
	min-height: 66.66667vw;
	border-radius: 5.55556vw;
	background: #040404;
	color: #fff;
	margin: 0 -5.55556vw;
	overflow: hidden;
}

.main-shop__content {
	padding: 5.83333vw 5.55556vw 4.72222vw 5.55556vw;
}

.main-shop__title {
	font-family: "HeadingNowVar", "Arial", sans-serif;
	font-variation-settings: "wght" 650, "wdth" 240;
	font-size: 23.88889vw;
	line-height: 80%;
	text-transform: uppercase;
	margin-bottom: 1.94444vw;
}

.main-shop__subtitle {
	font-family: "HeadingNowVar", "Arial", sans-serif;
	font-variation-settings: "wght" 650, "wdth" 260;
	font-size: 6.66667vw;
	line-height: 100%;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

.main-shop__photo {
	height: 23.61111vw;
	background: #3c3c3e url(../img/main-shop/bg.jpg) no-repeat 50% 100%/100% auto;
}

.pages {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5.55556vw;
}

.pages DIV {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5.55556vw;
}

.pages A {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 7.77778vw;
	height: 7.77778vw;
	border-radius: 50%;
	font-size: 4.44444vw;
	letter-spacing: -0.03em;
}

.pages A:hover {
	color: #d90000;
}

.pages A.current {
	border: 1px solid #ff0000;
	color: #ff0000;
	pointer-events: none;
	cursor: default;
}

.pages-prev, .pages-next {
	flex: 0 0 7.77778vw;
	background: #ff0000;
}

.pages-prev:hover, .pages-next:hover {
	background: #d90000;
}

.pages-prev.disabled, .pages-next.disabled {
	background: #a6b0bf;
	pointer-events: none;
	cursor: default;
}

.pages-prev:after, .pages-next:after {
	content: '';
	width: 100%;
	height: 100%;
	background: url(../img/@shop/catalogue/arrow.svg) no-repeat 50% 50%/90% 90%;
}

.pages-prev:after {
	-webkit-transform: rotate(180deg);
	        transform: rotate(180deg);
}

.pages SPAN {
	font-size: 4.44444vw;
	letter-spacing: -0.03em;
}

.catalogue {
	padding: 8.33333vw 0 8.88889vw 0;
}

.catalogue__filter {
	display: flex;
	flex-wrap: wrap;
	gap: 1.38889vw;
	margin-bottom: 6.11111vw;
}

.catalogue__filter DIV {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2.77778vw;
	height: 8.05556vw;
	padding: 0 2.77778vw;
	border-radius: 3.33333vw;
	background: #f1f1f7;
	font-size: 4.44444vw;
	letter-spacing: -0.03em;
	cursor: pointer;
}

.catalogue__filter DIV:before {
	content: '';
	display: block;
	width: 3.61111vw;
	height: 3.61111vw;
	border-radius: 50%;
	background: #e4e4e4;
}

.catalogue__filter DIV.current {
	background: #ff0000;
	color: #fff;
}

.catalogue__filter DIV.current:before {
	background: #fff;
}

.catalogue__box {
	display: flex;
	flex-wrap: wrap;
	gap: 5.55556vw;
}

.catalogue__item {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 0 0 calc(50% - 2.77778vw);
	padding: 3.33333vw;
	border-radius: 4.44444vw;
	background: #f1f1f7;
	text-align: center;
}

.catalogue__item:before {
	width: 6.38889vw;
	height: 6.38889vw;
}

.catalogue__item:hover {
	background: #e0e2ea;
}

.catalogue__item .quantitybox {
	position: absolute;
	top: 1.94444vw;
	left: 1.94444vw;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 1.11111vw;
}

.catalogue__item .quantitybox.hidden {
	display: none;
}

.catalogue__item .quantitybox__title {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 4.16667vw;
	padding: 0 3.33333vw;
	border-radius: 25vw;
	background: #020202;
	font-size: 1.94444vw;
	color: #fff;
}

.catalogue__item .quantity {
	display: flex;
	align-items: center;
	gap: 1.38889vw;
}

.catalogue__item .quantity__num {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 4.16667vw;
	min-width: 4.16667vw;
	padding: 0 0.83333vw;
	border: 1px solid #020202;
	border-radius: 25vw;
	font-size: 2.22222vw;
	line-height: 90%;
	letter-spacing: -0.03em;
}

.catalogue__item .quantity__minus, .catalogue__item .quantity__plus {
	display: blosk;
	width: 4.16667vw;
	height: 4.16667vw;
	border: 1px solid #020202;
	border-radius: 25vw;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 120% 120%;
	text-indent: -2777.77778vw;
	cursor: pointer;
}

.catalogue__item .quantity__minus:hover, .catalogue__item .quantity__plus:hover {
	border: 0;
	background-color: rgba(0, 0, 0, 0.2);
}

.catalogue__item .quantity__minus.disabled, .catalogue__item .quantity__plus.disabled {
	opacity: .3;
	pointer-events: none;
}

.catalogue__item .quantity__minus {
	background-image: url(../img/common/minus.svg);
}

.catalogue__item .quantity__plus {
	background-image: url(../img/common/plus.svg);
}

.catalogue__item-photo {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 36.11111vw;
}

.catalogue__item-photo:before {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	content: '';
	width: 28.33333vw;
	height: 28.33333vw;
	border-radius: 50%;
	background: #e0e2ea;
}

.catalogue__item-photo IMG {
	position: relative;
}

.catalogue__item-info {
	display: flex;
	flex-direction: column;
	gap: 3.88889vw;
}

.catalogue__item-text {
	font-size: 4.44444vw;
	line-height: 90%;
	letter-spacing: -0.03em;
}

.catalogue__item-price {
	font-size: 5.55556vw;
	line-height: 90%;
	letter-spacing: -0.03em;
}

.catalogue__item-bar {
	display: none;
}

.catalogue .pages {
	padding-top: 5.55556vw;
}

.advantages {
	padding: 8.33333vw 0 5.55556vw 0;
	overflow: hidden;
}

.advantages__box {
	margin-bottom: 10.27778vw;
}

.advantages__head {
	display: flex;
	flex-direction: column;
	gap: 1.38889vw;
	margin-bottom: 5.55556vw;
}

.advantages__title {
	font-family: "HeadingNowVar", "Arial", sans-serif;
	font-variation-settings: "wght" 650, "wdth" 260;
	font-size: 12.22222vw;
	line-height: 90%;
	letter-spacing: -0.015em;
	text-transform: uppercase;
}

.advantages__description {
	font-size: 5vw;
	line-height: 110%;
	letter-spacing: -0.02em;
}

.advantages__info {
	display: flex;
	flex-direction: column;
	gap: 5.55556vw;
}

.advantages__info LI {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 5.55556vw 5.55556vw 6.66667vw 5.55556vw;
	border-radius: 3.33333vw 0 3.33333vw 3.33333vw;
	background: #f1f1f7;
	margin-right: 2.77778vw;
}

.advantages__info .number {
	margin-bottom: 4.16667vw;
}

.advantages__info-text {
	font-family: "HeadingNowVar", "Arial", sans-serif;
	font-variation-settings: "wght" 650, "wdth" 260;
	font-size: 12.22222vw;
	line-height: 80%;
	text-transform: uppercase;
}
