:root {
  --vt-red: #d92020;
  --vt-red-hot: #ef3232;
  --vt-yellow: #ffd400;
  --vt-yellow-soft: #fff6d8;
  --vt-paper: #fffdf6;
  --vt-ink: #1a1a1a;
  --vt-ink-2: #5d574b;
  --vt-green: #00833e;
  --vt-green-bright: #00a651;
  --vt-line: rgba(26, 26, 26, 0.14);
  --vt-shadow: 6px 6px 0 var(--vt-ink);
  --vt-shadow-sm: 4px 4px 0 var(--vt-ink);
  --vt-shadow-xs: 3px 3px 0 var(--vt-ink);
  --vt-border: 3px solid var(--vt-ink);
  --vt-ease: cubic-bezier(0.2, 0, 0, 1);
  --vt-display: "Archivo Black", "Roboto Condensed", system-ui, sans-serif;
  --vt-body: "Roboto Condensed", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --vtk-ink: #1a1a1a;
  --vtk-ink-2: #5d574b;
  --vtk-paper: #ffffff;
  --vtk-line: rgba(26, 26, 26, 0.16);
  --vtk-accent: #d92020;
  --vtk-accent-ink: #ffffff;
  --vtk-danger: #d92020;
  --vtk-ok: #00833e;
  --vtk-radius-outer: 8px;
  --vtk-radius-inner: 5px;
  --vtk-shadow-1: 3px 3px 0 rgba(26, 26, 26, 0.9);
  --vtk-shadow-2: 5px 5px 0 rgba(26, 26, 26, 0.9);
  --vtk-ease: cubic-bezier(0.2, 0, 0, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--vt-paper);
  color: var(--vt-ink);
  font-family: var(--vt-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--vt-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.06;
  text-wrap: balance;
  margin: 0 0 0.5em;
}

p {
  text-wrap: pretty;
}

a {
  color: var(--vt-red);
}

img {
  max-width: 100%;
  height: auto;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--vt-red);
  outline-offset: 2px;
}

.vt-footer :where(a, button, input):focus-visible {
  outline-color: var(--vt-yellow);
}

.vt-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.vt-skip {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 18px;
  background: var(--vt-yellow);
  color: var(--vt-ink);
  border: var(--vt-border);
  box-shadow: var(--vt-shadow-sm);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition-property: top;
  transition-duration: 0.18s;
  transition-timing-function: var(--vt-ease);
}

.vt-skip:focus {
  top: 12px;
}

.vt-wrap {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 20px;
}

.vt-wrap--narrow {
  max-width: 920px;
}

.vt-main {
  padding-bottom: 40px;
}

.vt-kicker {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vt-red);
}

.vt-section {
  padding: 40px 0;
}

.vt-section--tight {
  padding: 24px 0;
}

.vt-section--paper {
  background: var(--vt-yellow-soft);
  border-block: var(--vt-border);
}

.vt-section--ink {
  background: var(--vt-ink);
  border-block: var(--vt-border);
}

.vt-js .vt-rise {
  opacity: 0;
  transform: translateY(18px);
  transition-property: opacity, transform;
  transition-duration: 0.55s;
  transition-timing-function: var(--vt-ease);
}

.vt-js .vt-rise.is-in {
  opacity: 1;
  transform: none;
}

.vt-grid > .vt-rise:nth-child(2) { transition-delay: 0.06s; }
.vt-grid > .vt-rise:nth-child(3) { transition-delay: 0.12s; }
.vt-grid > .vt-rise:nth-child(4) { transition-delay: 0.18s; }
.vt-grid > .vt-rise:nth-child(5) { transition-delay: 0.24s; }
.vt-grid > .vt-rise:nth-child(6) { transition-delay: 0.3s; }
.vt-grid > .vt-rise:nth-child(7) { transition-delay: 0.36s; }
.vt-grid > .vt-rise:nth-child(n + 8) { transition-delay: 0.42s; }

.vt-catwall > .vt-rise:nth-child(2) { transition-delay: 0.05s; }
.vt-catwall > .vt-rise:nth-child(3) { transition-delay: 0.1s; }
.vt-catwall > .vt-rise:nth-child(4) { transition-delay: 0.15s; }
.vt-catwall > .vt-rise:nth-child(5) { transition-delay: 0.2s; }
.vt-catwall > .vt-rise:nth-child(6) { transition-delay: 0.25s; }
.vt-catwall > .vt-rise:nth-child(7) { transition-delay: 0.3s; }
.vt-catwall > .vt-rise:nth-child(n + 8) { transition-delay: 0.35s; }

.vt-receipts > .vt-rise:nth-child(2) { transition-delay: 0.1s; }
.vt-receipts > .vt-rise:nth-child(3) { transition-delay: 0.2s; }

.vt-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 22px;
  background: var(--vt-yellow);
  color: var(--vt-ink);
  border: var(--vt-border);
  border-radius: 999px;
  box-shadow: var(--vt-shadow-sm);
  font-family: var(--vt-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition-property: transform, box-shadow, background-color, color, filter;
  transition-duration: 0.18s;
  transition-timing-function: var(--vt-ease);
}

.vt-btn svg {
  flex: none;
}

.vt-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--vt-shadow);
}

.vt-btn:active {
  transform: scale(0.96);
  box-shadow: 2px 2px 0 var(--vt-ink);
}

.vt-btn--red {
  background: var(--vt-red);
  color: #fff;
}

.vt-btn--red:hover {
  background: var(--vt-red-hot);
}

.vt-btn--green {
  background: var(--vt-green);
  color: #fff;
}

.vt-btn--green:hover {
  background: var(--vt-green-bright);
}

.vt-btn--ghost {
  background: var(--vt-paper);
  color: var(--vt-ink);
}

.vt-btn--ghost:hover {
  background: #fff;
}

.vt-btn--block {
  width: 100%;
}

.vt-btn--xl {
  min-height: 60px;
  padding: 14px 30px;
  font-family: var(--vt-display);
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: 0.02em;
}

.vt-star {
  position: absolute;
  top: -14px;
  left: -14px;
  z-index: 3;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  filter: drop-shadow(3px 3px 0 rgba(26, 26, 26, 0.95));
}

.vt-star--tilt {
  rotate: -6deg;
}

.vt-star__burst {
  position: absolute;
  inset: 0;
  background: var(--vt-yellow);
  clip-path: polygon(50% 0%, 60.6% 10.4%, 75% 6.7%, 79% 21%, 93.3% 25%, 89.6% 39.4%, 100% 50%, 89.6% 60.6%, 93.3% 75%, 79% 79%, 75% 93.3%, 60.6% 89.6%, 50% 100%, 39.4% 89.6%, 25% 93.3%, 21% 79%, 6.7% 75%, 10.4% 60.6%, 0% 50%, 10.4% 39.4%, 6.7% 25%, 21% 21%, 25% 6.7%, 39.4% 10.4%);
}

.vt-star__label {
  position: relative;
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1;
  transform: translateY(1px);
}

.vt-star__label b {
  font-family: var(--vt-display);
  font-weight: 400;
  font-size: 16px;
  color: var(--vt-red);
  font-variant-numeric: tabular-nums;
}

.vt-star__label small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--vt-ink);
}

.vt-live {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2be26b;
  box-shadow: 0 0 0 0 rgba(43, 226, 107, 0.55);
  animation: vt-live-pulse 1.8s infinite;
}

@keyframes vt-live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(43, 226, 107, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(43, 226, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(43, 226, 107, 0); }
}

.vt-faixa-wrap {
  width: 100%;
  overflow: hidden;
  padding-block: 4px;
}

.vt-faixa {
  transform: rotate(-2deg);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 22px;
  background: var(--vt-red);
  color: #fff;
  border: var(--vt-border);
  box-shadow: var(--vt-shadow);
  font-family: var(--vt-display);
  font-size: clamp(15px, 2.4vw, 24px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vt-topbar {
  background: var(--vt-red);
  color: #fff;
  border-bottom: var(--vt-border);
}

.vt-topbar__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
}

.vt-topbar__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: none;
  padding: 5px 12px;
  background: var(--vt-ink);
  color: #fff;
  border-radius: 999px;
  font-family: var(--vt-display);
  font-size: 10.5px;
  letter-spacing: 0.1em;
}

.vt-topbar .vt-ticker {
  flex: 1;
  min-width: 0;
  background: transparent;
  border-block: 0;
  color: #fff;
}

.vt-topbar .vt-ticker__item {
  font-family: var(--vt-display);
  font-size: 11.5px;
  letter-spacing: 0.06em;
}

.vt-topbar .vt-ticker__dot {
  color: var(--vt-yellow);
  opacity: 1;
}

.vt-header {
  background: var(--vt-yellow);
  border-bottom: var(--vt-border);
  position: relative;
  z-index: 60;
}

.vt-header__inner {
  display: grid;
  grid-template-columns: auto minmax(260px, 620px) auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
}

.vt-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--vt-paper);
  border: var(--vt-border);
  border-radius: 8px;
  box-shadow: var(--vt-shadow-xs);
  cursor: pointer;
  transition-property: transform, box-shadow, background-color;
  transition-duration: 0.18s;
  transition-timing-function: var(--vt-ease);
}

.vt-burger:active {
  transform: scale(0.96);
}

.vt-burger__bars {
  display: grid;
  gap: 5px;
  width: 22px;
}

.vt-burger__bars i {
  display: block;
  height: 3px;
  background: var(--vt-ink);
  border-radius: 2px;
  transition-property: transform, opacity;
  transition-duration: 0.24s;
  transition-timing-function: var(--vt-ease);
}

.vt-burger.is-open .vt-burger__bars i:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.vt-burger.is-open .vt-burger__bars i:nth-child(2) {
  opacity: 0;
}

.vt-burger.is-open .vt-burger__bars i:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.vt-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-height: 48px;
}

.vt-logo .vt-brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.vt-logo .vt-brand--img img {
  max-height: clamp(40px, 5vw, 56px);
  width: auto;
  display: block;
}

.vt-logo .vt-brand--text span {
  font-family: var(--vt-display);
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 0.95;
  color: var(--vt-ink);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.vt-logo__starwrap {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(44px, 5vw, 56px);
  height: clamp(44px, 5vw, 56px);
  flex: none;
  rotate: -6deg;
  filter: drop-shadow(3px 3px 0 rgba(26, 26, 26, 0.9));
}

.vt-logo__star {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: var(--vt-red);
}



.vt-search {
  display: flex;
  align-items: stretch;
  background: var(--vt-paper);
  border: var(--vt-border);
  box-shadow: var(--vt-shadow-sm);
  min-height: 52px;
}

.vt-search__input {
  flex: 1;
  min-width: 0;
  padding: 0 16px;
  background: transparent;
  border: 0;
  color: var(--vt-ink);
  font-family: var(--vt-body);
  font-size: 16px;
  font-weight: 500;
}

.vt-search__input::placeholder {
  color: var(--vt-ink-2);
}

.vt-search__input:focus {
  outline: none;
}

.vt-search:focus-within {
  box-shadow: var(--vt-shadow);
}

.vt-search__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  background: var(--vt-red);
  color: #fff;
  border: 0;
  border-left: var(--vt-border);
  font-family: var(--vt-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition-property: background-color, color;
  transition-duration: 0.16s;
  transition-timing-function: var(--vt-ease);
}

.vt-search__btn:hover {
  background: var(--vt-ink);
  color: var(--vt-yellow);
}

.vt-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vt-hbtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 6px 14px;
  background: var(--vt-paper);
  color: var(--vt-ink);
  border: var(--vt-border);
  border-radius: 999px;
  box-shadow: var(--vt-shadow-xs);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition-property: transform, box-shadow, background-color, color;
  transition-duration: 0.18s;
  transition-timing-function: var(--vt-ease);
}

.vt-hbtn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--vt-shadow-sm);
  background: #fff;
}

.vt-hbtn:active {
  transform: scale(0.96);
}

.vt-hbtn--cart {
  background: var(--vt-red);
  color: #fff;
}

.vt-hbtn--cart:hover {
  background: var(--vt-red-hot);
}

.vt-cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  background: var(--vt-yellow);
  color: var(--vt-ink);
  border: 2px solid var(--vt-ink);
  border-radius: 999px;
  font-family: var(--vt-display);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.vt-header .vt-geo-chip {
  border: 2.5px solid var(--vt-ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--vt-ink);
  background: var(--vt-paper);
}

.vt-header .vt-geo-chip:hover {
  box-shadow: 4px 4px 0 var(--vt-ink);
}

.vt-nav {
  background: var(--vt-ink);
  border-top: var(--vt-border);
}

.vt-nav__inner {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.vt-nav__inner::-webkit-scrollbar {
  display: none;
}

.vt-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: none;
  min-height: 44px;
  padding: 10px 14px;
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 4px solid transparent;
  transition-property: color, background-color, border-color;
  transition-duration: 0.16s;
  transition-timing-function: var(--vt-ease);
}

.vt-nav__link:hover {
  color: var(--vt-yellow);
  border-bottom-color: var(--vt-red);
}

.vt-nav__link.is-current {
  color: var(--vt-yellow);
  border-bottom-color: var(--vt-yellow);
}

.vt-nav__link--hot {
  background: var(--vt-red);
  color: #fff;
  font-family: var(--vt-display);
  font-size: 13px;
}

.vt-nav__link--hot:hover {
  background: var(--vt-red-hot);
  color: #fff;
}

.vt-mm__list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vt-mm__item {
  position: static;
}

.vt-mm__trigger {
  background: none;
  border: 0;
  border-bottom: 4px solid transparent;
  white-space: nowrap;
  font-family: var(--vt-body);
}

.vt-mm__trigger[aria-expanded="true"] {
  color: var(--vt-yellow);
  border-bottom-color: var(--vt-red);
}

.vt-mm__chev {
  flex: none;
}

.vt-mm__panel {
  border: 2px solid var(--vt-ink);
  border-top: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 10px 0 rgba(26, 26, 26, 0.9);
  padding-bottom: 20px;
  overflow: hidden;
}

.vt-mm__strip {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin: -2px -12px 20px;
  padding: 12px 36px;
  background: var(--vt-yellow);
  border-block: 2px solid var(--vt-ink);
  transform: rotate(-1deg);
  font-family: var(--vt-display);
  font-size: clamp(16px, 2vw, 22px);
  text-transform: uppercase;
  color: var(--vt-ink);
}

.vt-mm__strip em {
  font-family: var(--vt-body);
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vt-ink-2);
}

.vt-mm__cols {
  display: grid;
  grid-template-columns: minmax(230px, 330px) minmax(0, 1fr);
  gap: 32px;
  padding-inline: 32px;
  align-items: start;
}

.vt-mm__kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vt-ink-2);
}

.vt-mm__pills {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vt-mm__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  background: #fff;
  color: var(--vt-ink);
  border: 2px solid var(--vt-ink);
  border-radius: 999px;
  box-shadow: var(--vt-shadow-xs);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  transition-property: transform, box-shadow, background-color;
  transition-duration: 0.16s;
  transition-timing-function: var(--vt-ease);
}

.vt-mm__pill:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--vt-shadow-sm);
  background: var(--vt-yellow-soft);
}

.vt-mm__pill:active {
  transform: scale(0.96);
  box-shadow: 2px 2px 0 var(--vt-ink);
}

.vt-mm__pill-n {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 22px;
  padding: 0 8px;
  background: var(--vt-yellow);
  color: var(--vt-ink);
  border: 2px solid var(--vt-ink);
  border-radius: 999px;
  transform: rotate(-3deg);
  font-family: var(--vt-display);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.vt-mm__featgrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.vt-mmtile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  background: #fff;
  border: 2px solid var(--vt-ink);
  box-shadow: var(--vt-shadow-sm);
  color: var(--vt-ink);
  text-decoration: none;
  transition-property: transform, box-shadow;
  transition-duration: 0.18s;
  transition-timing-function: var(--vt-ease);
}

.vt-mmtile:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--vt-ink);
}

.vt-mmtile:active {
  transform: scale(0.96);
}

.vt-mmtile__media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 8px;
  background: var(--vt-paper);
  border: 2px solid var(--vt-ink);
}

.vt-mmtile__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.vt-mmtile__name {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

.vt-mm__all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  margin: 20px 32px 0;
  background: var(--vt-ink);
  color: var(--vt-yellow);
  border: 2px solid var(--vt-ink);
  font-family: var(--vt-display);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition-property: background-color, color, transform;
  transition-duration: 0.16s;
  transition-timing-function: var(--vt-ease);
}

.vt-mm__all:hover {
  background: var(--vt-red);
  color: #fff;
  transform: translateY(-2px);
}

.vt-mm__all:active {
  transform: scale(0.96);
}

.vt-car__row {
  grid-auto-columns: min(288px, 76vw);
  gap: 16px;
  padding: 12px 60px 16px;
  scroll-padding-left: 60px;
  margin-inline: -8px;
}

.vt-car__btn {
  width: 48px;
  height: 48px;
  background: var(--vt-yellow);
  color: var(--vt-ink);
  border: 2.5px solid var(--vt-ink);
  box-shadow: var(--vt-shadow-xs);
}

.vt-car__btn:hover:not([disabled]) {
  background: #fff;
  box-shadow: var(--vt-shadow-sm);
}

.vt-car__btn:active:not([disabled]) {
  scale: 0.96;
  box-shadow: 2px 2px 0 var(--vt-ink);
}

.vt-car__btn[disabled] {
  opacity: 0.3;
  box-shadow: none;
}

.vt-car__btn--prev {
  left: 4px;
}

.vt-car__btn--next {
  right: 4px;
}

@media (min-width: 1400px) {
  .vt-car__row {
    padding-inline: 0;
    scroll-padding-left: 0;
  }
  .vt-car__btn--prev {
    left: -60px;
  }
  .vt-car__btn--next {
    right: -60px;
  }
}

.vt-car__row > .vt-rise:nth-child(2) { transition-delay: 0.06s; }
.vt-car__row > .vt-rise:nth-child(3) { transition-delay: 0.12s; }
.vt-car__row > .vt-rise:nth-child(4) { transition-delay: 0.18s; }
.vt-car__row > .vt-rise:nth-child(5) { transition-delay: 0.24s; }
.vt-car__row > .vt-rise:nth-child(n + 6) { transition-delay: 0.3s; }

.vt-hero {
  position: relative;
  overflow: hidden;
  background: var(--vt-paper);
  border-bottom: var(--vt-border);
}

.vt-hero__rays {
  position: absolute;
  inset: -40%;
  background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(217, 32, 32, 0.06) 0deg 9deg, rgba(255, 212, 0, 0.08) 9deg 18deg);
  pointer-events: none;
}

.vt-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
  justify-items: start;
  gap: 48px;
  padding-block: 48px 56px;
}

.vt-hero__copy {
  display: grid;
  justify-items: start;
  gap: 16px;
  min-width: 0;
}

.vt-hero__copy > * {
  max-width: 100%;
}

.vt-hero__lot {
  min-width: 0;
}

.vt-hero__title {
  margin: 0;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 0.98;
  text-transform: uppercase;
}

.vt-hero__title span {
  color: var(--vt-red);
}

.vt-hero__sub {
  margin: 0;
  max-width: 560px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  color: var(--vt-ink-2);
}

.vt-hero__count .vt-count {
  justify-content: flex-start;
}

.vt-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.vt-hero__lot {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 20px;
  background: #fff;
  border: var(--vt-border);
  box-shadow: var(--vt-shadow);
  transform: rotate(1.5deg);
}

.vt-hero__lot-kick {
  justify-self: start;
  margin: 0;
  padding: 6px 12px;
  background: var(--vt-ink);
  color: var(--vt-yellow);
  transform: rotate(-2deg);
  font-family: var(--vt-display);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.vt-hero__lot-link {
  display: grid;
  gap: 12px;
  color: var(--vt-ink);
  text-decoration: none;
}

.vt-hero__lot-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 12px;
  background: var(--vt-paper);
  border: 2px solid var(--vt-ink);
}

.vt-hero__lot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.vt-hero__lot-name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

.vt-hero__lot-note {
  margin: 0;
  padding-top: 12px;
  border-top: 2px dashed var(--vt-ink);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--vt-ink-2);
}

.vt-hero__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vt-hero__perks li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: #fff;
  border: 2px solid var(--vt-ink);
  border-radius: 999px;
  box-shadow: var(--vt-shadow-xs);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.vt-hero__perks b {
  color: var(--vt-red);
  font-family: var(--vt-display);
  font-weight: 400;
}

.vt-sec-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.vt-sec-head__title {
  margin: 0;
  font-size: clamp(24px, 4vw, 44px);
  text-transform: uppercase;
}

.vt-sec-head__tag {
  display: inline-flex;
  align-items: center;
  transform: rotate(-2deg);
  padding: 7px 14px;
  background: var(--vt-red);
  color: #fff;
  border: 2.5px solid var(--vt-ink);
  box-shadow: var(--vt-shadow-xs);
  font-family: var(--vt-display);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.vt-sec-head__tag--yellow {
  background: var(--vt-yellow);
  color: var(--vt-ink);
}

.vt-sec-head__more {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  color: var(--vt-ink);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 3px solid var(--vt-red);
  transition-property: color, border-color, transform;
  transition-duration: 0.16s;
  transition-timing-function: var(--vt-ease);
}

.vt-sec-head__more:hover {
  color: var(--vt-red);
  transform: translateX(3px);
}

.vt-sec-head--inv .vt-sec-head__title {
  color: var(--vt-yellow);
}

.vt-sec-head__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  font-family: var(--vt-display);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.vt-grid {
  display: grid;
  gap: 24px;
}

.vt-grid--prod {
  grid-template-columns: repeat(4, 1fr);
}

.vt-grid--mini {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vt-grid--posts {
  grid-template-columns: repeat(3, 1fr);
}

.vt-card {
  background: #fff;
  border: var(--vt-border);
  box-shadow: var(--vt-shadow);
  transition-property: transform, box-shadow;
  transition-duration: 0.2s;
  transition-timing-function: var(--vt-ease);
}

.vt-prod {
  display: flex;
  flex-direction: column;
  position: relative;
}

.vt-prod:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 var(--vt-ink);
}

.vt-prod__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-bottom: var(--vt-border);
  text-decoration: none;
  overflow: visible;
}

.vt-prod__shot {
  position: absolute;
  inset: 12px;
  display: block;
  overflow: hidden;
  background: #fff;
}

.vt-prod__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: var(--vt-ease);
}

.vt-prod:hover .vt-prod__img {
  transform: scale(1.04);
}

.vt-prod__flag {
  position: absolute;
  bottom: 10px;
  left: -8px;
  z-index: 2;
  transform: rotate(-2deg);
  padding: 5px 12px;
  background: var(--vt-red);
  color: #fff;
  border: 2.5px solid var(--vt-ink);
  box-shadow: var(--vt-shadow-xs);
  font-family: var(--vt-display);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.vt-prod__flag--pdp {
  bottom: 14px;
  left: -10px;
  font-size: 13px;
  padding: 7px 16px;
}

.vt-prod__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  padding: 16px;
}

.vt-prod__title {
  margin: 0;
  font-family: var(--vt-body);
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1.25;
  letter-spacing: 0;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

.vt-prod__title a {
  color: var(--vt-ink);
  text-decoration: none;
  transition-property: color;
  transition-duration: 0.16s;
}

.vt-prod__title a:hover {
  color: var(--vt-red);
}

.vt-price {
  display: grid;
  gap: 4px;
  align-content: start;
}

.vt-price__old {
  color: var(--vt-ink-2);
  font-size: 14px;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  font-variant-numeric: tabular-nums;
}

.vt-price__pix {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.vt-price__pix b {
  font-family: var(--vt-display);
  font-weight: 400;
  font-size: clamp(23px, 2.6vw, 31px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--vt-green);
  font-variant-numeric: tabular-nums;
}

.vt-price__tag {
  padding: 3px 8px;
  background: var(--vt-green);
  color: #fff;
  border: 2px solid var(--vt-ink);
  border-radius: 6px;
  box-shadow: 2px 2px 0 var(--vt-ink);
  font-family: var(--vt-display);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.vt-price__card {
  font-size: 13px;
  font-weight: 700;
  color: var(--vt-ink-2);
  font-variant-numeric: tabular-nums;
}

.vt-price--mm {
  gap: 2px;
}

.vt-price--mm .vt-price__pix b {
  font-size: 19px;
}

.vt-price--mm .vt-price__tag {
  padding: 2px 6px;
  border-width: 1.5px;
  box-shadow: none;
  font-size: 9.5px;
}

.vt-price--mm .vt-price__card {
  font-size: 11.5px;
}

.vt-price--mm .vt-price__old {
  font-size: 12px;
}

.vt-price--mini {
  gap: 2px;
}

.vt-price--mini .vt-price__pix b {
  font-size: 18px;
}

.vt-price--mini .vt-price__tag {
  padding: 2px 6px;
  border-width: 1.5px;
  box-shadow: none;
  font-size: 9.5px;
}

.vt-price--mini .vt-price__card {
  font-size: 11.5px;
}

.vt-price--mini .vt-price__old {
  display: none;
}

.vt-prod .vt-fomo-stock {
  margin-top: 2px;
}

.vt-prod__cta {
  margin-top: auto;
}

.woocommerce-Price-amount {
  font-variant-numeric: tabular-nums;
}

.vt-catwall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vt-catwall__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 14px 16px;
  background: #fff;
  border: var(--vt-border);
  box-shadow: var(--vt-shadow-sm);
  text-align: center;
  text-decoration: none;
  transition-property: transform, box-shadow, background-color;
  transition-duration: 0.2s;
  transition-timing-function: var(--vt-ease);
}

.vt-catwall__item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--vt-ink);
  background: var(--vt-yellow-soft);
}

.vt-catwall__item:active {
  transform: scale(0.96);
}

.vt-catwall__media {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--vt-paper);
  border: 2px solid var(--vt-ink);
}

.vt-catwall__media svg {
  width: 52px;
  height: 52px;
  color: var(--vt-red);
}

.vt-catwall__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vt-catwall__name {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--vt-ink);
  text-wrap: balance;
}

.vt-catwall__count {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: var(--vt-red);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.vt-freight {
  transform: rotate(-2deg);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--vt-yellow);
  border: var(--vt-border);
  box-shadow: 8px 8px 0 var(--vt-ink);
}

.vt-freight__truck {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: none;
  background: var(--vt-red);
  color: #fff;
  border: 2.5px solid var(--vt-ink);
  border-radius: 50%;
}

.vt-freight__body {
  flex: 1;
  min-width: 0;
}

.vt-freight__title {
  margin: 0 0 8px;
  font-family: var(--vt-display);
  font-size: clamp(15px, 2vw, 22px);
  text-transform: uppercase;
}

.vt-freight .vt-btn {
  flex: none;
}

.vt-receipts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vt-receipt {
  position: relative;
  padding: 18px 20px 22px;
  background: var(--vt-paper);
  border: 2px dashed var(--vt-ink);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.55);
  font-family: ui-monospace, "SF Mono", "Cascadia Mono", "Roboto Condensed", monospace;
  overflow: hidden;
}

.vt-receipt:nth-child(1) { rotate: -1.4deg; }
.vt-receipt:nth-child(2) { rotate: 0.8deg; }
.vt-receipt:nth-child(3) { rotate: -0.6deg; }

.vt-receipt__head {
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px dashed rgba(26, 26, 26, 0.35);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vt-ink-2);
  font-variant-numeric: tabular-nums;
}

.vt-receipt__who {
  margin: 0 0 4px;
  font-family: var(--vt-body);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--vt-ink);
}

.vt-receipt__who span {
  font-size: 13px;
  font-weight: 500;
  color: var(--vt-ink-2);
  text-transform: none;
}

.vt-receipt__what {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--vt-ink);
}

.vt-receipt__when {
  margin: 0;
  font-size: 12px;
  color: var(--vt-ink-2);
  font-variant-numeric: tabular-nums;
}

.vt-receipt__stamp {
  position: absolute;
  top: 16px;
  right: -6px;
  transform: rotate(8deg);
  padding: 4px 12px;
  border: 2.5px solid var(--vt-green);
  border-radius: 6px;
  color: var(--vt-green);
  font-family: var(--vt-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.vt-news__box {
  transform: rotate(-2deg);
  max-width: 760px;
  margin-inline: auto;
  padding: 34px 32px 30px;
  background: var(--vt-yellow);
  border: var(--vt-border);
  box-shadow: 8px 8px 0 var(--vt-ink);
  text-align: center;
}

.vt-news__title {
  margin: 0 0 8px;
  font-size: clamp(24px, 4vw, 40px);
  text-transform: uppercase;
}

.vt-news__sub {
  margin: 0 auto 20px;
  max-width: 520px;
  font-size: 17px;
}

.vt-news__sub b {
  color: var(--vt-green);
}

.vt-news__form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.vt-news__form[hidden] {
  display: none;
}

.vt-news__input {
  flex: 1;
  min-width: min(300px, 100%);
  min-height: 52px;
  padding: 0 18px;
  background: var(--vt-paper);
  border: var(--vt-border);
  color: var(--vt-ink);
  font-family: var(--vt-body);
  font-size: 17px;
  font-weight: 500;
}

.vt-news__input:focus {
  outline: 3px solid var(--vt-red);
  outline-offset: 2px;
}

.vt-news__msg {
  min-height: 22px;
  margin: 12px 0 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vt-red);
}

.vt-news__ok {
  margin: 16px 0 0;
  padding: 16px 20px;
  background: var(--vt-green);
  color: #fff;
  border: 2.5px solid var(--vt-ink);
  box-shadow: var(--vt-shadow-sm);
  font-size: 16px;
  animation: vt-ok-in 0.4s var(--vt-ease) both;
}

.vt-news__ok[hidden] {
  display: none;
}

.vt-news__ok b {
  font-family: var(--vt-display);
  font-weight: 400;
  letter-spacing: 0.02em;
}

@keyframes vt-ok-in {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.vt-shop-head {
  padding-block: 30px 18px;
}

.vt-shop-head__title {
  margin: 0;
  font-size: clamp(30px, 5vw, 58px);
  text-transform: uppercase;
}

.vt-shop-head__count {
  margin: 8px 0 0;
  color: var(--vt-ink-2);
  font-size: 16px;
}

.vt-shop-head__count b {
  color: var(--vt-red);
  font-family: var(--vt-display);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.vt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.vt-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 16px;
  background: #fff;
  color: var(--vt-ink);
  border: 2.5px solid var(--vt-ink);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: var(--vt-shadow-xs);
  transition-property: transform, box-shadow, background-color, color;
  transition-duration: 0.16s;
  transition-timing-function: var(--vt-ease);
}

.vt-chip:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--vt-shadow-sm);
  background: var(--vt-yellow);
}

.vt-chip:active {
  transform: scale(0.96);
}

.vt-chip.is-active {
  background: var(--vt-red);
  color: #fff;
}

.vt-chip__n {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  padding: 1px 6px;
  background: var(--vt-yellow);
  color: var(--vt-ink);
  border: 1.5px solid var(--vt-ink);
  border-radius: 999px;
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
}

.vt-chip.is-active .vt-chip__n {
  background: var(--vt-ink);
  color: var(--vt-yellow);
  border-color: var(--vt-ink);
}

.vt-chip--sm {
  position: relative;
  min-height: 34px;
  padding: 5px 12px;
  font-size: 12.5px;
  box-shadow: none;
  border-width: 2px;
}

.vt-chip--sm::after {
  content: "";
  position: absolute;
  inset: -4px -2px;
}

.vt-chip--plain {
  background: var(--vt-yellow-soft);
}

.vt-empty {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
  border: var(--vt-border);
  box-shadow: var(--vt-shadow);
}

.vt-empty__title {
  margin: 0 0 8px;
  font-family: var(--vt-display);
  font-size: clamp(22px, 4vw, 36px);
  text-transform: uppercase;
}

.vt-empty__sub {
  margin: 0 auto 20px;
  max-width: 480px;
  color: var(--vt-ink-2);
}

.vt-empty-note {
  padding: 26px 20px;
  background: #fff;
  border: 2px dashed var(--vt-ink);
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}

.vt-notices {
  margin-bottom: 16px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews {
  padding: 14px 18px;
  background: #fff;
  border: var(--vt-border);
  border-left-width: 8px;
  box-shadow: var(--vt-shadow-sm);
  font-family: var(--vt-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--vt-ink);
  border-radius: 0;
}

.woocommerce-message {
  border-left-color: var(--vt-green);
}

.woocommerce-info {
  border-left-color: var(--vt-yellow);
}

.woocommerce-error {
  border-left-color: var(--vt-red);
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  display: none;
}

.vt-pagination {
  margin-top: 34px;
}

.vt-pagination nav.woocommerce-pagination,
.vt-pagination .navigation {
  display: flex;
  justify-content: center;
}

.vt-pagination ul.page-numbers,
.vt-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.vt-pagination li {
  margin: 0;
}

.vt-pagination .page-numbers,
.vt-pagination .nav-links a,
.vt-pagination .nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 14px;
  background: #fff;
  color: var(--vt-ink);
  border: 2.5px solid var(--vt-ink);
  box-shadow: var(--vt-shadow-xs);
  font-family: var(--vt-body);
  font-weight: 700;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  text-decoration: none;
  transition-property: transform, box-shadow, background-color, color;
  transition-duration: 0.16s;
  transition-timing-function: var(--vt-ease);
}

.vt-pagination a.page-numbers:hover,
.vt-pagination .nav-links a:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--vt-shadow-sm);
  background: var(--vt-yellow);
}

.vt-pagination .page-numbers.current,
.vt-pagination .nav-links .current {
  background: var(--vt-yellow);
  font-family: var(--vt-display);
}

.vt-pagination .page-numbers.dots {
  border: 0;
  box-shadow: none;
  background: transparent;
}

.vt-back {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 16px;
  color: var(--vt-ink);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 3px solid var(--vt-red);
  transition-property: color, transform;
  transition-duration: 0.16s;
  transition-timing-function: var(--vt-ease);
}

.vt-back:hover {
  color: var(--vt-red);
  transform: translateX(-3px);
}

.vt-pdp {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: start;
  padding-bottom: 40px;
}

.vt-pdp__stage {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 18px;
  background: #fff;
  border: var(--vt-border);
  box-shadow: var(--vt-shadow);
}

.vt-pdp__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
  transition-property: opacity;
  transition-duration: 0.14s;
  transition-timing-function: var(--vt-ease);
}

.vt-pdp__ph {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: var(--vt-yellow-soft);
}

.vt-pdp__ph svg {
  width: 40%;
  height: 40%;
  fill: var(--vt-red);
  opacity: 0.7;
}

.vt-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.vt-thumb {
  position: relative;
  flex: none;
  width: 72px;
  height: 72px;
  padding: 4px;
  background: #fff;
  border: 2.5px solid var(--vt-ink);
  box-shadow: var(--vt-shadow-xs);
  cursor: pointer;
  transition-property: transform, box-shadow, border-color;
  transition-duration: 0.16s;
  transition-timing-function: var(--vt-ease);
}

.vt-thumb:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--vt-shadow-sm);
}

.vt-thumb.is-active {
  border-color: var(--vt-red);
  box-shadow: 3px 3px 0 var(--vt-red);
}

.vt-thumb__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vt-pdp__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vt-pdp__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vt-pdp__title {
  margin: 0;
  font-family: var(--vt-body);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: 0;
}

.vt-rate {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--vt-ink-2);
  font-size: 14.5px;
}

.vt-rate svg {
  color: var(--vt-yellow);
  filter: drop-shadow(0 0 0.5px var(--vt-ink));
}

.vt-rate b {
  color: var(--vt-ink);
  font-family: var(--vt-display);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.vt-pricebox {
  padding: 18px 20px;
  background: #fff;
  border: var(--vt-border);
  box-shadow: var(--vt-shadow);
}

.vt-pricebox__old {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 2px;
  color: var(--vt-ink-2);
  font-size: 17px;
}

.vt-pricebox__old s {
  text-decoration-thickness: 2px;
}

.vt-pricebox__save {
  padding: 3px 10px;
  background: var(--vt-yellow);
  border: 2px solid var(--vt-ink);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.vt-pricebox__now {
  margin: 0;
}

.vt-pricebox__now .woocommerce-Price-amount {
  font-family: var(--vt-display);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 58px);
  color: var(--vt-green);
  line-height: 1.02;
  font-variant-numeric: tabular-nums;
}

.vt-pricebox__now .woocommerce-Price-currencySymbol {
  font-size: 0.55em;
}

.vt-pricebox__parc {
  margin: 4px 0 0;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--vt-ink-2);
  font-variant-numeric: tabular-nums;
}

.vt-pricebox__pix {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 2px dashed var(--vt-line);
  font-size: 15px;
  font-weight: 500;
}

.vt-pricebox__pix b {
  color: var(--vt-green);
  font-family: var(--vt-display);
  font-weight: 400;
  font-size: 18px;
  font-variant-numeric: tabular-nums;
}

.vt-pixbadge {
  transform: rotate(-2deg);
  padding: 6px 12px;
  background: var(--vt-green);
  color: #fff;
  border: 2.5px solid var(--vt-ink);
  box-shadow: var(--vt-shadow-xs);
  font-family: var(--vt-display);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.vt-pdp__fomorow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vt-pdp .vt-shipauto {
  gap: 10px;
  padding: 14px 16px;
  background: #fff;
  border: 2px solid var(--vt-ink);
  box-shadow: var(--vt-shadow-sm);
}

.vt-pdp .vt-shipauto__head {
  font-family: var(--vt-display);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--vt-ink);
}

.vt-pdp .vt-shipauto__head svg {
  color: var(--vt-red);
}

.vt-pdp .vt-shipauto__cta {
  justify-self: start;
  background: var(--vt-yellow);
  color: var(--vt-ink);
  border: 2px solid var(--vt-ink);
  border-radius: 0;
  box-shadow: var(--vt-shadow-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.vt-pdp .vt-shipauto__cta:hover {
  filter: none;
  background: var(--vt-red);
  color: #fff;
}

.vt-pdp .vt-shipauto__cta:active {
  scale: 0.96;
  box-shadow: 2px 2px 0 var(--vt-ink);
}

.vt-pdp .vt-shipauto__hint {
  color: var(--vt-ink-2);
}

.vt-pdp .vt-shipauto__city {
  font-weight: 700;
}

.vt-pdp .vt-shipauto__lines li {
  background: var(--vt-paper);
  border: 2px solid var(--vt-ink);
  border-radius: 0;
  font-weight: 700;
}

.vt-pdp .vt-shipauto__lines .is-free {
  color: var(--vt-green);
}

.vt-buy {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}

.vt-qty {
  display: inline-flex;
  align-items: stretch;
  background: #fff;
  border: var(--vt-border);
  box-shadow: var(--vt-shadow-xs);
}

.vt-qty__btn {
  width: 48px;
  min-height: 52px;
  background: var(--vt-yellow-soft);
  border: 0;
  border-inline: 2px solid var(--vt-ink);
  color: var(--vt-ink);
  font-family: var(--vt-display);
  font-size: 20px;
  cursor: pointer;
  transition-property: background-color, color, transform;
  transition-duration: 0.14s;
  transition-timing-function: var(--vt-ease);
}

.vt-qty__btn:hover {
  background: var(--vt-yellow);
}

.vt-qty__btn:active {
  transform: scale(0.96);
}

.vt-qty__input {
  width: 56px;
  min-height: 52px;
  padding: 0 4px;
  background: transparent;
  border: 0;
  text-align: center;
  font-family: var(--vt-display);
  font-size: 18px;
  color: var(--vt-ink);
  font-variant-numeric: tabular-nums;
}

.vt-qty__input:focus {
  outline: none;
}

.vt-qty:focus-within {
  box-shadow: var(--vt-shadow-sm);
}

.vt-buy__btn {
  flex: 1;
  min-width: min(280px, 100%);
}

.vt-buy--std .single_add_to_cart_button,
.woocommerce div.product .vt-buy--std form.cart .button {
  flex: 1;
  min-height: 60px;
  padding: 14px 26px;
  background: var(--vt-red);
  color: #fff;
  border: var(--vt-border);
  border-radius: 999px;
  box-shadow: var(--vt-shadow-sm);
  font-family: var(--vt-display);
  font-size: 18px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition-property: transform, box-shadow, background-color;
  transition-duration: 0.18s;
  transition-timing-function: var(--vt-ease);
}

.vt-buy--std .single_add_to_cart_button:hover {
  background: var(--vt-red-hot);
  transform: translate(-2px, -2px);
  box-shadow: var(--vt-shadow);
}

.vt-buy--std .single_add_to_cart_button:active {
  transform: scale(0.96);
}

.vt-buy--std .quantity {
  margin-right: 10px;
}

.vt-buy--std .quantity .qty {
  min-height: 56px;
  width: 72px;
  padding: 0 8px;
  background: #fff;
  border: var(--vt-border);
  box-shadow: var(--vt-shadow-xs);
  font-family: var(--vt-display);
  font-size: 18px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.vt-buy--std form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.vt-buy--std .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  width: 100%;
}

.vt-buy--std table.variations {
  border: 0;
  margin-bottom: 12px;
  width: 100%;
}

.vt-buy--std table.variations td,
.vt-buy--std table.variations th {
  border: 0;
  padding: 6px 8px 6px 0;
  background: transparent;
  font-family: var(--vt-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.vt-buy--std table.variations select {
  min-height: 44px;
  padding: 8px 12px;
  border: 2.5px solid var(--vt-ink);
  background: #fff;
  font-family: var(--vt-body);
  font-weight: 700;
  font-size: 15px;
}

.vt-buy__out {
  margin: 0;
  padding: 16px 18px;
  background: var(--vt-red);
  color: #fff;
  border: var(--vt-border);
  box-shadow: var(--vt-shadow-sm);
  font-family: var(--vt-display);
  font-size: 15px;
  text-transform: uppercase;
}

.vt-buy__note {
  margin: -6px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--vt-ink-2);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.vt-buy__note b {
  color: var(--vt-green);
}

.vt-pdp__short {
  padding: 16px 18px;
  background: #fff;
  border: var(--vt-border);
  border-left: 8px solid var(--vt-red);
  box-shadow: var(--vt-shadow-sm);
}

.vt-pdp__short-kicker {
  margin: 0 0 6px;
  font-family: var(--vt-display);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--vt-red);
}

.vt-pdp__short p {
  margin: 0 0 0.6em;
  font-size: 15.5px;
}

.vt-pdp__short p:last-child {
  margin-bottom: 0;
}

.vt-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 14px 18px;
  background: var(--vt-yellow-soft);
  border: var(--vt-border);
  box-shadow: var(--vt-shadow-xs);
}

.vt-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.02em;
}

.vt-trust__item svg {
  flex: none;
  color: var(--vt-red);
}

.vt-leve {
  padding: 10px 0 40px;
}

.vt-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: #fff;
  border: var(--vt-border);
  box-shadow: var(--vt-shadow-sm);
  text-decoration: none;
  transition-property: transform, box-shadow;
  transition-duration: 0.18s;
  transition-timing-function: var(--vt-ease);
}

.vt-mini:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--vt-ink);
}

.vt-mini:active {
  transform: scale(0.96);
}

.vt-mini__media {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 6px;
  background: var(--vt-paper);
  border: 2px solid var(--vt-ink);
}

.vt-mini__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vt-mini__name {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--vt-ink);
  line-height: 1.25;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

.vt-mini__price .woocommerce-Price-amount {
  font-family: var(--vt-display);
  font-weight: 400;
  font-size: 19px;
  color: var(--vt-green);
}

.vt-accs {
  display: grid;
  gap: 16px;
  padding-bottom: 50px;
}

.vt-acc h2 {
  margin: 0;
}

.vt-acc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 14px 20px;
  background: #fff;
  border: var(--vt-border);
  box-shadow: var(--vt-shadow-sm);
  font-family: var(--vt-display);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--vt-ink);
  text-align: left;
  cursor: pointer;
  transition-property: background-color, color;
  transition-duration: 0.16s;
  transition-timing-function: var(--vt-ease);
}

.vt-acc__head:hover {
  background: var(--vt-yellow-soft);
}

.vt-acc__head.is-open {
  background: var(--vt-yellow);
}

.vt-acc__chev {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: none;
  background: var(--vt-ink);
  color: var(--vt-yellow);
  border-radius: 50%;
  transition-property: rotate, background-color;
  transition-duration: 0.24s;
  transition-timing-function: var(--vt-ease);
}

.vt-acc__head.is-open .vt-acc__chev {
  rotate: 180deg;
  background: var(--vt-red);
  color: #fff;
}

.vt-acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition-property: grid-template-rows;
  transition-duration: 0.32s;
  transition-timing-function: var(--vt-ease);
}

.vt-acc__panel.is-open {
  grid-template-rows: 1fr;
}

.vt-acc__inner {
  overflow: hidden;
  min-height: 0;
}

.vt-acc__panel.is-open .vt-acc__inner {
  border: var(--vt-border);
  border-top: 0;
  background: #fff;
  box-shadow: var(--vt-shadow-sm);
}

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

.vt-content {
  font-size: 16px;
  line-height: 1.65;
  color: var(--vt-ink);
}

.vt-content h2,
.vt-content h3 {
  font-family: var(--vt-body);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-top: 1.2em;
}

.vt-content ul,
.vt-content ol {
  padding-left: 22px;
}

.vt-content li {
  margin-bottom: 6px;
}

.vt-content a {
  color: var(--vt-red);
  font-weight: 700;
}

.vt-specs,
.vt-content table.shop_attributes {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 12px;
}

.vt-specs th,
.vt-specs td,
.vt-content table.shop_attributes th,
.vt-content table.shop_attributes td {
  padding: 11px 14px;
  border: 1.5px solid var(--vt-line);
  font-size: 15px;
  text-align: left;
}

.vt-specs th,
.vt-content table.shop_attributes th {
  width: 38%;
  background: var(--vt-yellow-soft);
  font-family: var(--vt-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13.5px;
  letter-spacing: 0.04em;
}

.vt-content table.shop_attributes td p {
  margin: 0;
}

.vt-page-head {
  padding-block: 34px 20px;
}

.vt-page-head__title {
  margin: 0;
  font-size: clamp(28px, 5vw, 52px);
  text-transform: uppercase;
}

.vt-page-box {
  padding: 28px 30px 34px;
  background: #fff;
  border: var(--vt-border);
  box-shadow: var(--vt-shadow);
  margin-bottom: 50px;
}

.vt-post__media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  border-bottom: var(--vt-border);
  background: var(--vt-yellow-soft);
  overflow: hidden;
}

.vt-post__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
  transition-property: transform;
  transition-duration: 0.35s;
  transition-timing-function: var(--vt-ease);
}

.vt-post:hover .vt-post__img {
  transform: scale(1.05);
}

.vt-post__ph {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
}

.vt-post__ph svg {
  width: 70px;
  height: 70px;
  fill: var(--vt-red);
  opacity: 0.75;
  rotate: -8deg;
}

.vt-post__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 16px 18px;
}

.vt-post__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--vt-ink-2);
}

.vt-post__cat {
  padding: 3px 10px;
  background: var(--vt-yellow);
  border: 2px solid var(--vt-ink);
  border-radius: 999px;
  color: var(--vt-ink);
}

.vt-post__title {
  margin: 0;
  font-family: var(--vt-body);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.vt-post__title a {
  color: var(--vt-ink);
  text-decoration: none;
  transition-property: color;
  transition-duration: 0.16s;
}

.vt-post__title a:hover {
  color: var(--vt-red);
}

.vt-post__excerpt {
  margin: 0;
  color: var(--vt-ink-2);
  font-size: 15px;
}

.vt-post__cta {
  align-self: flex-start;
  min-height: 42px;
  margin-top: auto;
  font-size: 14px;
  padding: 8px 18px;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.wc-block-components-button {
  min-height: 44px;
  padding: 10px 20px;
  background: var(--vt-yellow);
  color: var(--vt-ink);
  border: 2.5px solid var(--vt-ink);
  border-radius: 999px;
  box-shadow: var(--vt-shadow-xs);
  font-family: var(--vt-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition-property: transform, box-shadow, background-color, color;
  transition-duration: 0.16s;
  transition-timing-function: var(--vt-ease);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--vt-ink);
  color: var(--vt-yellow);
  transform: translate(-2px, -2px);
  box-shadow: var(--vt-shadow-sm);
}

.woocommerce a.button:active,
.woocommerce button.button:active {
  transform: scale(0.96);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce #respond input#submit.alt {
  background: var(--vt-red);
  color: #fff;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  background: var(--vt-red-hot);
  color: #fff;
}

.woocommerce input.input-text,
.woocommerce textarea.input-text,
.woocommerce select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row .select2-container .select2-selection--single {
  min-height: 44px;
  padding: 8px 12px;
  background: #fff;
  border: 2.5px solid var(--vt-ink);
  border-radius: 0;
  color: var(--vt-ink);
  font-family: var(--vt-body);
  font-size: 15px;
  font-weight: 500;
}

.woocommerce form .form-row label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13.5px;
  letter-spacing: 0.04em;
}

.woocommerce-MyAccount-navigation {
  margin-bottom: 22px;
}

.woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.woocommerce-MyAccount-navigation li a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  background: #fff;
  color: var(--vt-ink);
  border: 2.5px solid var(--vt-ink);
  border-radius: 999px;
  box-shadow: var(--vt-shadow-xs);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition-property: transform, box-shadow, background-color, color;
  transition-duration: 0.16s;
  transition-timing-function: var(--vt-ease);
}

.woocommerce-MyAccount-navigation li a:hover {
  transform: translate(-2px, -2px);
  background: var(--vt-yellow);
  box-shadow: var(--vt-shadow-sm);
}

.woocommerce-MyAccount-navigation li.is-active a {
  background: var(--vt-red);
  color: #fff;
}

.woocommerce-MyAccount-content {
  padding: 22px 24px;
  background: #fff;
  border: var(--vt-border);
  box-shadow: var(--vt-shadow-sm);
}

.woocommerce-form-login,
.woocommerce-form-register {
  background: #fff;
  border: var(--vt-border);
  box-shadow: var(--vt-shadow-sm);
  padding: 20px 22px;
  border-radius: 0;
}

.woocommerce-notices-wrapper .woocommerce-message .button.wc-forward {
  background: var(--vt-ink);
  color: var(--vt-yellow);
}

.vt-footer {
  background: var(--vt-ink);
  color: rgba(255, 253, 246, 0.78);
  border-top: var(--vt-border);
}

.vt-footer__ticker .vt-ticker {
  background: #0f0f0f;
  color: var(--vt-yellow);
  border-block: 1px solid rgba(255, 212, 0, 0.22);
}

.vt-footer__ticker .vt-ticker__item {
  font-family: var(--vt-display);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.vt-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 34px;
  padding-block: 40px 30px;
}

.vt-footer__logo {
  margin: 0 0 10px;
  font-family: var(--vt-display);
  font-size: 24px;
  color: #fff;
  letter-spacing: -0.01em;
}

.vt-footer__logo .vt-brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.vt-footer__logo .vt-brand--img img {
  max-height: 40px;
  width: auto;
  display: block;
}

.vt-footer__logo .vt-brand--text span {
  font-family: var(--vt-display);
  font-size: 24px;
  color: #fff;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.vt-footer__tagline {
  margin: 0 0 18px;
  max-width: 340px;
  font-size: 14.5px;
  line-height: 1.55;
}

.vt-fpay__label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vt-yellow);
}

.vt-fpay {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vt-fpay__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 212, 0, 0.4);
  border-radius: 999px;
  color: rgba(255, 253, 246, 0.85);
}

.vt-fpay__item b {
  font-family: var(--vt-display);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.vt-fpay__item svg {
  color: var(--vt-yellow);
}

.vt-footer__h {
  margin: 0 0 14px;
  font-family: var(--vt-display);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--vt-yellow);
}

.vt-flist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.vt-flist a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  color: rgba(255, 253, 246, 0.78);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition-property: color, transform;
  transition-duration: 0.16s;
  transition-timing-function: var(--vt-ease);
}

.vt-flist a:hover {
  color: var(--vt-yellow);
  transform: translateX(3px);
}

.vt-flist a svg {
  flex: none;
  color: #2be26b;
}

.vt-flist__hot {
  color: var(--vt-yellow);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.vt-flist__plain {
  display: flex;
  align-items: center;
  min-height: 32px;
  font-size: 14px;
  color: rgba(255, 253, 246, 0.6);
}

.vt-selos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.vt-selo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 14px;
  border: 2px dashed rgba(255, 212, 0, 0.45);
  border-radius: 999px;
  color: var(--vt-yellow);
  font-family: var(--vt-display);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.vt-footer__legal {
  margin: 0;
  padding-block: 18px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255, 253, 246, 0.5);
}

.vt-count {
  font-family: var(--vt-body);
}

.vt-count__label {
  font-family: var(--vt-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--vt-ink);
}

.vt-count__seg b {
  background: var(--vt-yellow);
  color: var(--vt-ink);
  border: 2.5px solid var(--vt-ink);
  border-radius: 6px;
  box-shadow: 3px 3px 0 var(--vt-ink);
  font-family: var(--vt-display);
  font-weight: 400;
  font-size: 16px;
  padding: 4px 8px;
  transform-origin: center;
}

.vt-count__seg.is-pop b {
  animation: vt-segpop 0.3s var(--vt-ease);
}

@keyframes vt-segpop {
  0% { transform: scale(1); }
  40% { transform: scale(1.14) translateY(-2px); }
  100% { transform: scale(1); }
}

.vt-count__sep {
  color: var(--vt-ink);
}

.vt-count__seg i {
  color: var(--vt-ink-2);
}

.vt-fomo-stock__top {
  font-family: var(--vt-body);
  font-weight: 700;
}

.vt-fomo-stock__track {
  height: 10px;
  background: var(--vt-paper);
  border: 2px solid var(--vt-ink);
  border-radius: 999px;
}

.vt-fomo-stock__fill {
  background: linear-gradient(90deg, var(--vt-yellow), var(--vt-red));
}

.vt-fomo-viewers {
  font-family: var(--vt-body);
  color: var(--vt-ink-2);
}

.vt-fomo-viewers__dot {
  background: var(--vt-green-bright);
}

.vt-fomo-viewers__n {
  font-family: var(--vt-display);
  font-weight: 400;
}

.vt-fomo-freeship__text {
  font-family: var(--vt-body);
  font-weight: 700;
  font-size: 14.5px;
}

.vt-fomo-freeship__text strong {
  color: var(--vt-green);
}

.vt-fomo-freeship__track {
  height: 12px;
  background: #fff;
  border: 2px solid var(--vt-ink);
  border-radius: 999px;
}

.vt-fomo-freeship__fill {
  background: linear-gradient(90deg, var(--vt-green-bright), var(--vt-green));
}

.vt-ship__btn,
.vt-geo-btn--main {
  border: 2px solid var(--vt-ink);
  box-shadow: 2px 2px 0 var(--vt-ink);
  font-family: var(--vt-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vt-ship__input,
.vt-geo-input {
  border: 2.5px solid var(--vt-ink);
  background: #fff;
  box-shadow: none;
  font-family: var(--vt-body);
}

.vt-fomo-toast {
  border: var(--vt-border);
  border-radius: 8px;
  box-shadow: 5px 5px 0 rgba(26, 26, 26, 0.9);
  font-family: var(--vt-body);
  background: var(--vt-paper);
}

.vt-fomo-toast__who {
  font-family: var(--vt-display);
  font-weight: 400;
  font-size: 12.5px;
}

.vt-geo-chip__city,
.vt-geo-chip__kt {
  font-family: var(--vt-body);
}

.vt-geo-chip__city {
  font-weight: 700;
}

@media (max-width: 1099px) {
  .vt-grid--prod {
    grid-template-columns: repeat(3, 1fr);
  }
  .vt-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 999px) {
  .vt-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vt-hero__lot {
    max-width: 400px;
    transform: rotate(-1deg);
  }
  .vt-mm__cols {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-inline: 20px;
  }
  .vt-mm__featgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vt-mm__all {
    margin-inline: 20px;
  }
  .vt-pdp {
    grid-template-columns: 1fr;
  }
  .vt-grid--posts {
    grid-template-columns: repeat(2, 1fr);
  }
  .vt-grid--mini {
    grid-template-columns: repeat(2, 1fr);
  }
  .vt-receipts {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 819px) {
  .vt-header__inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "burger logo actions"
      "search search search";
    row-gap: 12px;
    padding-block: 10px;
  }
  .vt-burger {
    display: inline-flex;
    grid-area: burger;
  }
  .vt-logo {
    grid-area: logo;
  }
  .vt-search {
    grid-area: search;
  }
  .vt-header__actions {
    grid-area: actions;
    justify-self: end;
  }
  .vt-hbtn__txt {
    display: none;
  }
  .vt-hbtn {
    padding: 6px 11px;
    min-width: 46px;
    justify-content: center;
  }
  .vt-header .vt-geo {
    display: none;
  }
  .vt-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition-property: max-height;
    transition-duration: 0.35s;
    transition-timing-function: var(--vt-ease);
  }
  .vt-nav.is-open {
    max-height: 82vh;
    overflow-y: auto;
  }
  .vt-nav__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: visible;
    padding-block: 6px;
  }
  .vt-nav__link {
    width: 100%;
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .vt-nav__link:hover,
  .vt-nav__link.is-current {
    border-bottom-color: var(--vt-yellow);
  }
  .vt-mm__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .vt-mm__trigger {
    width: 100%;
    justify-content: space-between;
  }
  .vt-mm__panel {
    position: static;
    border: 0;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.06);
    padding-bottom: 16px;
  }
  .vt-mm__strip {
    margin: 0 0 16px;
    padding: 10px 20px;
    transform: none;
    font-size: 15px;
  }
  .vt-mm__strip em {
    color: rgba(26, 26, 26, 0.7);
  }
  .vt-mm__cols {
    padding-inline: 16px;
  }
  .vt-mm__pill {
    background: var(--vt-paper);
  }
  .vt-mm__featgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .vt-mmtile {
    background: var(--vt-paper);
  }
  .vt-mm__all {
    margin: 16px 16px 0;
  }
  .vt-car__row {
    padding: 8px 48px 12px;
    scroll-padding-left: 48px;
  }
  .vt-car__btn {
    width: 44px;
    height: 44px;
  }
  .vt-car__btn--prev {
    left: 0;
  }
  .vt-car__btn--next {
    right: 0;
  }
  .vt-catwall {
    grid-template-columns: repeat(3, 1fr);
  }
  .vt-freight {
    flex-wrap: wrap;
  }
  .vt-freight .vt-btn {
    width: 100%;
  }
}

@media (max-width: 679px) {
  .vt-wrap {
    padding-inline: 14px;
  }
  .vt-grid--prod {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .vt-grid--posts {
    grid-template-columns: 1fr;
  }
  .vt-card {
    box-shadow: var(--vt-shadow-sm);
  }
  .vt-prod:hover {
    box-shadow: var(--vt-shadow-sm);
  }
  .vt-prod__shot {
    inset: 8px;
  }
  .vt-prod__body {
    padding: 10px 10px 12px;
    gap: 8px;
  }
  .vt-prod__title {
    font-size: 14.5px;
  }
  .vt-star {
    width: 54px;
    height: 54px;
    top: -10px;
    left: -10px;
  }
  .vt-star__label b {
    font-size: 13px;
  }
  .vt-catwall {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .vt-section {
    padding: 32px 0;
  }
  .vt-hero__inner {
    padding-block: 32px 40px;
  }
  .vt-hero__lot {
    padding: 16px;
  }
  .vt-news__box {
    padding: 26px 18px 24px;
  }
  .vt-page-box {
    padding: 20px 16px 26px;
  }
  .vt-freight,
  .vt-news__box {
    transform: rotate(-1deg);
  }
  .vt-footer__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .vt-pricebox__now .woocommerce-Price-amount {
    font-size: 40px;
  }
  .vt-buy__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .vt-js .vt-rise {
    opacity: 1;
    transform: none;
  }
  .vt-ticker__row {
    animation: none !important;
  }
  .vt-live {
    animation: none !important;
  }
}
