/* ===============================
   HERO BLOCK
================================ */

.vt-hero {
	padding-top: 24px;
}

.vt-hero__grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 20px;
}

/* ===============================
   CARDS
================================ */

.vt-hero__card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	min-height: 340px;
}

/* ===============================
   LEFT CARD
================================ */

.vt-hero__card--main {
	background: linear-gradient(135deg, #0d3c55 0%, #1e6b8c 100%);
	color: #fff;
}

.vt-hero__content {
	position: relative;
	z-index: 2;
	padding: 40px;
	max-width: 520px;
}

.vt-hero__title {
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1.2;
	margin-bottom: 20px;
	font-weight: 400;
	margin-top: 0;
	text-transform: uppercase;
}

.vt-hero__text {
	opacity: 1;
	margin-bottom: 60px;
	line-height: 1.45;
	font-size: clamp(14px, 1vw, 16px);
	max-width: 308px;
}

.vt-hero__image {
	position: absolute;
	right: 0;
	bottom: 0;
	max-width: 64%;
	pointer-events: none;
}

.vt-hero__image img {
	width: 100%;
	height: auto;
	display: block;
}

/* ===============================
   RIGHT CARD — FIGMA MATCH
================================ */

.vt-hero__card--side {
	background: linear-gradient(135deg, #ffffff 0%, #eaf6ff 100%);
}

/* content */
.vt-hero__side-content {
	position: relative;
	z-index: 2;
	padding: 30px;
	max-width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}

.vt-hero__side-title {
	line-height: 1.2;
	margin-bottom: 12px;
	color: var(--text-black);
	font-size: clamp(25px, 4vw, 32px);
	font-weight: 400;
	margin-top: 0;
}

.vt-hero__side-text {
	line-height: 1.45;
	color: var(--text-black);
	margin-bottom: 20px;
	font-size: clamp(14px, 1vw, 16px);
	max-width: 276px;
}

/* image */
.vt-hero__side-image {
	position: absolute;
	right: 0px;
	bottom: 0;
	width: 67%;
	pointer-events: none;
}

.vt-hero__side-image img {
	width: 100%;
	height: auto;
	display: block;
}


.mob-img {
	display: none !important;
}

.cat-slider {
	--gap: 28px;
	--radius: 22px;
	--arrow-size: 44px;

	width: 100%;
}

.cat-slider__viewport {
	overflow: hidden;
}

.cat-slider__track {
	display: flex;
	gap: var(--gap);
	padding: 0;
	margin: 0;
	list-style: none;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.cat-slider__track::-webkit-scrollbar {
	display: none;
}

.cat-slider__item {
	scroll-snap-align: start;
	flex: 0 0 calc((100% - (var(--gap) * 3)) / 4);
	min-width: 240px;
}

.cat-slider__card {
	position: relative;
	display: block;
	height: 270px;
	border-radius: var(--radius);
	background: linear-gradient(135deg, #f4fbff 0%, #bfe6ff 55%, #84cbff 100%);
	overflow: hidden;
	text-decoration: none;
	color: #111;
	padding: 20px;
}

.cat-slider__card::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(120px 120px at 18% 20%, rgba(255, 255, 255, 0.9), transparent 60%),
		radial-gradient(220px 220px at 85% 60%, rgba(255, 255, 255, 0.35), transparent 65%);
	pointer-events: none;
}

.cat-slider__title {
	position: relative;
	z-index: 2;
	font-size: 22px;
	line-height: 1.1;
	font-weight: 500;
}

.cat-slider__media {
	position: absolute;
	right: 16px;
	bottom: 10px;
	width: 63%;
	height: 75%;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	z-index: 1;
}

.cat-slider__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: right bottom;
}

.cat-slider__controls {
	margin-top: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cat-slider__arrow {
	width: var(--arrow-size);
	height: var(--arrow-size);
	border-radius: 10px;
	border: 1px solid rgba(17, 17, 17, 0.12);
	background: #fff;
	box-shadow: 0 8px 18px rgba(9, 40, 62, 0.12);
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.cat-slider__arrow:disabled {
	opacity: 0.45;
	cursor: default;
}


/* ====== Слайдер “Топ товаров” ====== */
.vt-top-products {
	width: 100%;
	--gap: 28px;
	--arrow: 44px;
}

.vt-top-products__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 35px;
}

.vt-top-products__title {
	max-width: 980px;
}

.vt-top-products__arrows {
	display: inline-flex;
	gap: 10px;
	flex: 0 0 auto;
}

.vt-top-products__arrow {
	width: var(--arrow);
	height: var(--arrow);
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, .16);
	background: rgba(255, 255, 255, .95);
	box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	line-height: 1;
}

.vt-top-products__arrow:disabled {
	opacity: .45;
	cursor: default;
}

.vt-top-products__viewport {
	overflow: hidden;
}

.vt-top-products__track {
	display: flex;
	gap: var(--gap);
	margin: 0;
	padding: 0;
	list-style: none;

	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;

	scrollbar-width: none;
}

.vt-top-products__track::-webkit-scrollbar {
	display: none;
}

.vt-top-products__item {
	scroll-snap-align: start;
	flex: 0 0 calc((100% - (var(--gap) * 3)) / 4);
	min-width: 260px;
}


@media (hover:hover) {
	.cat-slider__card:hover {
		transform: translateY(-1px);
	}

	.cat-slider__arrow:hover {
		transform: translateY(-1px);
	}
}


.vt-cn-banner__card {
	position: relative;
	border-radius: 22px;
	overflow: hidden;
	min-height: 230px;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	background:
		radial-gradient(600px 260px at 8% 80%, rgba(70, 170, 210, .55), transparent 60%),
		radial-gradient(520px 320px at 22% 15%, rgba(85, 190, 230, .35), transparent 55%),
		linear-gradient(135deg, #0a2635 0%, #0d3b52 40%, #061a24 100%);
}

.vt-cn-banner__content {
	padding: 30px 30px;
	max-width: 760px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}

.vt-cn-banner__title {
	color: #fff;
}

.vt-cn-banner__text {
	margin: 16px 0 0;
	color: rgba(255, 255, 255, .92);
	font-size: clamp(14px, 1.1vw, 20px);
	line-height: 1.35;
}

.vt-cn-banner__btn {
	margin-top: 26px;
	background: #fff !important;
	color: #0c2a3a !important;
	box-shadow: 0 14px 28px rgba(0, 0, 0, .25);
	border: 1px solid rgba(255, 255, 255, .55);
}

.vt-cn-banner__media {
	position: relative;
	flex: 0 0 44%;
	min-width: 360px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}

.vt-cn-banner__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: right bottom;
	transform: translateY(6px);
	pointer-events: none;
	user-select: none;
}

.vt-partners__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}

.vt-partners__title {
	margin: 0;
}

.vt-partners__note {
	text-align: right;
	max-width: 560px;
	font-size: 18px;
	line-height: 1.25;
	color: #23323a;
}

/* marquee wrapper */
.vt-partners__marquee {
	margin-top: 22px;
	position: relative;
	overflow: hidden;
	padding: 22px 0;
}

/* track moves by JS */
.vt-partners__track {
	display: flex;
	align-items: center;
	gap: 0;
	will-change: transform;
	transform: translate3d(0, 0, 0);
}

/* sets */
.vt-partners__set {
	display: flex;
	align-items: center;
	gap: 84px;
	/* расстояние как на макете */
	padding-right: 84px;
	/* чтобы стык не “слипался” */
	flex: 0 0 auto;
}

.vt-partners__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 74px;
	/* крупно */
	flex: 0 0 auto;
}

.vt-partners__logo img {
	height: 74px;
	width: auto;
	display: block;
	opacity: .95;
	max-width: 250px;
}

/* низ: текст слева от кнопки, оба по центру */
.vt-partners__footer {
	margin-top: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 26px;
}

.vt-partners__hint {
	font-size: 16px;
	line-height: 1.25;
	color: #23323a;
	text-align: left;
	max-width: 176px;
}

/* ===============================
   OFFERS (твои стили + FIX vt-offers)
================================ */

.vt-offers__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
}

.vt-offers__card {
	position: relative;
	overflow: hidden;
	border-radius: 22px;
	min-height: 320px;

	display: flex;
	align-items: stretch;
	justify-content: space-between;

	background:
		radial-gradient(620px 320px at 15% 25%, rgba(85, 200, 240, .22), transparent 55%),
		radial-gradient(520px 360px at 70% 70%, rgba(0, 160, 220, .28), transparent 55%),
		linear-gradient(135deg, #0a0f14 0%, #0b1117 35%, #0a0e12 100%);
}

.vt-offers__card--review {
	background:
		radial-gradient(560px 320px at 18% 20%, rgba(85, 200, 240, .18), transparent 60%),
		radial-gradient(520px 360px at 75% 70%, rgba(0, 160, 220, .24), transparent 60%),
		linear-gradient(135deg, #0b0f13 0%, #0a1116 40%, #090d10 100%);
}

.vt-offers__card--sale {
	background:
		radial-gradient(560px 320px at 18% 20%, rgba(85, 200, 240, .22), transparent 60%),
		radial-gradient(520px 360px at 78% 62%, rgba(0, 160, 220, .32), transparent 60%),
		linear-gradient(135deg, #0b1015 0%, #0a141b 40%, #070b0f 100%);
}

/* контент */
.vt-offers__content {
	padding: 32px 32px;
	z-index: 2;
	max-width: none;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
	padding-right: clamp(240px, 32vw, 235px);
}

/* FIX vt-offers: для левой карточки резерва чуть меньше */
.vt-offers__card--review .vt-offers__content {
	padding-right: clamp(200px, 28vw, 224px);
}

.vt-offers__title {
	color: #fff;
}

.vt-offers__text {
	margin: auto 0 0;
	padding-top: 18px;
	color: var(--color-white);
	font-size: 18px;
	line-height: 1.25;
	max-width: 347px;
	font-weight: 300;
}

.vt-offers__actions {
	margin-top: 22px;
}

.vt-offers__btn--light {
	background: #fff !important;
	color: #0b2432 !important;
	border: 1px solid rgba(255, 255, 255, .6);
	box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
}

.vt-offers__media {
	position: absolute;
	right: 0;
	padding-right: 0;
	padding-left: 0;
	bottom: 0;
	width: 42%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	z-index: 1;
	pointer-events: none;
}

/* FIX vt-offers: возвращаем нормальную ширину медиаблока слева (а не 198px) */
.vt-offers__card--review .vt-offers__media {
	justify-content: flex-end;
	right: 0;
	width: 30%;
	height: 100%;
}

.vt-offers__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: right center;
	filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .35));
	margin-right: -10px;
	/* FIX vt-offers: прижать к правому краю без щели */
	transform: scale(.85);
	transform-origin: right center;
}

.vt-offers__card--review .vt-offers__img {
	object-position: right;
	transform: translateY(6px);
	margin-right: 0;
	/* слева не надо выталкивать */
}

/* ===== Tabs for vt-top-products ===== */
.vt-top-products__tabs {
	display: inline-flex;
	gap: 26px;
	align-items: flex-start;
	flex-wrap: wrap;
}

.vt-top-products__tab {
	appearance: none;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
	font: inherit;
	font-size: clamp(16px, 1.2vw, 20px);
	line-height: 1.1;
	color: var(--text-gray);
	position: relative;
}

.vt-top-products__tab.is-active {
	color: var(--color-light-blue);
}

.vt-top-products__tab.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
}

/* Два трека в одном viewport: прячем неактивный */
.vt-top-products__viewport {
	position: relative;
}

.vt-top-products__track[hidden] {
	display: none !important;
}

/* ===============================
   MONTH PRODUCT
================================ */
.vt-month{
  padding: 0;
}

.vt-month__grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 22px;
  align-items: stretch;
}

/* ===============================
   LEFT PROMO
================================ */
.vt-month__promo {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    min-height: 380px;
    background: #1a1a1a;
    color: #fff;
}

.vt-month__promo-img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
}

.vt-month__promo-bg{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.vt-month__promo-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 34px 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 60%;
    float: right;
}

.vt-month__promo-watermark {
    position: absolute;
    top: 22px;
    left: 34px;
    font-size: clamp(36px, 4.2vw, 64px);
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .10);
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.vt-month__promo-sub {
    margin-top: 117px;
    font-size: clamp(16px, 1.3vw, 22px);
    text-transform: uppercase;
    color: var(--color-white);
    max-width: 520px;
    font-weight: 200;
}

.vt-month__promo-note {
    margin: 0;
    max-width: 520px;
    font-size: 15px;
    line-height: 1.4;
    color: rgb(255 255 255);
    font-weight: 300;
}

/* ===============================
   RIGHT PRODUCT CARD
================================ */
.vt-month__product{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: var(--color-white);
  min-height: 380px;
}

.vt-month__product-body{
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 18px;
  padding: 28px 28px;
  height: 100%;
  align-items: stretch;
}

.vt-month__info{
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.vt-month__title {
    margin: 0;
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.12;
    font-weight: 400;
    color: #1a1f24;
    max-width: 520px;
}

.vt-month__text{
  margin: 16px 0 0;
  color: #2b333a;
  font-size: 16px;
  line-height: 1.35;
  max-width: 520px;
}

.vt-month__specs{
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 8px;
  color: #2b333a;
  font-size: 14px;
  line-height: 1.2;
}

.vt-month__spec{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vt-month__price{
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 26px;
  padding-top: 18px;
}

.vt-month__price-current {
    font-size: 22px;
    font-weight: 400;
    color: var(--color-light-blue);
}

.vt-month__price-old{
  font-size: 18px;
  color: rgba(0,0,0,.55);
  text-decoration: line-through;
}

.vt-month__cta{
  margin-top: 18px;
}

.vt-month__media{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.vt-month__img{
  width: min(520px, 100%);
  height: 100%;
  max-height: 330px;
  object-fit: contain;
  object-position: right center;
}

.vt-month__product-ribbon {
    position: absolute;
    top: 36px;
    right: -53px;
    width: 220px;
    height: 42px;
    background: #ff2b2b;
    transform: rotate(45deg);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .25);
}

.vt-month__product-ribbon span{
  color: #fff;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
}


/* ===============================
   ADAPTIVE
================================ */
@media (max-width: 1280px) {
	.vt-hero__side-title {
		font-size: clamp(25px, 4vw, 28px);
	}

	.vt-hero__side-text {
		max-width: 215px;
	}

	.cat-slider__item {
		flex-basis: calc((100% - (var(--gap) * 2)) / 3);
	}

	.vt-top-products__item {
		flex-basis: calc((100% - (var(--gap) * 2)) / 3);
	}
    .vt-month__text {
        font-size: 14px;
    }
    .vt-month__promo-content {
        width: 65%;
    }
    .vt-month__price-current {
        font-size: 17px;
    }
    .vt-month__promo-sub {
        margin-top: 75px;
    }
}

@media (max-width: 1024px) {
	.vt-hero__grid {
		grid-template-columns: 1fr;
	}

	.vt-hero__image {
		max-width: 65%;
	}

	.vt-hero__side-image {
		width: 300px;
	}

	.vt-hero__side-text {
		max-width: 500px;
	}

	.vt-cn-banner__media {
		flex-basis: 40%;
		min-width: 300px;
	}

	.vt-cn-banner__content {
		max-width: 400px;
	}

	.vt-cn-banner__media {
		flex-basis: 50%;
		min-width: 309px;
	}

	.vt-cn-banner__content .vt-btn {
		margin-top: 15px;
		font-size: 14px;
	}

      .vt-month__grid{
    grid-template-columns: 1fr;
  }

  .vt-month__promo{
    min-height: 340px;
  }

  .vt-month__product{
    min-height: 340px;
  }

    .vt-month__product-body {
        grid-template-columns: 2fr .95fr;
    }
    .vt-month__promo-sub {
    margin-top: 72px;
}
}

@media (max-width: 900px) {
	.cat-slider__item {
		flex-basis: calc((100% - var(--gap)) / 2);
	}

	.vt-top-products__item {
		flex-basis: calc((100% - var(--gap)) / 2);
	}

	.vt-cn-banner__card {
		flex-direction: column;
		min-height: 0;
	}

	.vt-cn-banner__content {
		padding: 26px 22px 10px;
		max-width: 100%;
	}

	.vt-cn-banner__media {
		min-width: 0;
		width: 100%;
		flex-basis: auto;
		height: 200px;
		margin-top: -40px;
	}

	.vt-partners__head {
		flex-direction: column;
	}

	.vt-partners__note {
		text-align: left;
		max-width: 100%;
	}

	.vt-partners__footer {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.vt-partners__head {
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		text-align: center;
	}

	.vt-partners__note {
		text-align: center;
		max-width: 100%;
		font-size: 16px;
	}

	.vt-partners__set {
		gap: 56px;
		padding-right: 56px;
	}

	.vt-partners__logo,
	.vt-partners__logo img {
		height: 62px;
	}

	.vt-partners__footer {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}

	.vt-partners__hint {
		text-align: center;
		max-width:auto;
	}

	/* FIX vt-offers: на <=900px делаем 1 колонку и пересчёт резервов */
	.vt-offers__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.vt-offers__card {
		min-height: 170px;
	}

	.vt-offers__content {
		padding-right: clamp(170px, 22vw, 280px);
	}

	.vt-offers__card--review .vt-offers__content {
		padding-right: clamp(150px, 20vw, 250px);
	}

	.vt-offers__media {
		width: clamp(200px, 58%, 360px);
	}

	.vt-offers__card--review .vt-offers__media {
		width: 200px;
	}

	.vt-offers__title {
		color: #fff;
		max-width: 400px;
	}

	.vt-offers__title br {
		display: none;
	}

	.vt-h3 {
		font-size: clamp(25px, 2.2vw, 26px);
	}
}

@media (max-width: 600px) {
	.vt-hero__content {
		max-width: 100%;
		padding: 24px;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}

	.vt-hero__image {
		position: relative;
		max-width: 100%;
		margin-top: 16px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.vt-hero__side-content {
		padding: 24px;
	}

	.vt-hero__side-image {
		width: 257px;
		margin-top: 16px;
	}

	.vt-hero__title {
		text-align: center;
		margin-bottom: 0;
	}

	.vt-hero__title br {
		display: none;
	}

	.vt-hero__text {
		margin-bottom: 0;
		max-width: 400px;
		text-align: center;
		margin-top: 0;
	}

	.desc-img {
		display: none !important;
	}

	.mob-img {
		display: block !important;
		max-width: 330px;
	}

	.vt-hero__image {
		margin-top: -20px;
	}

	.cat-slider__item {
		flex-basis: 100%;
	}

	.cat-slider__card {
		height: 150px;
	}

	.vt-top-products {
		--gap: 12px;
	}

	.vt-top-products__item {
		flex: 0 0 calc((100% - var(--gap)) / 2);
		min-width: 0;
	}

	.vt-top-products__head {
		align-items: flex-start;
		margin-bottom: 14px;
	}

	.vt-top-products__title {
		max-width: 70%;
	}

	.vt-top-products__head {
		flex-direction: column;
	}

	.vt-cn-banner__media {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 200px;
		margin-top: 6px;
	}

	.vt-cn-banner__img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center;
		transform: none;
	}

	.vt-offers__content {
		padding-right: 18px;
		padding-bottom: 25px;
	}

	.vt-offers__media {
		top: auto;
		bottom: 0;
		height: 170px;
		width: 78%;
		align-items: flex-end;
		justify-content: flex-end;
	}

	.vt-offers__img {
		object-position: right bottom;
		margin-right: -12px;
	}

	.vt-offers__card--review .vt-offers__media {
		height: 148px;
	}

	.vt-h3 {
		font-size: clamp(21px, 2.2vw, 26px);
	}

	.vt-offers__text {
		font-size: 16px;
		max-width: 300px;
	}

	.vt-offers__content {
		padding: 20px 20px;
	}

	.vt-top-products__tabs {
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 14px;
		padding-bottom: 6px;
		scroll-snap-type: x mandatory;
	}

	.vt-top-products__tabs::-webkit-scrollbar {
		display: none;
	}

	.vt-top-products__tab {
		flex: 0 0 auto;
		scroll-snap-align: start;
		font-size: 16px;
	}
	    .vt-hero__side-text {
        max-width: 250px;
    }
}

@media (max-width: 560px) {
	.vt-partners__set {
		gap: 40px;
		padding-right: 40px;
	}

	.vt-partners__logo,
	.vt-partners__logo img {
		height: 52px;
	}

	.vt-partners__footer {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.vt-offers__card--review .vt-offers__media {
		height: 100px;
	}

	.vt-offers__img {
		width: 100px;
	}

	.vt-offers__media {
		top: 0;
		bottom: auto;
		height: auto;
	}

	.vt-offers__title {
		color: #fff;
		max-width: 315px;
	}

	.vt-offers__card--review .vt-offers__content {
		padding-right: clamp(64px, 20vw, 250px);
	}
    .vt-month__product-body {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    .vt-month__img {
        max-height: 210px;
    }
    .vt-month__info {
        justify-content: center;
        align-items: center;
    }
        .vt-month__text {
        font-size: 14px;
        text-align: center;
    }
    .vt-month__title {
        text-align: center;
    }
        .vt-month__promo-content {
        width: 100%;
    }
        .vt-month__promo {
        min-height: 290px;
    }
    .vt-month__promo-note {
        font-size: 13px;
    }
    .vt-month__product-body {
        padding: 20px;
    }
    .vt-month__promo-content {
        padding: 20px;
    }
    .vt-month__promo-watermark {
        left: 20px;
        color: rgb(255 255 255 / 42%);
    }
    .vt-month__cta {
        width: 100%;
    }
    .vt-month__cta a{
        width: 100%;
    }
}

@media(max-width:440px) {
	.vt-top-products__item {
		flex: 0 0 calc((100% / 1));
		min-width: 0;
	}

	.vt-cn-banner__content {
		padding: 22px 18px 8px;
	}

	.vt-cn-banner__btn {
		width: 100%;
		text-align: center;
	}

	.vt-cn-banner__media {
		height: 180px;
	}

	.vt-partners__note br {
		display: none;
	}

	.vt-h3 {
		font-size: clamp(18px, 2.2vw, 26px);
	}

	.vt-offers__title {
		max-width: 265px;
	}

	.vt-offers__card--review .vt-offers__media {
		height: 80px;
	}

	.vt-offers__text {
		font-size: 14px;
		max-width: 200px;
	}
}

@media (max-width: 380px) {
	.vt-hero__title {
		font-size: clamp(23px, 4vw, 48px);
	}

	.vt-hero__side-title {
		font-size: clamp(21px, 4vw, 28px);
		max-width: 203px;
	}

	.vt-hero__side-title br {
		display: none;
	}

	.vt-hero__card {
		min-height: auto;
	}

	.vt-hero__side-content {
		justify-content: flex-start;
		align-items: flex-start;
	}

	.vt-hero__side-image {
		width: 257px;
		bottom: 0;
	}

	.vt-hero__side-text {
		max-width: 192px;
		font-size: 14px;
	}

	.voltana-header__city-label {
		display: none;
	}

	.vt-cn-banner__text br {
		display: none;
	}

	.vt-cn-banner__content {
		padding: 20px 13px;
	}

	.vt-hero__side-content {
		padding: 20px;
	}

	.vt-offers__title {
		max-width: 201px;
	}
}