:root {
  --t-headline-font: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
  --t-text-font: 'Inter', system-ui, -apple-system, sans-serif;
}
*,
*::before,
*::after { box-sizing: border-box; }

.vt-page {
  font-family: var(--t-text-font);
  color: #1f2937;
  background: #fbf7f2;
  margin: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.vt-page h1, .vt-page h2, .vt-page h3, .vt-page h4 {
  font-family: var(--t-headline-font);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.vt-page img { max-width: 100%; display: block; }
.vt-page a { color: inherit; text-decoration: none; }
.vt-page button { font-family: inherit; cursor: pointer; border: none; background: none; }
.vt-page input,
.vt-page textarea,
.vt-page select { font: inherit; }

.vt-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP BAR ===== */
.vt-topbar {
  background: #1a2438;
  color: #c9d1e0;
  font-size: 13px;
  padding: 10px 0;
}
.vt-topbar__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.vt-topbar__left,
.vt-topbar__right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.vt-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.vt-topbar__item svg {
  width: 14px;
  height: 14px;
  stroke: #ff6a3d;
  fill: none;
  stroke-width: 1.8;
}
.vt-topbar__link { transition: color .2s; }
.vt-topbar__link:hover { color: #fff; }

/* ===== HEADER ===== */
.vt-header {
  background: #ffffff;
  border-bottom: 1px solid #ece6dd;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(26, 36, 56, 0.04);
}
.vt-header__row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}
.vt-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.vt-logo__mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff6a3d 0%, #f04e23 100%);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 106, 61, 0.35);
  position: relative;
}
.vt-logo__mark svg { width: 26px; height: 26px; }
.vt-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.vt-logo__name {
  font-family: var(--t-headline-font);
  font-size: 20px;
  font-weight: 800;
  color: #1a2438;
  letter-spacing: -0.02em;
}
.vt-logo__sub {
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

.vt-search {
  flex: 1;
  max-width: 540px;
  position: relative;
}
.vt-search__input {
  width: 100%;
  height: 48px;
  border: 1.5px solid #e5dfd4;
  background: #fbf7f2;
  border-radius: 14px;
  padding: 0 56px 0 20px;
  color: #1f2937;
  transition: all .2s;
  outline: none;
}
.vt-search__input::placeholder { color: #9ca3af; }
.vt-search__input:focus {
  border-color: #ff6a3d;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 106, 61, 0.12);
}
.vt-search__btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #ff6a3d;
  color: #fff;
  display: grid;
  place-items: center;
  transition: background .2s;
}
.vt-search__btn:hover { background: #f04e23; }
.vt-search__btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

.vt-header__contacts {
  display: flex;
  align-items: center;
  gap: 18px;
}
.vt-phone {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: right;
}
.vt-phone__num {
  font-family: var(--t-headline-font);
  font-size: 18px;
  font-weight: 700;
  color: #1a2438;
}
.vt-phone__hint { font-size: 12px; color: #6b7280; }

.vt-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vt-action {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fbf7f2;
  display: grid;
  place-items: center;
  color: #1a2438;
  transition: all .2s;
}
.vt-action:hover { background: #ff6a3d; color: #fff; }
.vt-action svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.vt-action__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff6a3d;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}

/* ===== NAV ===== */
.vt-nav {
  border-bottom: 1px solid #ece6dd;
  background: #fff;
}
.vt-nav__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.vt-nav__row::-webkit-scrollbar { display: none; }
.vt-nav__catalog {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #1a2438;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  flex-shrink: 0;
  transition: background .2s;
}
.vt-nav__catalog:hover { background: #ff6a3d; }
.vt-nav__catalog svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.vt-nav__link {
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  color: #1a2438;
  transition: all .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.vt-nav__link:hover { background: #fbf7f2; color: #ff6a3d; }
.vt-nav__link--sale {
  color: #ff6a3d;
  font-weight: 700;
}

/* ===== HERO ===== */
.vt-hero {
  padding: 36px 0 56px;
  background:
    radial-gradient(ellipse at top right, rgba(255, 106, 61, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(26, 36, 56, 0.04), transparent 50%),
    #fbf7f2;
}
.vt-hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.vt-hero__main {
  position: relative;
  background: linear-gradient(135deg, #1a2438 0%, #2a3a5c 100%);
  border-radius: 28px;
  padding: 56px 52px;
  color: #fff;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vt-hero__main::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 106, 61, 0.35), transparent 70%);
  border-radius: 50%;
}
.vt-hero__main::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 167, 122, 0.18), transparent 70%);
  border-radius: 50%;
}
.vt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 106, 61, 0.15);
  border: 1px solid rgba(255, 106, 61, 0.35);
  color: #ffaa82;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  position: relative;
  z-index: 1;
}
.vt-hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #ff6a3d;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.vt-hero__title {
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 800;
  margin: 24px 0 16px;
  position: relative;
  z-index: 1;
}
.vt-hero__title span {
  color: #ff8e63;
  font-style: italic;
}
.vt-hero__desc {
  font-size: 17px;
  color: #c9d1e0;
  max-width: 480px;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.vt-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.vt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  transition: all .25s;
  white-space: nowrap;
}
.vt-btn--primary {
  background: #ff6a3d;
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 106, 61, 0.35);
}
.vt-btn--primary:hover {
  background: #f04e23;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 106, 61, 0.45);
}
.vt-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.vt-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}
.vt-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

.vt-hero__stats {
  display: flex;
  gap: 36px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.vt-hero__stat-num {
  font-family: var(--t-headline-font);
  font-size: 30px;
  font-weight: 800;
  color: #ff8e63;
  line-height: 1;
}
.vt-hero__stat-text {
  font-size: 13px;
  color: #9ba5b8;
  margin-top: 6px;
}

.vt-hero__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vt-hero__card {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid #ece6dd;
}
.vt-hero__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 36, 56, 0.08);
}
.vt-hero__card--sale {
  background: linear-gradient(135deg, #ff6a3d 0%, #f04e23 100%);
  color: #fff;
  border: none;
}
.vt-hero__card-label {
  font-size: 13px;
  color: #ff8e63;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.vt-hero__card--sale .vt-hero__card-label { color: rgba(255, 255, 255, 0.85); }
.vt-hero__card-title {
  font-family: var(--t-headline-font);
  font-size: 22px;
  font-weight: 700;
  margin: 12px 0 8px;
  color: #1a2438;
}
.vt-hero__card--sale .vt-hero__card-title { color: #fff; }
.vt-hero__card-desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
}
.vt-hero__card--sale .vt-hero__card-desc { color: rgba(255, 255, 255, 0.9); }
.vt-hero__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #ff6a3d;
  transition: gap .2s;
}
.vt-hero__card--sale .vt-hero__card-link { color: #fff; }
.vt-hero__card-link:hover { gap: 12px; }
.vt-hero__card-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.vt-hero__card-deco {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 106, 61, 0.08);
}
.vt-hero__card--sale .vt-hero__card-deco { background: rgba(255, 255, 255, 0.12); }
.vt-hero__card-percent {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--t-headline-font);
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

/* ===== CATEGORIES ===== */
.vt-section {
  padding: 64px 0;
}
.vt-section--cream { background: #f5ede2; }
.vt-section--white { background: #fff; }
.vt-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 24px;
  flex-wrap: wrap;
}
.vt-section__title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  color: #1a2438;
}
.vt-section__title span {
  color: #ff6a3d;
}
.vt-section__subtitle {
  color: #6b7280;
  font-size: 16px;
  margin-top: 8px;
  max-width: 540px;
}
.vt-section__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff6a3d;
  font-weight: 600;
  transition: gap .2s;
}
.vt-section__link:hover { gap: 14px; }
.vt-section__link svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

.vt-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vt-cat {
  position: relative;
  padding: 28px 28px 28px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid #ece6dd;
  transition: all .3s;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vt-cat::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 106, 61, 0.08), transparent);
  transition: transform .4s;
}
.vt-cat:hover {
  border-color: #ff6a3d;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 36, 56, 0.08);
}
.vt-cat:hover::before { transform: scale(1.5); }
.vt-cat__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff6a3d, #f04e23);
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(255, 106, 61, 0.25);
}
.vt-cat__icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.vt-cat__title {
  font-family: var(--t-headline-font);
  font-size: 19px;
  font-weight: 700;
  color: #1a2438;
  margin-bottom: 6px;
}
.vt-cat__count {
  color: #6b7280;
  font-size: 14px;
}
.vt-cat__arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fbf7f2;
  display: grid;
  place-items: center;
  color: #1a2438;
  transition: all .25s;
}
.vt-cat:hover .vt-cat__arrow {
  background: #ff6a3d;
  color: #fff;
  transform: rotate(-45deg);
}
.vt-cat__arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ===== FEATURES ===== */
.vt-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vt-feature {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid #ece6dd;
  transition: all .3s;
}
.vt-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(26, 36, 56, 0.06);
}
.vt-feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff1eb;
  color: #ff6a3d;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.vt-feature__icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.vt-feature__title {
  font-family: var(--t-headline-font);
  font-size: 17px;
  font-weight: 700;
  color: #1a2438;
  margin-bottom: 6px;
}
.vt-feature__desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* ===== PRODUCTS ===== */
.vt-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.vt-tab {
  padding: 12px 22px;
  border-radius: 100px;
  background: #fff;
  color: #1a2438;
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid #ece6dd;
  transition: all .2s;
}
.vt-tab:hover { border-color: #ff6a3d; color: #ff6a3d; }
.vt-tab--active {
  background: #1a2438;
  color: #fff;
  border-color: #1a2438;
}
.vt-tab--active:hover { color: #fff; }

.vt-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vt-product {
  background: #fff;
  border-radius: 22px;
  border: 1px solid #ece6dd;
  overflow: hidden;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.vt-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 36, 56, 0.1);
  border-color: #ffd0bd;
}
.vt-product__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f5ede2, #ede0d0);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.vt-product__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}
.vt-product__media svg {
  width: 65%;
  height: 65%;
  transition: transform .4s;
}
.vt-product:hover .vt-product__media svg { transform: scale(1.08) rotate(-3deg); }
.vt-product__tags {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vt-product__tag {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.vt-product__tag--hit { background: #ff6a3d; color: #fff; }
.vt-product__tag--new { background: #1a2438; color: #fff; }
.vt-product__tag--sale { background: #ffd84d; color: #1a2438; }
.vt-product__fav {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  color: #1a2438;
  transition: all .2s;
}
.vt-product__fav:hover { background: #ff6a3d; color: #fff; }
.vt-product__fav.is-active { background: #ff6a3d; color: #fff; }
.vt-product__fav svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

.vt-product__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vt-product__brand {
  font-size: 12px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.vt-product__name {
  font-family: var(--t-headline-font);
  font-size: 15px;
  font-weight: 600;
  color: #1a2438;
  line-height: 1.35;
  margin-bottom: 12px;
  flex: 1;
  min-height: 41px;
}
.vt-product__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 14px;
}
.vt-product__stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.vt-product__stars svg {
  width: 14px;
  height: 14px;
  fill: #ffb400;
  stroke: none;
}
.vt-product__reviews {
  color: #9ca3af;
  font-size: 12px;
}
.vt-product__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.vt-product__prices {
  display: flex;
  flex-direction: column;
}
.vt-product__old {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: line-through;
}
.vt-product__price {
  font-family: var(--t-headline-font);
  font-size: 20px;
  font-weight: 800;
  color: #1a2438;
  line-height: 1.1;
}
.vt-product__unit {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
}
.vt-product__buy {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #ff6a3d;
  color: #fff;
  display: grid;
  place-items: center;
  transition: all .2s;
  flex-shrink: 0;
}
.vt-product__buy:hover { background: #1a2438; transform: scale(1.06); }
.vt-product__buy svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ===== PROMO BANNER ===== */
.vt-promo {
  background: linear-gradient(135deg, #1a2438 0%, #2a3a5c 100%);
  border-radius: 28px;
  padding: 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.vt-promo::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 106, 61, 0.4), transparent 70%);
  border-radius: 50%;
}
.vt-promo__title {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}
.vt-promo__title span { color: #ff8e63; }
.vt-promo__desc {
  color: #c9d1e0;
  font-size: 16px;
  margin-bottom: 28px;
  position: relative;
  max-width: 480px;
}
.vt-promo__form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  position: relative;
  flex-wrap: wrap;
}
.vt-promo__input {
  flex: 1;
  min-width: 200px;
  height: 52px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  padding: 0 22px;
  color: #fff;
  outline: none;
  transition: all .2s;
}
.vt-promo__input::placeholder { color: #9ba5b8; }
.vt-promo__input:focus { border-color: #ff6a3d; background: rgba(255, 255, 255, 0.1); }
.vt-promo__submit {
  height: 52px;
  padding: 0 28px;
  background: #ff6a3d;
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
  transition: all .2s;
}
.vt-promo__submit:hover { background: #f04e23; transform: translateY(-2px); }
.vt-promo__note {
  margin-top: 14px;
  color: #9ba5b8;
  font-size: 12px;
  position: relative;
}
.vt-promo__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
}
.vt-promo__circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6a3d, #f04e23);
  display: grid;
  place-items: center;
  box-shadow: 0 24px 60px rgba(255, 106, 61, 0.4);
  position: relative;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.vt-promo__circle-inner {
  text-align: center;
  color: #fff;
}
.vt-promo__discount {
  font-family: var(--t-headline-font);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
}
.vt-promo__discount-text {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* ===== BRANDS ===== */
.vt-brands {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.vt-brand {
  aspect-ratio: 5 / 2;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ece6dd;
  display: grid;
  place-items: center;
  color: #6b7280;
  font-family: var(--t-headline-font);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.05em;
  transition: all .2s;
  text-transform: uppercase;
}
.vt-brand:hover { border-color: #ff6a3d; color: #ff6a3d; transform: scale(1.04); }

/* ===== ABOUT ===== */
.vt-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.vt-about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  background: linear-gradient(135deg, #ff6a3d, #f04e23);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
}
.vt-about__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.2), transparent 50%);
}
.vt-about__big {
  font-family: var(--t-headline-font);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  position: relative;
  line-height: 1;
}
.vt-about__big-label {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-family: var(--t-headline-font);
  font-size: 22px;
  font-weight: 700;
}
.vt-about__big-sub {
  position: absolute;
  bottom: 40px;
  right: 40px;
  text-align: right;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.vt-about__badge {
  position: absolute;
  top: 32px;
  right: 32px;
  background: #fff;
  color: #1a2438;
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.vt-about__eyebrow {
  color: #ff6a3d;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.vt-about__title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  color: #1a2438;
  margin-bottom: 18px;
}
.vt-about__title span { color: #ff6a3d; }
.vt-about__desc {
  color: #4b5563;
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.65;
}
.vt-about__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 14px;
}
.vt-about__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: #1f2937;
}
.vt-about__check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fff1eb;
  color: #ff6a3d;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.vt-about__check svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* ===== FOOTER ===== */
.vt-footer {
  background: #1a2438;
  color: #c9d1e0;
  padding: 64px 0 0;
  margin-top: 0;
}
.vt-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.vt-footer__col h4 {
  font-family: var(--t-headline-font);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.vt-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.vt-footer__list a {
  color: #9ba5b8;
  font-size: 14px;
  transition: color .2s;
}
.vt-footer__list a:hover { color: #ff8e63; }
.vt-footer__about {
  font-size: 14px;
  color: #9ba5b8;
  line-height: 1.65;
  margin: 16px 0 24px;
  max-width: 320px;
}
.vt-footer__contacts {
  display: grid;
  gap: 12px;
}
.vt-footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #c9d1e0;
}
.vt-footer__contact svg {
  width: 16px;
  height: 16px;
  stroke: #ff8e63;
  fill: none;
  stroke-width: 1.8;
  margin-top: 2px;
  flex-shrink: 0;
}
.vt-footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.vt-footer__social {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: #c9d1e0;
  transition: all .2s;
}
.vt-footer__social:hover {
  background: #ff6a3d;
  color: #fff;
  transform: translateY(-2px);
}
.vt-footer__social svg { width: 18px; height: 18px; fill: currentColor; }

.vt-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #6b7894;
  flex-wrap: wrap;
  gap: 16px;
}
.vt-footer__pay {
  display: flex;
  gap: 8px;
  align-items: center;
}
.vt-footer__pay-icon {
  width: 44px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #c9d1e0;
  font-size: 10px;
  font-weight: 800;
}

/* ===== BREAKPOINTS ===== */
@media (max-width: 1200px) {
  .vt-products { grid-template-columns: repeat(3, 1fr); }
  .vt-brands { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 960px) {
  .vt-hero__grid { grid-template-columns: 1fr; }
  .vt-hero__main { padding: 40px 32px; min-height: 380px; }
  .vt-hero__side { flex-direction: row; }
  .vt-hero__card { flex: 1; }
  .vt-cats { grid-template-columns: repeat(2, 1fr); }
  .vt-features { grid-template-columns: repeat(2, 1fr); }
  .vt-products { grid-template-columns: repeat(2, 1fr); }
  .vt-promo { grid-template-columns: 1fr; padding: 40px 32px; }
  .vt-promo__visual { min-height: 220px; }
  .vt-promo__circle { width: 220px; height: 220px; }
  .vt-promo__discount { font-size: 56px; }
  .vt-about { grid-template-columns: 1fr; gap: 36px; }
  .vt-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .vt-topbar__row { font-size: 12px; }
  .vt-topbar__right { display: none; }
  .vt-header__row { flex-wrap: wrap; gap: 14px; }
  .vt-search { order: 3; flex-basis: 100%; }
  .vt-phone__hint { display: none; }
  .vt-section { padding: 44px 0; }
  .vt-brands { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .vt-container { padding: 0 18px; }
  .vt-hero { padding: 24px 0 36px; }
  .vt-hero__main { padding: 32px 24px; }
  .vt-hero__title { font-size: 30px; }
  .vt-hero__side { flex-direction: column; }
  .vt-hero__stats { gap: 20px; }
  .vt-hero__stat-num { font-size: 24px; }
  .vt-cats { grid-template-columns: 1fr; }
  .vt-features { grid-template-columns: 1fr; }
  .vt-products { grid-template-columns: 1fr 1fr; gap: 12px; }
  .vt-product__body { padding: 14px; }
  .vt-product__name { font-size: 14px; min-height: 38px; }
  .vt-product__price { font-size: 17px; }
  .vt-product__buy { width: 36px; height: 36px; }
  .vt-promo { padding: 32px 24px; border-radius: 22px; }
  .vt-promo__circle { width: 180px; height: 180px; }
  .vt-promo__discount { font-size: 44px; }
  .vt-promo__discount-text { font-size: 14px; }
  .vt-about__media { aspect-ratio: 1; }
  .vt-about__big { font-size: 80px; }
  .vt-brands { grid-template-columns: repeat(2, 1fr); }
  .vt-footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .vt-footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 380px) {
  .vt-products { grid-template-columns: 1fr; }
  .vt-tabs { gap: 6px; }
  .vt-tab { padding: 10px 16px; font-size: 13px; }
  .vt-logo__sub { display: none; }
  .vt-actions { gap: 6px; }
  .vt-action { width: 40px; height: 40px; }
}

.vt-nav {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid #ece6dd;
  background: #fff;
}