@font-face {
	font-family: "Manrope";
	src: url("/local/templates/aspro_max/fonts/manrope/Manrope-VariableFont_wght.ttf")
		format("truetype");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

* {
	font-family: "Manrope", sans-serif !important;
}

/* ===== СБРОС ASPRO-СТИЛЕЙ ДЛЯ НАШЕЙ ШАПКИ ===== */

.nh-header li,
.nh-drawer li,
.nh-header ul,
.nh-drawer ul {
	list-style: none !important;
	margin: 0 !important;
}

.nh-header li::before,
.nh-header li::after,
.nh-drawer li::before,
.nh-drawer li::after {
	content: none !important;
	display: none !important;
}

.nh-header a,
.nh-drawer a {
	text-decoration: none !important;
}

/* Сброс Aspro font на body */
body {
	font-family: "Manrope", sans-serif !important;
	font-size: unset !important;
	line-height: unset !important;
}

/* Скрываем стандартную Aspro-шапку */
.header_wrap.visible-lg.visible-md,
.header_wrap.visible-lg,
#headerfixed,
#mobileheader,
body .wrapper1.mfixed_Y > div#mobileheader.fixed {
	display: none !important;
}

/* Скрываем стандартный Aspro-футер */
#footer {
	display: none !important;
}

/* Сброс text-align на мобиле от Aspro */
@media (max-width: 767px) {
	footer {
		text-align: left !important;
	}
}

/* Скрываем плитки разделов для Смотреть все, Новинки, Коллекции */
.hide-subsection-tiles .sections-list-wrapper,
.hide-subsection-tiles .catalog-sections,
.hide-subsection-tiles .aspro-sections,
.hide-subsection-tiles .subsections-list,
.hide-subsection-tiles [class*="sections-list"] {
	display: none !important;
}

/* ===== НАША ШАПКА EUPHORIA ===== */
.nh-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 900;

	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(0.83vw);
	border-bottom: 1px solid rgba(240, 240, 240, 1);
	padding-top: env(safe-area-inset-top);

	/* Нужно для позиционирования мегаменю */
	overflow: visible;
}
.nh-header-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;

	padding-inline: 6.33vw;
	height: 6.167vw;
}

.nh-header-logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.nh-header-logo svg {
	width: 10.42vw;
	height: auto;
}

.nh-header-right-icon svg {
	width: 1.5vw;
	height: 1.5vw;
}

.nh-header-left {
	display: flex;

	gap: 2.75vw;
}

.nh-header-left > a,
.nh-header-left > div {
	color: rgba(30, 30, 30, 1);
	font-family: "Manrope";
	font-size: 1.167vw;
	font-weight: 500;
	line-height: 120%;
	cursor: pointer;
	transition: color 0.2s;
}

.nh-header-left > a:hover,
.nh-header-left > div:hover {
	color: rgba(223, 51, 42, 1);
}

.nh-header-right {
	display: flex;
	align-items: center;

	gap: 1.667vw;
}

.nh-header-right a,
.nh-header-right button {
	transition: opacity 0.2s;
}

.nh-header-right a:hover,
.nh-header-right button:hover {
	opacity: 0.6;
}

.nh-header-right-input {
	position: relative;

	width: 13.583vw;
	height: 2.25vw;
	border-radius: 1.5vw;

	background: rgba(217, 217, 217, 0.3);
	transition: background 0.2s;
}

.nh-header-right-input:hover {
	background: rgba(217, 217, 217, 0.55);
}

.nh-header-right-input:focus-within {
	background: rgba(217, 217, 217, 0.55);
}

.nh-header-right-input-icon {
	position: absolute;

	left: 1vw;
	top: 50%;
	transform: translateY(-50%);

	width: 1.25vw;
	height: 1.25vw;
}

.nh-header-right-input input {
	width: 100%;
	height: 100%;
	padding-left: 3vw;
	border: none;
	border-radius: 1.5vw;
	outline: none;

	background: transparent;

	font-family: "Manrope";
	font-style: Regular;
	font-size: 1.167vw;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -1%;
}

/* ===== БУРГЕР (скрыт на десктопе) ===== */
.nh-burger {
	display: none;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
}

/* ===== DRAWER ===== */
.nh-drawer-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1100;
	opacity: 0;
	transition: opacity 0.3s;
}

.nh-drawer-overlay.is-open {
	display: block;
	opacity: 1;
}

.nh-drawer {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 23.33vw;
	background: #fff;
	z-index: 1200;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	padding: 1.667vw 0 3.333vw;
}

.nh-drawer.is-open {
	transform: translateX(0);
}

.nh-drawer-header {
	display: flex;
	justify-content: flex-end;
	padding: 0 1.667vw 1.667vw;
}

.nh-drawer-close {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.333vw;
	opacity: 0.6;
	transition: opacity 0.2s;
}

.nh-drawer-close:hover {
	opacity: 1;
}

.nh-drawer-nav {
	list-style: none !important;
	padding: 0 2vw !important;
	display: flex;
	flex-direction: column;
}

.nh-drawer-nav li a {
	display: block;
	padding: 1.333vw 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	color: rgba(30, 30, 30, 1);
	font-family: "Manrope";
	font-size: 1.333vw;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.2s;
}

.nh-drawer-nav li a:hover {
	color: rgba(223, 51, 42, 1);
}

.nh-drawer-nav__favorites a {
	display: flex;
	align-items: center;
	gap: 0.833vw;
}

.nh-drawer-search {
	padding: 0 2vw 0.667vw;
}

.nh-drawer-search .nh-header-right-input {
	width: 100%;
	height: 3vw;
	border-radius: 1.5vw;
}

/* ===== МЕГАМЕНЮ КАТАЛОГ ===== */
.nh-header-mega {
	position: static;
}

.nh-header-mega__trigger {
	display: flex;
	align-items: center;
	gap: 0.3vw;
	cursor: pointer;
	color: rgba(30, 30, 30, 1);
	font-family: "Manrope";
	font-size: 1.167vw;
	font-weight: 500;
	line-height: 120%;
	transition: color 0.2s;
	white-space: nowrap;
}

.nh-header-mega__trigger::after {
	content: "";
	display: inline-block;
	width: 0.35vw;
	height: 0.35vw;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-0.1vw);
	transition: transform 0.2s;
	flex-shrink: 0;
}

.nh-header-mega:hover .nh-header-mega__trigger {
	color: rgba(223, 51, 42, 1);
}

.nh-header-mega:hover .nh-header-mega__trigger::after {
	transform: rotate(-135deg) translateY(0.15vw);
}

.nh-header-mega__panel {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 1px solid rgba(240, 240, 240, 1);
	box-shadow: 0 1vw 2.5vw rgba(0, 0, 0, 0.07);
	padding: 2vw 6.333vw;
	z-index: 200;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-0.4vw);
	transition:
		opacity 0.2s ease,
		visibility 0.2s ease,
		transform 0.2s ease;
}

.nh-header-mega:hover .nh-header-mega__panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nh-header-mega__top {
	display: flex;
	gap: 2vw;
	padding-bottom: 1.2vw;
	margin-bottom: 1.2vw;
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.nh-header-mega__top a {
	font-size: 1.05vw;
	font-weight: 600;
	color: rgba(30, 30, 30, 1);
	letter-spacing: 0.03em;
	text-transform: uppercase;
	transition: color 0.15s;
}

.nh-header-mega__top a:hover {
	color: rgba(223, 51, 42, 1);
}

.nh-header-mega__cols {
	display: flex;
	gap: 4vw;
}

.nh-header-mega__col {
	display: flex;
	flex-direction: column;
	gap: 0.5vw;
	min-width: 14vw;
}

.nh-header-mega__col-title {
	font-size: 0.9vw;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(223, 51, 42, 1);
	margin-bottom: 0.4vw;
}

.nh-header-mega__col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.nh-header-mega__col ul li a {
	display: block;
	padding: 0.35vw 0;
	font-size: 1.05vw;
	font-weight: 400;
	color: rgba(30, 30, 30, 1);
	transition: color 0.15s;
}

.nh-header-mega__col ul li a:hover {
	color: rgba(223, 51, 42, 1);
}

/* Сброс Aspro-стилей для li в мегаменю */
.nh-header-mega__col ul li {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}
.nh-header-mega__col ul li::before,
.nh-header-mega__col ul li::after {
	content: none !important;
	display: none !important;
}
.nh-header-mega__col-divider {
	height: 1px;
	background: rgba(0, 0, 0, 0.07);
	margin: 0.5vw 0;
}

/* ===== МОБИЛЬНЫЙ АККОРДЕОН В DRAWER ===== */
.nh-drawer-nav__accordion .nh-drawer-nav__toggle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 1.333vw 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	color: rgba(30, 30, 30, 1);
	font-family: "Manrope";
	font-size: 1.333vw;
	font-weight: 500;
	background: none;
	border-top: none;
	border-left: none;
	border-right: none;
	cursor: pointer;
	text-align: left;
}

.nh-drawer-nav__icon {
	font-size: 1.5vw;
	line-height: 1;
	transition: transform 0.25s ease;
	display: inline-block;
	flex-shrink: 0;
}

.nh-drawer-nav__accordion.is-open .nh-drawer-nav__icon {
	transform: rotate(45deg);
}

.nh-drawer-nav__sub {
	list-style: none;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.nh-drawer-nav__accordion.is-open .nh-drawer-nav__sub {
	max-height: 60vw;
}

.nh-drawer-nav__sub li a {
	display: block;
	padding: 0.8vw 0 0.8vw 2vw;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	color: rgba(30, 30, 30, 0.65);
	font-size: 1.1vw;
	font-weight: 400;
	transition: color 0.15s;
}

.nh-drawer-nav__sub li a:hover {
	color: rgba(223, 51, 42, 1);
}

@media (max-width: 767px) {
	.nh-drawer-nav__accordion .nh-drawer-nav__toggle {
		font-size: 4vw;
		padding: 4vw 0;
	}

	.nh-drawer-nav__icon {
		font-size: 5vw;
	}

	.nh-drawer-nav__accordion.is-open .nh-drawer-nav__sub {
		max-height: 200vw;
	}

	.nh-drawer-nav__sub li a {
		font-size: 3.5vw;
		padding: 2.5vw 0 2.5vw 4vw;
	}
}

/* ===== HERO ===== */
.nh-hero {
	position: relative;
	width: 100%;
	padding-inline: 6.333vw;
	padding-block: 2.667vw 2.833vw;
}

.nh-hero .swiper {
	width: 100%;
	border-radius: 1.333vw;
	overflow: hidden;
}

/* Убираем синие стрелки Swiper v11 на не-наших сваперах */
.swiper-button-prev:not(.nh-hero__prev),
.swiper-button-next:not(.nh-hero__next) {
	color: transparent !important;
}

.nh-hero__slide {
	height: 43.667vw !important;
	background-size: cover;
	background-position: center top;
	background-color: #c0a0a0;
	position: relative;
}

.nh-hero__bottom {
	position: absolute;
	bottom: 2.5vw;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
}

.nh-hero__btn {
	padding: 1.625vw 13.708vw;
	border-radius: 19.667vw;

	background: rgba(255, 255, 255, 0.7);

	color: rgba(52, 53, 56, 1);
	font-family: "Manrope";
	font-style: Medium;
	font-size: 1.871vw;
	font-weight: 500;
	line-height: 2.583vw;
	letter-spacing: -2%;
	text-align: left;

	transition: background 0.2s;
}

.nh-hero__btn:hover {
	background: #fff;
}

.nh-hero__prev,
.nh-hero__next {
	color: #fff;
}

.nh-hero__prev::after,
.nh-hero__next::after {
	font-size: 1.5vw;
	font-weight: 700;
}

@media (max-width: 767px) {
	.nh-hero__prev,
	.nh-hero__next {
		display: none;
	}
}

/* ===== БЕСТСЕЛЛЕРЫ ===== */
.nh-bestsellers {
	display: flex;
	flex-direction: column;

	gap: 3.333vw;
	padding-block: 6.333vw;

	background: rgba(223, 51, 42, 1);
}

.nh-bestsellers__title {
	color: rgba(255, 255, 255, 1);
	font-family: "Manrope";
	font-style: Medium;
	font-size: 3vw;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -1%;

	margin-left: 6.333vw;
}

.nh-bestsellers__swiper-wrap {
	overflow: hidden;
}

.nh-bestsellers__mobile {
	display: none;
}

.nh-bestsellers__swiper {
	overflow: visible !important;
	padding: 0 6.333vw !important;
}

.nh-bestsellers__swiper > .swiper-wrapper > .swiper-slide {
	width: 20vw;
}

.nh-product-card {
	display: flex;
	flex-direction: column;
	width: 20vw;
	gap: 1.667vw;
}

.nh-product-card__img {
	position: relative;
	height: 28.75vw;
	border-radius: 1.333vw;
	background: #eee;
	overflow: hidden;
}

/* Фото-слайдер внутри карточки */
.nh-product-card__img .swiper,
.nh-product-card__img .nh-card-swiper,
.nh-product-card__img .swiper-wrapper,
.nh-product-card__img .swiper-slide {
	height: 100%;
}

.nh-product-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Пагинация карточки */
.nh-product-card__img .swiper-pagination {
	bottom: 1.5vw;
}

.nh-product-card__img .swiper-pagination-bullet {
	width: 0.667vw;
	height: 0.667vw;

	background: rgba(217, 217, 217, 1);
	opacity: 1;
}

.nh-product-card__img .swiper-pagination-bullet-active {
	background: rgba(223, 51, 42, 1);
}

.nh-product-card__info {
	display: flex;
	flex-direction: column;

	gap: 1.667vw;
}

.nh-product-card__name {
	color: rgba(255, 255, 255, 1);
	font-family: "Manrope";
	font-style: Medium;
	font-size: 1.333vw;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -1%;
}

.nh-product-card__name:hover {
	color: rgba(255, 255, 255, 1) !important;
	text-decoration: none !important;
	opacity: 1 !important;
}

.nh-product-card__price {
	color: rgba(255, 255, 255, 0.8);
	font-family: "Manrope";
	font-style: Regular;
	font-size: 1.667vw;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -1%;
}

/* ===== 2 БАННЕРА ===== */
.nh-banners {
	display: flex;
	justify-content: center;

	padding: 3.833vw 6.333vw;
	gap: 2.5vw;
}

.nh-banners__left {
	display: flex;
	align-items: flex-end;

	width: 42.5vw;
	aspect-ratio: 1/1;
	border-radius: 2.5vw;
	padding: 1.833vw 1.333vw;

	background: #d4b8b0 url("") center/cover;
}

.nh-banners__right {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;

	width: 42.5vw;
	aspect-ratio: 1/1;
	border-radius: 2.5vw;
	padding-block: 6.5vw 8.667vw;
	padding-inline: 2.5vw 4.333vw;
	gap: 1.167vw;

	background: rgba(223, 51, 42, 1);
}

.nh-banners__left-content {
	display: flex;
	flex-direction: column;

	width: 100%;
	gap: 4.167vw;
}

.nh-banners__left-desc {
	display: flex;
	flex-direction: column;

	gap: 0.667vw;
	margin-inline: 1.667vw;
}

.nh-banners__left-desc-title {
	color: rgba(255, 255, 255, 1);
	font-family: "Manrope";
	font-style: Medium;
	font-size: 2vw;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -1%;
}

.nh-banners__left-desc-text {
	color: rgba(255, 255, 255, 1);
	font-family: "Manrope";
	font-style: Regular;
	font-size: 1.167vw;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -1%;
}

.nh-banners__btn-white {
	display: flex;
	justify-content: center;

	width: 100%;
	border-radius: 19.833vw;
	padding-block: 1.625vw;

	color: rgba(0, 0, 0, 1);
	font-family: "Manrope";
	font-style: Medium;
	font-size: 1.871vw;
	font-weight: 500;
	line-height: 2.583vw;
	letter-spacing: -2%;

	background: rgba(255, 255, 255, 1);
	transition:
		background 0.2s,
		color 0.2s;
}

.nh-banners__btn-white:hover {
	background: rgba(223, 51, 42, 1);
	color: #fff;
}

.nh-banners__right-label__wrapper {
	display: flex;
	flex-direction: column;

	gap: 1.167vw;
}

.nh-banners__right-tag {
	color: rgba(255, 255, 255, 1);
	font-family: "Manrope";
	font-style: Regular;
	font-size: 1.167vw;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -1%;
}

.nh-banners__right-label {
	color: rgba(255, 255, 255, 1);
	font-family: "Manrope";
	font-style: Medium;
	font-size: 2vw;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -1%;
}

.nh-banners__right-text {
	color: rgba(255, 255, 255, 1);
	font-family: "Manrope";
	font-style: Regular;
	font-size: 1.167vw;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -1%;
}

/* ===== АМБАССАДОРЫ ===== */
.nh-ambassadors__products {
	transition: opacity 0.2s ease;
}

.nh-ambassadors__products.is-fading {
	opacity: 0;
}

.nh-ambassadors {
	display: flex;
	flex-direction: column;

	gap: 3.833vw;
	padding-block: 4.667vw;
}

.nh-ambassadors__title {
	color: rgba(52, 53, 56, 1);
	font-family: "Manrope";
	font-style: Medium;
	font-size: 3vw;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -1%;

	margin-left: 6.333vw;
}

.nh-ambassadors-content {
	display: flex;
	flex-direction: column;
	gap: 2.667vw;
}

.nh-ambassadors__cards-swiper {
	width: 100%;
	overflow: hidden;
}

.nh-ambassadors__pagination {
	bottom: 2.167vw !important;
}

.nh-ambassadors__pagination .swiper-pagination-bullet {
	width: 0.67vw;
	height: 0.67vw;
	background: rgba(217, 217, 217, 1);
	opacity: 1;
}

.nh-ambassadors__pagination .swiper-pagination-bullet-active {
	background: rgba(223, 51, 42, 1);
}

.nh-ambassador-card {
	display: flex;
	overflow: hidden;

	height: 36.75vw;
	gap: 2.667vw;
	margin-inline: 6.333vw;
	border-radius: 1.333vw;

	background: rgba(232, 232, 232, 1);
}

.nh-ambassador-card__img {
	background: #ccc;

	width: 42.167vw;
	height: 100%;
}

.nh-ambassador-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nh-ambassador-card__info {
	position: relative;

	display: flex;
	flex-direction: column;
	justify-content: center;

	flex: 1;
	height: 100%;
}

.nh-ambassador-card__arrow {
	position: absolute;

	display: flex;
	align-items: center;
	justify-content: center;

	top: 2.417vw;
	right: 2vw;
	width: 7.5vw;
	height: 5.083vw;
	border-radius: 14.167vw;

	background: rgba(223, 51, 42, 1);
	cursor: pointer;
	transition:
		background 0.2s,
		transform 0.2s;
	text-decoration: none;
}

.nh-ambassador-card__arrow:hover {
	background: rgba(190, 30, 22, 1);
	transform: scale(1.06);
}

.nh-ambassador-card__arrow-icon {
	width: 3.583vw;
	height: 3.583vw;
}

.nh-ambassador-card-desc {
	display: flex;
	flex-direction: column;

	gap: 3.667vw;
}

.nh-ambassador-card-desc__wrapper {
	display: flex;
	flex-direction: column;

	gap: 1.167vw;
}

.nh-ambassador-card-desc__collection {
	color: rgba(52, 53, 56, 1);
	font-family: "Manrope";
	font-style: Medium;
	font-size: 2vw;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -1%;
}

.nh-ambassador-card-desc__text {
	color: rgba(52, 53, 56, 1);
	font-family: "Manrope";
	font-style: Regular;
	font-size: 1.333vw;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -1%;

	width: 35vw;
}

.nh-ambassador-card-desc__name {
	color: rgba(52, 53, 56, 1);
	font-family: "Manrope";
	font-style: Medium;
	font-size: 1.667vw;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -1%;
}

.nh-ambassador-products__swiper {
	padding: 0 6.333vw !important;
}

.nh-ambassadors__products .swiper-slide {
	width: 20vw;
}

.nh-ambassadors__products .nh-product-card {
	display: flex;
	flex-direction: column;

	width: 20vw;
	gap: 1.667vw;
}

.nh-ambassadors__products .nh-product-card__img {
	width: 100%;
	height: 28.75vw;
	border-radius: 1.333vw;
	overflow: hidden;
}

.nh-ambassadors__products .nh-product-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nh-ambassadors__products .nh-product-card__info {
	display: flex;
	flex-direction: column;

	gap: 1.667vw;
}

.nh-ambassadors__products .nh-product-card__name {
	color: rgba(52, 53, 56, 1);
	font-family: "Manrope";
	font-style: Regular;
	font-size: 1.333vw;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -1%;
}

.nh-ambassadors__products .nh-product-card__price {
	color: rgba(52, 53, 56, 1);
	font-family: "Manrope";
	font-style: Regular;
	font-size: 1.667vw;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -1%;
}

/* ===== FOOTER ===== */
.nh-footer-mobile {
	display: none;
}

.nh-footer-desktop {
	display: flex;
	justify-content: space-between;

	margin-inline: 6.333vw;
	margin-block: 3.75vw;
	border-radius: 1.333vw;
	padding-inline: 2.5vw 8vw;
	padding-block: 5.333vw 6.5vw;

	background: rgba(223, 51, 42, 1);
}

.nh-footer-col-container {
	display: flex;

	gap: 5vw;
}

.nh-footer-col {
	display: flex;
	flex-direction: column;

	gap: 2vw;
}

.nh-footer-col__title {
	color: rgba(255, 255, 255, 1);
	font-family: "Manrope";
	font-style: Medium;
	font-size: 1.667vw;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -1%;
}

.nh-footer-col-wrapper {
	display: flex;
	flex-direction: column;

	gap: 1vw;
}

.nh-footer-col-wrapper a {
	color: rgba(255, 255, 255, 1);
	font-family: "Manrope";
	font-style: Regular;
	font-size: 1.333vw;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -1%;
}

.nh-footer-col-between {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.nh-footer-subscribe-link {
	color: rgba(255, 255, 255, 1) !important;
	font-family: "Manrope";
	font-size: 1.333vw;
	font-weight: 400;
	line-height: 120%;
	text-align: left;
	text-decoration: underline !important;
}

.nh-footer-subscribe-link:hover {
	text-decoration: underline !important;
}

.nh-footer-legal {
	display: flex;
	flex-direction: column;

	gap: 1.333vw;
	margin-top: 0.667vw;
}

.nh-footer-legal p {
	margin: 0 !important;
	color: rgba(255, 255, 255, 1);
	font-family: "Manrope";
	font-size: 1.333vw;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -1%;
}

/* ===== НОВОСТИ ===== */
.nh-news {
	display: flex;
	flex-direction: column;

	gap: 4.167vw;
	padding: 3.5vw 6.333vw;
}

.nh-news__title {
	color: rgba(52, 53, 56, 1);
	font-family: "Manrope";
	font-style: Medium;
	font-size: 3vw;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -1%;
}

.nh-news__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.667vw;
}

.nh-news-card {
	display: flex;
	flex-direction: column;

	gap: 2.833vw;
}

.nh-news-card__img {
	overflow: hidden;

	height: 24.583vw;
	border-radius: 1.333vw;

	background: #ddd;
}

.nh-news-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nh-news-card-info {
	display: flex;
	flex-direction: column;

	gap: 1.833vw;
}

.nh-news-card-info__title {
	color: rgba(52, 53, 56, 1);
	font-family: "Manrope";
	font-style: Medium;
	font-size: 1.611vw;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: -1%;
}

.nh-news-card-info__text {
	color: rgba(52, 53, 56, 1);
	font-family: "Manrope";
	font-style: Regular;
	font-size: 1.333vw;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -1%;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
	/* ===== ШАПКА МОБИЛЕ ===== */
	.nh-header-wrapper {
		align-items: center;

		padding-inline: 8vw;
		padding-bottom: 0;
		height: 16.5vw;
	}

	/* Показываем бургер */
	.nh-burger {
		display: flex;
	}

	/* Прячем десктопную навигацию, поиск и избранное */
	.nh-header-left,
	.nh-header-right-input,
	.nh-header-favorites {
		display: none;
	}

	/* Логотип по центру */
	.nh-header-logo {
		transform: translate(-50%, -50%);
		left: 48%;
	}

	/* Правые иконки — только профиль и корзина */
	.nh-header-right {
		gap: 5vw;
	}

	.nh-header-logo svg {
		width: 24vw;
	}

	.nh-header-right-icon svg {
		width: 5vw;
		height: 5vw;
	}

	.nh-header-right-input-icon {
		width: 3.75vw;
		height: 3.75vw;
	}

	/* ===== HERO ===== */
	.nh-hero {
		padding-inline: 5vw;
		padding-top: 0;
		padding-bottom: 5.5vw;
	}

	.nh-hero .swiper {
		border-radius: 4vw;
	}

	.nh-hero__slide {
		height: 90vw !important;
	}

	.nh-hero__bottom {
		bottom: 4vw;
		left: 4vw;
		right: 4vw;
	}

	.nh-hero__btn {
		display: flex;
		justify-content: center;

		width: 100%;
		padding: 3.5vw 0;
		border-radius: 42.5vw;

		font-size: 4vw;
		line-height: 5.5vw;
	}

	/* ===== БЕСТСЕЛЛЕРЫ ===== */
	.nh-bestsellers {
		gap: 4.25vw;
		padding-block: 7.5vw 10vw;
	}

	.nh-bestsellers__title {
		font-size: 6vw;
		font-weight: 400;
		line-height: 7.25vw;
		letter-spacing: 0%;
		margin-left: 5vw;
		padding-block: 2vw;
	}

	.nh-bestsellers__desktop {
		display: none !important;
	}

	.nh-bestsellers__mobile {
		display: flex;
		flex-direction: row;
		gap: 3vw;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		scroll-padding-left: 5vw;
		scrollbar-width: none;
		padding-left: 5vw;
	}

	.nh-bestsellers__mobile::-webkit-scrollbar {
		display: none;
	}

	.nh-bestsellers__mobile::after {
		content: "";
		flex: 0 0 5vw;
	}

	.nh-bestsellers__mobile .nh-product-card {
		width: 42vw;
		flex-shrink: 0;
		scroll-snap-align: start;
	}

	.nh-bestsellers__swiper {
		padding: 0 5vw;
	}

	.nh-bestsellers__swiper > .swiper-wrapper > .swiper-slide {
		width: 42vw;
	}

	.nh-product-card {
		width: 42vw;
		gap: 3.5vw;
	}

	.nh-product-card__img {
		height: 60vw;
		border-radius: 3vw;
	}

	/* Пагинация карточки */
	.nh-product-card__img .swiper-pagination {
		bottom: 3vw;
	}

	.nh-product-card__img .swiper-pagination-bullet {
		width: 1.5vw;
		height: 1.5vw;
	}

	.nh-product-card__info {
		gap: 3.5vw;
	}

	.nh-product-card__name {
		font-size: 3.5vw;
	}

	.nh-product-card__price {
		font-size: 3.5vw;
	}

	/* ===== 2 БАННЕРА ===== */
	.nh-banners {
		padding: 5vw;
		padding-top: 10vw;
		gap: 0;
	}

	.nh-banners__left {
		display: flex;
		align-items: flex-end;

		width: 100%;
		border-radius: 4vw;
		padding: 4vw;
	}

	.nh-banners__right {
		display: none;
	}

	.nh-banners__left-content {
		gap: 5vw;
	}

	.nh-banners__left-desc {
		margin-inline: 0;
		gap: 2vw;
	}

	.nh-banners__left-desc-title {
		font-size: 4vw;
	}

	.nh-banners__left-desc-text {
		font-size: 3.5vw;
	}

	.nh-banners__btn-white {
		border-radius: 42.5vw;
		padding-block: 3.375vw;

		font-size: 4vw;
		line-height: 5.5vw;
	}

	/* ===== АМБАССАДОРЫ ===== */
	.nh-ambassadors {
		gap: 7vw;
		padding-block: 6vw;
	}

	.nh-ambassadors__title {
		font-size: 5vw;
		font-weight: 400;
		line-height: 6.25vw;
		letter-spacing: 0%;

		margin-left: 5vw;
	}

	.nh-ambassador-card {
		height: 58vw;
		gap: 3vw;
		margin-inline: 5vw;
	}

	.nh-ambassador-card__img {
		min-width: 40vw;
		max-width: 40vw;
	}

	.nh-ambassador-card__arrow {
		top: 2vw;
		right: 2vw;
		width: 13.75vw;
		height: 10vw;
	}

	.nh-ambassadors__pagination {
		bottom: 2vw !important;
	}

	.nh-ambassadors__pagination .swiper-pagination-bullet {
		width: 1.5vw;
		height: 1.5vw;
	}

	.nh-ambassador-card__arrow-icon {
		width: 6vw;
		height: 6vw;
	}

	.nh-ambassador-card-desc {
		flex-direction: column-reverse;

		gap: 5.5vw;
	}

	.nh-ambassador-card-desc__wrapper {
		gap: 2vw;
	}

	.nh-ambassador-card-desc__collection {
		font-size: 3.5vw;
	}

	.nh-ambassador-card-desc__text {
		width: 45vw;

		font-size: 3vw;
	}

	.nh-ambassador-card-desc__name {
		font-size: 3.5vw;
	}

	.nh-ambassador-products__swiper {
		padding: 0 5vw !important;
	}

	.nh-ambassadors__products .swiper-slide {
		width: 44vw;
	}

	.nh-ambassadors__products .nh-product-card {
		width: 44vw;
		gap: 3.5vw;
	}

	.nh-ambassadors__products .nh-product-card__img {
		height: 63.5vw;
		border-radius: 3vw;
	}

	.nh-ambassadors__products .nh-product-card__info {
		gap: 3.5vw;
	}

	.nh-ambassadors__products .nh-product-card__name {
		font-size: 3.5vw;
		font-weight: 500;
	}

	.nh-ambassadors__products .nh-product-card__price {
		font-size: 3.5vw;
	}

	/* ===== ФУТЕР МОБИЛЕ ===== */
	.nh-footer-desktop {
		display: none;
	}

	.nh-footer-mobile {
		display: flex;
		flex-direction: column;

		gap: 7.5vw;
	}

	.nh-footer-accordion {
		padding: 0 5vw;
	}

	.nh-footer-accordion__item {
		display: flex;
		flex-direction: column;
	}

	.nh-footer-accordion__trigger {
		display: flex;
		justify-content: space-between;
		align-items: center;
		background: none;

		width: 100%;
		border: none;
		border-top: 1px solid rgba(52, 53, 56, 1);
		cursor: pointer;
		padding-block: 4vw;

		color: rgba(52, 53, 56, 1);
		font-family: "Manrope";
		font-size: 3.5vw;
		font-weight: 500;
		line-height: 120%;
		letter-spacing: -1%;
		text-align: left;
	}

	.nh-footer-accordion__icon {
		font-size: 5.5vw;
		color: #111;
		line-height: 1;
		flex-shrink: 0;
		font-style: normal;
	}

	.nh-footer-accordion__icon::after {
		content: "−";
	}

	.nh-footer-accordion__item.is-closed .nh-footer-accordion__icon::after {
		content: "+";
	}

	.nh-footer-accordion__body {
		overflow: hidden;
		transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.nh-footer-accordion__item.is-closed .nh-footer-accordion__body {
		max-height: 0 !important;
	}

	.nh-footer-accordion__inner {
		display: flex;
		flex-direction: column;

		gap: 4vw;
		padding-left: 3.5vw;
		padding-block: 2vw 6vw;
	}

	.nh-footer-accordion__body a {
		color: rgba(52, 53, 56, 1);
		font-family: "Manrope";
		font-size: 3.5vw;
		font-weight: 400;
		line-height: 120%;
		letter-spacing: -1%;
	}

	.nh-footer-mobile-bottom {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;

		background: rgba(223, 51, 42, 1);

		padding: 9vw 5vw;
	}

	.nh-footer-mobile-bottom__left,
	.nh-footer-mobile-bottom__right {
		display: flex;
		flex-direction: column;

		gap: 2vw;
	}

	.nh-footer-mobile-bottom__left a,
	.nh-footer-mobile-bottom__right p {
		margin: 0 !important;
		color: rgba(255, 255, 255, 1);
		font-family: "Manrope";
		font-size: 3vw;
		font-weight: 400;
		line-height: 120%;
	}

	.nh-footer-mobile-bottom .nh-footer-logo {
		margin-bottom: 4vw;
	}

	/* ===== НОВОСТИ ===== */
	.nh-news {
		gap: 9.5vw;
		padding: 5vw 0;
		margin-bottom: 8vw;
	}

	.nh-news__title {
		font-size: 5vw;
		font-weight: 400;
		line-height: 6.25vw;
		letter-spacing: 0%;

		margin-left: 5vw;
	}

	.nh-news__grid {
		display: flex;
		gap: 4vw;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		scroll-padding-left: 5vw;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-left: 5vw;
	}

	.nh-news__grid::-webkit-scrollbar {
		display: none;
	}

	.nh-news__grid::after {
		content: "";
		flex: 0 0 5vw;
	}

	.nh-news-card {
		flex: 0 0 90vw;
		scroll-snap-align: start;
		gap: 6vw;
	}

	.nh-news-card__img {
		height: 52vw;
	}

	.nh-news-card-info {
		gap: 4vw;
	}

	.nh-news-card-info__title {
		font-size: 4vw;
	}

	.nh-news-card-info__text {
		font-size: 3.5vw;
	}

	/* ===== ИСПРАВЛЕНИЯ VW ДЛЯ МОБИЛКИ ===== */
	.nh-drawer {
		width: 70vw;
		padding: 5vw 0 10vw;
	}

	.nh-drawer-header {
		padding: 0 5vw 5vw;
	}

	.nh-drawer-close {
		padding: 1vw;
	}

	.nh-drawer-nav {
		padding: 0 6vw !important;
	}

	.nh-drawer-nav li a {
		padding: 3vw 0 !important;
		font-size: 3.5vw;
	}

	.nh-drawer-search {
		padding: 0 6vw 2vw;
	}

	.nh-drawer-search .nh-header-right-input {
		height: 9vw;
		border-radius: 4.5vw;
	}

	.nh-footer-logo {
		font-size: 5vw;
		margin-top: 0;
	}

	.nh-news-card-info__title {
		font-size: 3.5vw;
	}

	.nh-news-card-info__text {
		font-size: 3.5vw;
	}

	/* ===== RADIUS И ПРОЧИЕ VW ФИКСЫ ===== */
	.nh-ambassador-card {
		border-radius: 4vw;
	}

	.nh-ambassador-card__arrow {
		border-radius: 9999px;
	}

	.nh-news-card__img {
		border-radius: 4vw;
	}

	.nh-news-card {
		border-radius: 4vw;
	}

	.nh-drawer-nav__favorites a {
		gap: 2.5vw;
	}
}

/* ===== ПОПАП ПОДПИСКИ ===== */
.nh-subscribe-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 2000;
	opacity: 0;
	transition: opacity 0.3s;
}
.nh-subscribe-overlay.is-open {
	display: block;
	opacity: 1;
}

.nh-subscribe-popup {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -48%);
	background: #fff;
	z-index: 2001;
	width: 90%;
	max-width: 600px;
	padding: 4rem;
	border-radius: 2rem;
	opacity: 0;
	transition:
		opacity 0.3s,
		transform 0.3s;
}
.nh-subscribe-popup.is-open {
	display: block;
	opacity: 1;
	transform: translate(-50%, -50%);
}
.nh-subscribe-popup__close {
	position: absolute;
	top: 1.8rem;
	right: 1.8rem;
	background: none;
	border: none;
	cursor: pointer;
	opacity: 0.4;
	transition: opacity 0.2s;
}
.nh-subscribe-popup__close:hover {
	opacity: 1;
}
.nh-subscribe-popup__title {
	font-family: "Manrope", sans-serif;
	font-size: 2.4rem;
	font-weight: 500;
	color: rgba(30, 30, 30, 1);
	margin-bottom: 0.6rem;
	line-height: 1.2;
}
.nh-subscribe-popup__subtitle {
	font-family: "Manrope", sans-serif;
	font-size: 1.4rem;
	font-weight: 300;
	color: #888;
	margin-bottom: 2.8rem;
}

/* Форма подписки */
.nh-subscribe-form__field {
	margin-bottom: 1.2rem;
}
.nh-subscribe-form__input {
	width: 100%;
	padding: 1.4rem 1.8rem;
	border: 1px solid #e0e0e0;
	border-radius: 10rem;
	outline: none;
	font-family: "Manrope", sans-serif;
	font-size: 1.4rem;
	font-weight: 300;
	color: rgba(30, 30, 30, 1);
	transition: border-color 0.2s;
	box-sizing: border-box;
}
.nh-subscribe-form__input:focus {
	border-color: rgba(30, 30, 30, 1);
}
.nh-subscribe-form__btn {
	width: 100%;
	padding: 1.5rem;
	background: rgba(223, 51, 42, 1);
	color: #fff;
	border: none;
	border-radius: 10rem;
	cursor: pointer;
	font-family: "Manrope", sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	transition: opacity 0.2s;
	margin-bottom: 1.2rem;
}
.nh-subscribe-form__btn:hover {
	opacity: 0.85;
}
.nh-subscribe-form__legal {
	font-family: "Manrope", sans-serif;
	font-size: 1.1rem;
	font-weight: 300;
	color: #bbb;
	text-align: center;
}
.nh-subscribe-form__legal a {
	color: #bbb;
	text-decoration: underline;
}
.nh-subscribe-form__error {
	color: rgba(223, 51, 42, 1);
	font-size: 1.2rem;
	margin-bottom: 0.8rem;
}
.nh-subscribe-form__success p {
	font-family: "Manrope", sans-serif;
	font-size: 1.6rem;
	font-weight: 300;
	color: rgba(30, 30, 30, 1);
	text-align: center;
	padding: 2rem 0;
}

.nh-bestsellers__swiper,
.nh-card-swiper {
	overflow: hidden;
	position: relative;
}

/* Временно отключить попап подписки */
#nh-subscribe-popup,
#nh-subscribe-overlay {
	display: none !important;
}
#nh-subscribe-trigger {
	pointer-events: none;
	cursor: default;
}
