: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; }

/* ===== ВЫБОР ГОРОДА ===== */
.city-selector {
  position: relative;
  display: inline-block;
}
.city-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  padding: 8px 0;
  min-width: 180px;
  z-index: 60;
  border: 1px solid #e5e7eb;
}
.city-selector:hover .city-dropdown {
  display: block;
}
.city-dropdown a {
  display: block;
  padding: 8px 16px;
  color: #1a2438;
  font-size: 14px;
  transition: background 0.15s;
  text-decoration: none;
}
.city-dropdown a:hover {
  background: #f3f4f6;
  color: #ff6a3d;
}
.city-dropdown a.bg-gray-100 {
  background: #f3f4f6;
  font-weight: 600;
}

/* ===== 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 {
  position: relative;
  z-index: 40;
  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__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--active { background: #fff1eb; color: #ff6a3d; }
.vt-nav__link--sale {
  color: #ff6a3d;
  font-weight: 700;
}

/* ===== НОВОЕ МЕГА-МЕНЮ КАТАЛОГА ===== */
.vt-nav__catalog {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #1a2438;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.vt-nav__catalog:hover,
.vt-nav__catalog.is-open {
  background: #ff6a3d;
}
.vt-nav__catalog svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.vt-nav__catalog .vt-nav__chevron {
  width: 14px;
  height: 14px;
  transition: transform .25s;
  margin-left: 4px;
}
.vt-nav__catalog.is-open .vt-nav__chevron {
  transform: rotate(180deg);
}

/* Мега-панель */
.vt-mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 22px;
  border: 1px solid #ece6dd;
  box-shadow: 0 24px 60px rgba(26, 36, 56, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  z-index: 30;
  overflow: hidden;
}
.vt-mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .2s ease, transform .2s ease, visibility 0s;
}
.vt-mega__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 480px;
}
.vt-mega__cats {
  background: #fbf7f2;
  padding: 20px 12px;
  border-right: 1px solid #ece6dd;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vt-mega__cat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #1a2438;
  font-size: 14px;
  font-weight: 600;
  transition: all .15s;
  cursor: pointer;
  position: relative;
}
.vt-mega__cat:hover,
.vt-mega__cat.is-active {
  background: #fff;
  color: #ff6a3d;
}
.vt-mega__cat.is-active {
  box-shadow: 0 4px 12px rgba(26, 36, 56, 0.06);
}
.vt-mega__cat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff1eb;
  color: #ff6a3d;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.vt-mega__cat.is-active .vt-mega__cat-icon {
  background: #ff6a3d;
  color: #fff;
}
.vt-mega__cat-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.vt-mega__cat-name {
  flex: 1;
  line-height: 1.3;
}
.vt-mega__cat-count {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 500;
}
.vt-mega__cat.is-active .vt-mega__cat-count {
  color: #ff8e63;
}
.vt-mega__cat-arrow {
  margin-left: auto;
  opacity: 0;
  transition: opacity .15s, transform .15s;
}
.vt-mega__cat:hover .vt-mega__cat-arrow,
.vt-mega__cat.is-active .vt-mega__cat-arrow {
  opacity: 1;
  transform: translateX(2px);
}
.vt-mega__cat-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.vt-mega__panel {
  padding: 28px 32px;
  overflow-y: auto;
  max-height: 520px;
}
.vt-mega__panel::-webkit-scrollbar {
  width: 6px;
}
.vt-mega__panel::-webkit-scrollbar-thumb {
  background: #ece6dd;
  border-radius: 3px;
}
.vt-mega__block {
  display: none;
}
.vt-mega__block.is-active {
  display: block;
  animation: vt-fade .25s ease;
}
@keyframes vt-fade {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

.vt-mega__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px dashed #ece6dd;
}
.vt-mega__head-title {
  font-family: var(--t-headline-font);
  font-size: 22px;
  font-weight: 800;
  color: #1a2438;
}
.vt-mega__head-title span {
  color: #ff6a3d;
}
.vt-mega__head-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ff6a3d;
  font-weight: 600;
  font-size: 14px;
  transition: gap .2s;
  text-decoration: none;
}
.vt-mega__head-link:hover {
  gap: 12px;
}
.vt-mega__head-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.vt-mega__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
}
.vt-mega__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
}
.vt-mega__list a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #4b5563;
  transition: color .15s;
  text-decoration: none;
}
.vt-mega__list a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ff6a3d;
  opacity: .5;
  transition: opacity .15s, transform .15s;
  flex-shrink: 0;
}
.vt-mega__list a:hover {
  color: #ff6a3d;
}
.vt-mega__list a:hover::before {
  opacity: 1;
  transform: scale(1.4);
}

/* Overlay */
.vt-mega-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 36, 56, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility 0s linear .2s;
  z-index: 25;
}
.vt-mega-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .2s;
}

/* ===== 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;
}

/* ================================================================
   СТИЛИ ДЛЯ СТРАНИЦЫ КАТЕГОРИИ
   ================================================================ */
.vt-breadcrumbs {
  padding: 20px 0 0;
  font-size: 14px;
  color: #6b7280;
}
.vt-breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.vt-breadcrumbs__list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.vt-breadcrumbs__list li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #c9d1e0;
  border-top: 1.5px solid #c9d1e0;
  transform: rotate(45deg);
}
.vt-breadcrumbs__list a { transition: color .2s; }
.vt-breadcrumbs__list a:hover { color: #ff6a3d; }
.vt-breadcrumbs__list li:last-child { color: #1a2438; font-weight: 500; }

.vt-cat-hero {
  padding: 32px 0 40px;
}
.vt-cat-hero__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.vt-cat-hero__main {
  background: linear-gradient(135deg, #1a2438 0%, #2a3a5c 100%);
  border-radius: 24px;
  padding: 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}
.vt-cat-hero__main::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 106, 61, 0.32), transparent 70%);
  border-radius: 50%;
}
.vt-cat-hero__main::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 167, 122, 0.18), transparent 70%);
  border-radius: 50%;
}
.vt-cat-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 106, 61, 0.18);
  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-cat-hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  background: #ff6a3d;
  border-radius: 50%;
}
.vt-cat-hero__title {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 800;
  margin: 22px 0 14px;
  position: relative;
  z-index: 1;
}
.vt-cat-hero__title span { color: #ff8e63; }
.vt-cat-hero__desc {
  font-size: 16px;
  color: #c9d1e0;
  max-width: 520px;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.vt-cat-hero__stats {
  display: flex;
  gap: 32px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.vt-cat-hero__stat-num {
  font-family: var(--t-headline-font);
  font-size: 26px;
  font-weight: 800;
  color: #ff8e63;
  line-height: 1;
}
.vt-cat-hero__stat-text {
  font-size: 13px;
  color: #9ba5b8;
  margin-top: 6px;
}

.vt-cat-hero__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vt-cat-hero__card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #ece6dd;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all .2s;
  flex: 1;
}
.vt-cat-hero__card:hover {
  border-color: #ff6a3d;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 36, 56, 0.06);
}
.vt-cat-hero__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff1eb;
  color: #ff6a3d;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.vt-cat-hero__card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.vt-cat-hero__card-title {
  font-family: var(--t-headline-font);
  font-size: 15px;
  font-weight: 700;
  color: #1a2438;
  margin-bottom: 4px;
}
.vt-cat-hero__card-desc { font-size: 13px; color: #6b7280; }

.vt-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 0 32px;
}
.vt-pill {
  padding: 11px 20px;
  border-radius: 100px;
  background: #fff;
  border: 1.5px solid #ece6dd;
  font-size: 14px;
  font-weight: 600;
  color: #1a2438;
  transition: all .2s;
  text-decoration: none;
}
.vt-pill:hover { border-color: #ff6a3d; color: #ff6a3d; }
.vt-pill--active {
  background: #1a2438;
  color: #fff;
  border-color: #1a2438;
}
.vt-pill--active:hover { color: #fff; }

.vt-catalog {
  padding: 8px 0 64px;
}
.vt-catalog__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
}

.vt-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vt-filter {
  background: #fff;
  border: 1px solid #ece6dd;
  border-radius: 18px;
  overflow: hidden;
}
.vt-filter__head {
  padding: 18px 22px;
  border-bottom: 1px solid #ece6dd;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vt-filter__title {
  font-family: var(--t-headline-font);
  font-size: 15px;
  font-weight: 700;
  color: #1a2438;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vt-filter__title svg {
  width: 16px;
  height: 16px;
  stroke: #ff6a3d;
  fill: none;
  stroke-width: 2;
}
.vt-filter__clear {
  font-size: 13px;
  color: #ff6a3d;
  font-weight: 600;
  transition: opacity .2s;
  text-decoration: none;
}
.vt-filter__clear:hover { opacity: .7; }
.vt-filter__body {
  padding: 18px 22px 22px;
}
.vt-filter__group + .vt-filter__group {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed #ece6dd;
}
.vt-filter__label {
  font-size: 13px;
  font-weight: 600;
  color: #1a2438;
  margin-bottom: 12px;
}

.vt-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: #1f2937;
  cursor: pointer;
  user-select: none;
  transition: color .2s;
}
.vt-checkbox:hover { color: #ff6a3d; }
.vt-checkbox input { display: none; }
.vt-checkbox__box {
  width: 18px;
  height: 18px;
  border: 1.5px solid #d1d5db;
  border-radius: 5px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all .2s;
}
.vt-checkbox input:checked + .vt-checkbox__box {
  background: #ff6a3d;
  border-color: #ff6a3d;
}
.vt-checkbox input:checked + .vt-checkbox__box::after {
  content: "";
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
}
.vt-checkbox__count {
  margin-left: auto;
  color: #9ca3af;
  font-size: 13px;
}

.vt-price { padding-top: 4px; }
.vt-price__inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.vt-price__field {
  flex: 1;
  position: relative;
}
.vt-price__field input {
  width: 100%;
  height: 40px;
  border: 1.5px solid #e5dfd4;
  border-radius: 10px;
  padding: 0 24px 0 12px;
  outline: none;
  background: #fbf7f2;
  color: #1a2438;
  transition: all .2s;
}
.vt-price__field input:focus {
  border-color: #ff6a3d;
  background: #fff;
}
.vt-price__field span {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 13px;
}
.vt-price__sep { color: #9ca3af; }

.vt-filter__apply {
  width: 100%;
  height: 44px;
  background: #1a2438;
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  margin-top: 18px;
  transition: background .2s;
  border: none;
  cursor: pointer;
}
.vt-filter__apply:hover { background: #ff6a3d; }

.vt-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid #ece6dd;
  border-radius: 18px;
  padding: 14px 18px;
  margin-bottom: 20px;
}
.vt-toolbar__count {
  font-size: 14px;
  color: #6b7280;
}
.vt-toolbar__count b { color: #1a2438; font-weight: 700; }
.vt-toolbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.vt-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
}
.vt-sort-select {
  height: 40px;
  border: 1.5px solid #e5dfd4;
  border-radius: 10px;
  padding: 0 36px 0 14px;
  outline: none;
  background: #fbf7f2;
  color: #1a2438;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: all .2s;
}
.vt-sort-select:hover { border-color: #ff6a3d; }
.vt-sort-select:focus { border-color: #ff6a3d; background-color: #fff; }

.vt-view {
  display: flex;
  gap: 4px;
  background: #fbf7f2;
  border-radius: 10px;
  padding: 4px;
}
.vt-view__btn {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: #6b7280;
  transition: all .2s;
  border: none;
  cursor: pointer;
}
.vt-view__btn:hover { color: #ff6a3d; }
.vt-view__btn--active {
  background: #fff;
  color: #ff6a3d;
  box-shadow: 0 2px 6px rgba(26, 36, 56, 0.08);
}
.vt-view__btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.vt-filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border: 1.5px solid #e5dfd4;
  border-radius: 10px;
  background: #fff;
  color: #1a2438;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.vt-filter-toggle svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.vt-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.vt-page-btn {
  min-width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid #ece6dd;
  color: #1a2438;
  font-weight: 600;
  font-size: 14px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  transition: all .2s;
  text-decoration: none;
}
.vt-page-btn:hover { border-color: #ff6a3d; color: #ff6a3d; }
.vt-page-btn--active {
  background: #ff6a3d;
  color: #fff;
  border-color: #ff6a3d;
}
.vt-page-btn--active:hover { color: #fff; }
.vt-page-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

.vt-seo {
  background: #fff;
  border-radius: 24px;
  padding: 44px;
  border: 1px solid #ece6dd;
  margin-top: 48px;
}
.vt-seo__title {
  font-size: 24px;
  font-weight: 800;
  color: #1a2438;
  margin-bottom: 16px;
}
.vt-seo__title span { color: #ff6a3d; }
.vt-seo__text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
}
.vt-seo__text p { margin: 0 0 14px; }
.vt-seo__text p:last-child { margin-bottom: 0; }
.vt-seo__chars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.vt-seo__char {
  background: #fbf7f2;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  border: 1px solid #ece6dd;
}
.vt-seo__char-num {
  font-family: var(--t-headline-font);
  font-size: 26px;
  font-weight: 800;
  color: #ff6a3d;
  line-height: 1;
}
.vt-seo__char-text {
  font-size: 13px;
  color: #6b7280;
  margin-top: 6px;
}

/* ================================================================
   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); }
  .vt-catalog__grid { grid-template-columns: 240px 1fr; gap: 20px; }
  .vt-mega__inner { grid-template-columns: 240px 1fr; }
  .vt-mega__cols { grid-template-columns: repeat(2, 1fr); gap: 20px 24px; }
}

@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; }
  .vt-cat-hero__grid { grid-template-columns: 1fr; }
  .vt-catalog__grid { grid-template-columns: 1fr; }
  .vt-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fbf7f2;
    z-index: 100;
    padding: 24px;
    overflow-y: auto;
  }
  .vt-sidebar.is-open { display: flex; }
  .vt-filter-toggle { display: inline-flex; }
  .vt-seo__chars { grid-template-columns: repeat(2, 1fr); }
  .vt-nav__row { flex-wrap: wrap; }
  .vt-nav__link { font-size: 13px; padding: 8px 12px; }
}

@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); }
  .vt-cat-hero { padding: 24px 0 28px; }
  .vt-cat-hero__main { padding: 32px 26px; min-height: 240px; }
  .vt-cat-hero__stats { gap: 22px; }
  .vt-cat-hero__stat-num { font-size: 22px; }
  .vt-products--list .vt-product { flex-direction: column; }
  .vt-products--list .vt-product__media { width: 100%; aspect-ratio: 1; }
  .vt-footer__grid { grid-template-columns: 1fr 1fr; }
  /* Адаптация мега-меню */
  .vt-mega {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 22px 22px 0 0;
    max-height: 80vh;
    overflow-y: auto;
  }
  .vt-mega__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .vt-mega__cats {
    flex-direction: row;
    overflow-x: auto;
    padding: 12px;
    border-right: none;
    border-bottom: 1px solid #ece6dd;
    flex-shrink: 0;
  }
  .vt-mega__cat {
    flex-shrink: 0;
  }
  .vt-mega__panel {
    padding: 20px;
    max-height: none;
  }
  .vt-mega__cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@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; }
  .vt-cat-hero__main { padding: 28px 22px; }
  .vt-cat-hero__title { font-size: 28px; }
  .vt-toolbar { padding: 12px; gap: 10px; }
  .vt-toolbar__right { gap: 8px; }
  .vt-pill { padding: 9px 14px; font-size: 13px; }
  .vt-seo { padding: 28px 22px; }
  .vt-seo__title { font-size: 20px; }
  .vt-seo__chars { grid-template-columns: 1fr 1fr; }
}

@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-page-btn { min-width: 38px; height: 38px; font-size: 13px; }
}

/* ================================================================
   СТИЛИ ДЛЯ СТРАНИЦЫ ТОВАРА
   ================================================================ */
.vt-product-page { padding: 28px 0 56px; }
.vt-product-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.vt-gallery { display: flex; flex-direction: column; gap: 14px; }
.vt-gallery__main {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f5ede2, #ede0d0);
  border-radius: 24px;
  border: 1px solid #ece6dd;
  display: grid; place-items: center;
  overflow: hidden;
  cursor: zoom-in;
}
.vt-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}
.vt-gallery__main:hover img { transform: scale(1.05) rotate(-2deg); }
.vt-gallery__badge {
  position: absolute; top: 20px; left: 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.vt-gallery__tag {
  padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  background: #ff6a3d; color: #fff;
  width: fit-content;
}
.vt-gallery__zoom {
  position: absolute; bottom: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: grid; place-items: center;
  color: #1a2438; transition: all .2s;
}
.vt-gallery__zoom:hover { background: #ff6a3d; color: #fff; }
.vt-gallery__zoom svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }

.vt-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.vt-thumb {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f5ede2, #ede0d0);
  border-radius: 14px;
  border: 2px solid transparent;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all .2s;
  overflow: hidden;
}
.vt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.vt-thumb:hover { transform: translateY(-2px); }
.vt-thumb--active { border-color: #ff6a3d; }

.vt-product-info { display: flex; flex-direction: column; }
.vt-product-info__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.vt-product-info__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #fff1eb;
  color: #ff6a3d;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.vt-product-info__sku {
  font-size: 13px;
  color: #9ca3af;
}
.vt-product-info__sku b { color: #1a2438; font-weight: 600; }
.vt-product-info__actions { display: flex; gap: 8px; }
.vt-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid #ece6dd;
  color: #6b7280;
  display: grid;
  place-items: center;
  transition: all .2s;
}
.vt-icon-btn:hover { border-color: #ff6a3d; color: #ff6a3d; }
.vt-icon-btn.is-active { background: #ff6a3d; color: #fff; border-color: #ff6a3d; }
.vt-icon-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

.vt-product-info__title {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  color: #1a2438;
  margin-bottom: 14px;
}
.vt-product-info__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.vt-product-info__rating { display: inline-flex; align-items: center; gap: 6px; }
.vt-product-info__rating-stars { display: inline-flex; gap: 2px; }
.vt-product-info__rating-stars svg { width: 16px; height: 16px; fill: #ffb400; stroke: none; }
.vt-product-info__rating-val { font-size: 14px; color: #1a2438; font-weight: 700; }
.vt-product-info__reviews-link {
  font-size: 14px;
  color: #ff6a3d;
  font-weight: 600;
  border-bottom: 1px dashed #ff6a3d;
  transition: all .2s;
}
.vt-product-info__reviews-link:hover { border-bottom-style: solid; }
.vt-product-info__stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #16a34a;
  font-size: 14px;
  font-weight: 600;
}
.vt-product-info__stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
}

.vt-option { margin-bottom: 18px; }
.vt-option__label {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}
.vt-option__label b { color: #1a2438; font-weight: 600; }
.vt-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.vt-option-btn {
  padding: 11px 18px;
  background: #fff;
  border: 1.5px solid #e5dfd4;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #1a2438;
  transition: all .2s;
}
.vt-option-btn:hover { border-color: #ff6a3d; color: #ff6a3d; }
.vt-option-btn.is-active {
  background: #1a2438;
  color: #fff;
  border-color: #1a2438;
}
.vt-option-btn.is-active:hover { color: #fff; }
.vt-option-btn small { color: #9ca3af; font-weight: 500; margin-left: 6px; }
.vt-option-btn.is-active small { color: #c9d1e0; }

.vt-short-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #ece6dd;
  border: 1px solid #ece6dd;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}
.vt-short-spec {
  background: #fff;
  padding: 12px 16px;
  font-size: 13px;
}
.vt-short-spec span { display: block; color: #9ca3af; margin-bottom: 2px; }
.vt-short-spec b { color: #1a2438; font-weight: 700; font-size: 14px; }

.vt-buy {
  background: #fff;
  border: 1px solid #ece6dd;
  border-radius: 22px;
  padding: 26px;
}
.vt-buy__prices {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.vt-buy__price {
  font-family: var(--t-headline-font);
  font-size: 38px;
  font-weight: 800;
  color: #1a2438;
  line-height: 1;
}
.vt-buy__old {
  font-size: 18px;
  color: #9ca3af;
  text-decoration: line-through;
  line-height: 1;
  margin-bottom: 4px;
}
.vt-buy__discount {
  padding: 6px 12px;
  background: #ffd84d;
  color: #1a2438;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}
.vt-buy__economy {
  font-size: 13px;
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 18px;
}
.vt-buy__qty {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.vt-qty {
  display: inline-flex;
  align-items: center;
  background: #fbf7f2;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid #ece6dd;
}
.vt-qty__btn {
  width: 44px;
  height: 44px;
  color: #1a2438;
  font-size: 18px;
  font-weight: 600;
  transition: background .2s;
}
.vt-qty__btn:hover { background: #ff6a3d; color: #fff; }
.vt-qty__val {
  min-width: 44px;
  text-align: center;
  font-family: var(--t-headline-font);
  font-size: 16px;
  font-weight: 700;
  color: #1a2438;
}
.vt-buy__unit { font-size: 14px; color: #6b7280; }
.vt-buy__unit b { color: #1a2438; font-weight: 600; }

.vt-buy__buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.vt-buy__main {
  flex: 1;
  height: 56px;
  background: #ff6a3d !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all .25s;
  box-shadow: 0 8px 24px rgba(255, 106, 61, 0.3);
  min-width: 160px;
}
.vt-buy__main:hover { background: #f04e23 !important; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255, 106, 61, 0.4); }
.vt-buy__main.is-added { background: #16a34a !important; }
.vt-buy__main svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }

.vt-buy__oneclick {
  flex: 1;
  height: 56px;
  background: #1a2438 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  transition: background .2s;
  min-width: 140px;
}
.vt-buy__oneclick:hover { background: #2a3a5c !important; }

.vt-buy__perks { display: grid; gap: 10px; }
.vt-buy__perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #4b5563;
}
.vt-buy__perk-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fff1eb;
  color: #ff6a3d;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.vt-buy__perk-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.vt-delivery { margin-top: 18px; }
.vt-delivery__title {
  font-family: var(--t-headline-font);
  font-size: 16px;
  font-weight: 700;
  color: #1a2438;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vt-delivery__title svg { width: 20px; height: 20px; stroke: #ff6a3d; fill: none; stroke-width: 2; }
.vt-delivery__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #ece6dd;
}
.vt-delivery__row:first-of-type { border-top: none; padding-top: 0; }
.vt-delivery__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fbf7f2;
  color: #ff6a3d;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.vt-delivery__icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.vt-delivery__head {
  font-family: var(--t-headline-font);
  font-size: 14px;
  font-weight: 700;
  color: #1a2438;
  margin-bottom: 4px;
}
.vt-delivery__text { font-size: 13px; color: #6b7280; line-height: 1.5; }
.vt-delivery__text b { color: #1a2438; font-weight: 600; }

.vt-price-toggle-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.vt-price-toggle {
  padding: 8px 16px;
  border: 1.5px solid #e5dfd4;
  border-radius: 10px;
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  color: #1a2438;
  cursor: pointer;
  transition: all .2s;
}
.vt-price-toggle:hover {
  border-color: #ff6a3d;
  color: #ff6a3d;
}
.vt-price-toggle.is-active {
  background: #1a2438;
  color: #fff;
  border-color: #1a2438;
}
.vt-price-toggle.is-active:hover {
  color: #fff;
}

.vt-tabs-section {
  background: #fff;
  border: 1px solid #ece6dd;
  border-radius: 22px;
  margin-top: 28px;
  overflow: hidden;
}
.vt-tabs {
  display: flex;
  border-bottom: 1px solid #ece6dd;
  background: #fbf7f2;
  overflow-x: auto;
  scrollbar-width: none;
}
.vt-tabs::-webkit-scrollbar { display: none; }
.vt-tab-btn {
  padding: 18px 26px;
  font-size: 15px;
  font-weight: 600;
  color: #6b7280;
  border-bottom: 3px solid transparent;
  transition: all .2s;
  white-space: nowrap;
  flex-shrink: 0;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
}
.vt-tab-btn:hover { color: #ff6a3d; }
.vt-tab-btn.is-active {
  color: #1a2438;
  background: #fff;
  border-bottom-color: #ff6a3d;
}
.vt-tab-btn small {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: #fbf7f2;
  color: #9ca3af;
  border-radius: 100px;
  font-size: 12px;
}
.vt-tab-btn.is-active small { background: #fff1eb; color: #ff6a3d; }

.vt-tab-panel { padding: 32px 32px 36px; display: none; }
.vt-tab-panel.is-active { display: block; }
.vt-tab-panel h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a2438;
  margin: 24px 0 12px;
}
.vt-tab-panel h3:first-child { margin-top: 0; }
.vt-tab-panel p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 14px;
}

.vt-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.vt-spec-table tr { border-bottom: 1px solid #ece6dd; }
.vt-spec-table tr:last-child { border-bottom: none; }
.vt-spec-table td {
  padding: 14px 16px;
  font-size: 14px;
  vertical-align: top;
}
.vt-spec-table td:first-child {
  color: #6b7280;
  background: #fbf7f2;
  width: 40%;
  font-weight: 500;
}
.vt-spec-table td:last-child { color: #1a2438; font-weight: 600; }

.vt-reviews-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #ece6dd;
}
.vt-reviews-summary { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.vt-reviews-score {
  font-family: var(--t-headline-font);
  font-size: 48px;
  font-weight: 800;
  color: #1a2438;
  line-height: 1;
}
.vt-reviews-stars { display: flex; gap: 3px; margin-top: 6px; }
.vt-reviews-stars svg { width: 18px; height: 18px; fill: #ffb400; stroke: none; }
.vt-reviews-count { font-size: 13px; color: #9ca3af; margin-top: 4px; }
.vt-reviews-bars { flex: 1; max-width: 320px; }
.vt-reviews-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 13px;
}
.vt-reviews-bar-stars {
  display: inline-flex;
  gap: 1px;
  width: 70px;
  flex-shrink: 0;
}
.vt-reviews-bar-stars svg { width: 12px; height: 12px; fill: #ffb400; stroke: none; }
.vt-reviews-bar-track {
  flex: 1;
  height: 6px;
  background: #ece6dd;
  border-radius: 100px;
  overflow: hidden;
}
.vt-reviews-bar-fill {
  height: 100%;
  background: #ff6a3d;
  border-radius: 100px;
}
.vt-reviews-bar-count {
  color: #9ca3af;
  min-width: 30px;
  text-align: right;
}

.vt-review {
  padding: 20px 0;
  border-bottom: 1px solid #ece6dd;
}
.vt-review:last-child { border-bottom: none; }
.vt-review__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.vt-review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6a3d, #f04e23);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--t-headline-font);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.vt-review__author { font-weight: 600; color: #1a2438; font-size: 15px; }
.vt-review__date { font-size: 13px; color: #9ca3af; }
.vt-review__rating { display: flex; gap: 2px; margin-bottom: 8px; }
.vt-review__rating svg { width: 14px; height: 14px; fill: #ffb400; stroke: none; }
.vt-review__text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.65;
}
.vt-review__pros { color: #16a34a; }
.vt-review__cons { color: #dc2626; }
.vt-review__bottom {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  font-size: 13px;
  color: #9ca3af;
}
.vt-review__like {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
  background: none;
  border: none;
  cursor: pointer;
}
.vt-review__like:hover { color: #ff6a3d; }
.vt-review__like svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.vt-related { padding: 56px 0 0; }

@media (max-width: 1200px) {
  .vt-product-top { grid-template-columns: 1fr 1fr; }
  .vt-product-top > .vt-buy { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .vt-product-top { grid-template-columns: 1fr; gap: 20px; }
  .vt-product-top > .vt-gallery,
  .vt-product-top > .vt-product-info,
  .vt-product-top > .vt-buy { grid-column: auto; }
  .vt-tab-panel { padding: 24px 22px 28px; }
}
@media (max-width: 640px) {
  .vt-product-page { padding: 18px 0 36px; }
  .vt-product-info__title { font-size: 22px; }
  .vt-buy__price { font-size: 32px; }
  .vt-short-specs { grid-template-columns: 1fr; }
  .vt-reviews-summary { flex-direction: column; align-items: flex-start; }
  .vt-tab-panel { padding: 20px 18px 24px; }
  .vt-buy__buttons { flex-direction: column; }
  .vt-buy__main, .vt-buy__oneclick { flex: 1 1 100%; }
}
@media (max-width: 380px) {
  .vt-buy__prices { flex-wrap: wrap; }
}


/* Принудительная видимость кнопки "Каталог" */
.vt-nav__catalog {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: #1a2438 !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 22px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    cursor: pointer !important;
}

/* Убираем изменение фона при наведении и в открытом состоянии */
.vt-nav__catalog:hover,
.vt-nav__catalog.is-open {
    background: #1a2438 !important; /* или любой другой постоянный цвет, если нужно */
    color: #fff !important;
}

/* ===== CATEGORY SLIDER ===== */
.vt-cat-slider { padding: 36px 0 0; position: relative; }
.vt-cat-slider__head {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 22px; gap: 24px; flex-wrap: wrap;
}
.vt-cat-slider__title {
    font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; color: #1a2438;
}
.vt-cat-slider__title span { color: #ff6a3d; }
.vt-cat-slider__sub { font-size: 14px; color: #6b7280; margin-top: 4px; }
.vt-cat-slider__controls {
    display: flex; align-items: center; gap: 10px;
}
.vt-cat-slider__btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #ece6dd;
    color: #1a2438;
    display: grid; place-items: center;
    transition: all .2s;
}
.vt-cat-slider__btn:hover:not(:disabled) {
    background: #ff6a3d;
    border-color: #ff6a3d;
    color: #fff;
    transform: scale(1.06);
}
.vt-cat-slider__btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}
.vt-cat-slider__btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.vt-cat-slider__counter {
    font-family: var(--t-headline-font);
    font-size: 14px; font-weight: 700; color: #6b7280;
    padding: 0 8px;
}
.vt-cat-slider__counter b { color: #1a2438; }

.vt-cat-slider__viewport {
    position: relative;
    overflow: hidden;
    margin: 0 -8px;
}
.vt-cat-slider__track {
    display: flex;
    gap: 16px;
    padding: 4px 8px;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.vt-cat-tile {
    flex: 0 0 calc((100% - 16px * 4) / 5);
    background: #fff;
    border: 1px solid #ece6dd;
    border-radius: 22px;
    overflow: hidden;
    transition: all .3s;
    position: relative;
    cursor: pointer;
}
.vt-cat-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(26, 36, 56, 0.1);
    border-color: #ffd0bd;
}
.vt-cat-tile__media {
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5ede2, #ede0d0);
}
.vt-cat-tile__media svg {
    width: 70%; height: 70%;
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: transform .4s;
}
.vt-cat-tile:hover .vt-cat-tile__media svg { transform: translate(-50%, -50%) scale(1.1) rotate(-3deg); }
.vt-cat-tile__badge {
    position: absolute; top: 12px; left: 12px;
    padding: 5px 11px;
    border-radius: 100px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    background: #ff6a3d; color: #fff;
    z-index: 2;
}
.vt-cat-tile__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26, 36, 56, 0.55) 100%);
    z-index: 1;
}
.vt-cat-tile__body { padding: 16px 18px 18px; }
.vt-cat-tile__name {
    font-family: var(--t-headline-font);
    font-size: 16px; font-weight: 700; color: #1a2438;
    margin-bottom: 4px; line-height: 1.3;
}
.vt-cat-tile__count {
    font-size: 12px; color: #9ca3af;
}
.vt-cat-tile__arrow {
    position: absolute; bottom: 16px; right: 16px;
    width: 36px; height: 36px; border-radius: 50%;
    background: #ff6a3d; color: #fff;
    display: grid; place-items: center;
    opacity: 0; transform: translateX(-8px);
    transition: all .3s;
    z-index: 2;
}
.vt-cat-tile:hover .vt-cat-tile__arrow {
    opacity: 1; transform: translateX(0);
}
.vt-cat-tile__arrow svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; }

.vt-cat-slider__progress {
    margin-top: 22px;
    height: 4px;
    background: #ece6dd;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}
.vt-cat-slider__progress-bar {
    position: absolute; top: 0; left: 0;
    height: 100%;
    background: linear-gradient(90deg, #ff6a3d, #ff8e63);
    border-radius: 100px;
    transition: width .5s cubic-bezier(.4, 0, .2, 1);
}

@media (max-width: 1200px) {
    .vt-cat-tile { flex: 0 0 calc((100% - 16px * 3) / 4); }
}
@media (max-width: 960px) {
    .vt-cat-tile { flex: 0 0 calc((100% - 16px * 2) / 3); }
}
@media (max-width: 720px) {
    .vt-cat-tile { flex: 0 0 calc((100% - 16px) / 2); }
}
@media (max-width: 640px) {
    .vt-cat-tile { flex: 0 0 calc(100% - 16px); }
    .vt-cat-slider__controls { gap: 6px; }
    .vt-cat-slider__counter { display: none; }
}

.vt-cat-tile__media .vt-cat-tile__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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;
    border: none;
    cursor: pointer;
    z-index: 2;
}
.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;
}