/* Engraven-inspired storefront — light/dark */
:root,
[data-theme="light"] {
  --bg: #ffffff;
  --bg-soft: #f6f6f6;
  --bg-mute: #efefef;
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --muted: #6b6b6b;
  --line: #e6e6e6;
  --card: #ffffff;
  --header: rgba(255,255,255,0.92);
  --announce: #0a0a0a;
  --announce-text: #ffffff;
  --inverse: #0a0a0a;
  --inverse-text: #ffffff;
  --shadow: 0 18px 50px rgba(0,0,0,0.08);
  --radius: 14px;
  --max: 1440px;
  --media-bg: #f0f1f3;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --display: "Archivo", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Unified type scale */
  --fs-xs: 0.75rem;
  --fs-sm: 0.8125rem;
  --fs-base: 0.9375rem;
  --fs-md: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.375rem;
  --fs-2xl: 1.75rem;
  --fs-3xl: 2.25rem;
  --lh-tight: 1.2;
  --lh-snug: 1.35;
  --lh-body: 1.55;
}

[data-theme="dark"] {
  --bg: #0b0b0b;
  --bg-soft: #121212;
  --bg-mute: #1a1a1a;
  --ink: #f5f5f5;
  --ink-2: #e8e8e8;
  --muted: #a0a0a0;
  --line: #2a2a2a;
  --card: #141414;
  --header: rgba(11,11,11,0.92);
  --announce: #000000;
  --announce-text: #ffffff;
  --inverse: #ffffff;
  --inverse-text: #0a0a0a;
  --shadow: 0 18px 50px rgba(0,0,0,0.45);
  --media-bg: #1a1a1a;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 14px;
}
@media (min-width: 1200px) {
  html { font-size: 15px; }
}
body {
  margin: 0;
  font-family: var(--font) !important;
  background: var(--bg) !important;
  color: var(--ink) !important;
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 70px;
  transition: background .25s, color .25s;
}
@media (min-width: 992px) { body { padding-bottom: 0; } }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
input::placeholder,
textarea::placeholder {
  color: var(--muted);
  font-size: inherit;
  opacity: 1;
}
ul { list-style: none; margin: 0; padding: 0; }

/* Kill duplicate/old chrome from theme DB or leftovers */
.ec-h-announcement,
.ec-h-mainnav-wrap,
.ec-h-mobile-drawer,
.ec-h-overlay,
.ai-mobile-nav-,
.ai-footer-,
#shopify-section-sections--20739634397443__footer,
.navbar.navbar-expand-lg:not(.vt-keep),
.header-area:not(.vt-keep),
.site-header:not(.vt-header),
.main-header:not(.vt-header),
.tt-desktop-header,
.tt-mobile-header,
.ec-header,
.header-main:not(.vt-header),
.top-header:not(.vt-announce),
.logo-area,
.offcanvas-menu,
#preloader,
.preloader { display: none !important; }

body > header:not(.vt-header),
body > .header:not(.vt-header),
body > nav.navbar { display: none !important; }

.goog-te-banner-frame,
iframe.goog-te-banner-frame,
#goog-gt-tt,
.VIpgJd-ZVi9od-ORHb { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget { font-size: 0 !important; }
.goog-logo-link, .goog-te-gadget span { display: none !important; }

.vt-container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}
.vt-container--narrow {
  width: min(100% - 2.5rem, 1080px);
}

.vt-eyebrow {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 .5rem;
  line-height: var(--lh-tight);
}

.vt-h1, .vt-h2, h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: var(--lh-tight);
  margin: 0;
  color: var(--ink);
}
.vt-h1, h1.vt-h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.vt-h2, h2.vt-h2 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); font-weight: 700; }

.vt-lead {
  color: var(--muted);
  font-size: var(--fs-md);
  max-width: 40rem;
  margin: .75rem 0 0;
  line-height: var(--lh-body);
  font-weight: 500;
}

.vt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: 42px;
  padding: .65rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: .01em;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s;
}
.vt-btn:hover { transform: translateY(-1px); }
.vt-btn--dark {
  background: var(--inverse);
  color: var(--inverse-text);
}
.vt-btn--line {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.vt-btn--light {
  background: var(--card);
  color: var(--ink);
  border-color: var(--line);
}
.vt-btn--solid {
  background: var(--inverse);
  color: var(--inverse-text);
  border-color: var(--inverse);
}
.vt-btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.vt-btn--outline:hover {
  background: var(--bg-soft);
}
.vt-btn--block { width: 100%; }

/* Announcement */
.vt-announce {
  background: var(--announce);
  color: var(--announce-text);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vt-announce__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .5rem .5rem;
}
.vt-announce__btn {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  cursor: pointer;
}
.vt-announce__text { text-align: center; }

/* Header */
.vt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.vt-header__bar {
  height: 64px;
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}
.vt-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  line-height: 0;
  gap: 0;
  flex-shrink: 0;
}
.vt-brand__img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  object-position: left center;
}
.vt-brand__word {
  display: none;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  line-height: 1;
}
[data-theme="light"] .vt-brand img.vt-logo-darkable { filter: none; }
[data-theme="dark"] .vt-brand img.vt-logo-darkable {
  filter: brightness(0) invert(1);
}
.vt-brand__text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.vt-nav {
  display: none;
  align-items: center;
  justify-content: center;
  align-self: center;
  height: 40px;
  gap: .1rem;
  margin: 0;
  padding: 0;
}
.vt-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 40px;
}
.vt-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 .85rem;
  font-size: var(--fs-sm);
  font-weight: 650;
  line-height: 1;
  border-radius: 999px;
  color: var(--ink-2);
  white-space: nowrap;
}
.vt-nav__link:hover { background: var(--bg-mute); }
.vt-nav__link--drop {
  gap: .35rem;
  padding-right: .7rem;
}
.vt-nav__link--drop::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .75;
  flex-shrink: 0;
  transition: transform .2s var(--ease);
}
.vt-nav__item:hover .vt-nav__link--drop::after,
.vt-nav__item:focus-within .vt-nav__link--drop::after {
  transform: rotate(180deg);
}
.vt-nav__drop {
  position: absolute;
  top: calc(100% + .25rem);
  left: 0;
  min-width: 220px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .4rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .2s var(--ease);
  z-index: 20;
}
.vt-nav__item:hover .vt-nav__drop,
.vt-nav__item:focus-within .vt-nav__drop {
  opacity: 1; visibility: visible; transform: none;
}
.vt-nav__drop a {
  display: block;
  padding: .7rem .85rem;
  border-radius: 8px;
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.2;
}
.vt-nav__drop a:hover { background: var(--bg-soft); }

.vt-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
  height: 40px;
  gap: .35rem;
  flex-shrink: 0;
}
.vt-tool {
  position: relative;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  margin: 0;
  line-height: 0;
  vertical-align: middle;
}
.vt-tool:hover { background: var(--bg-mute); }
.vt-tool svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}
.vt-badge {
  position: absolute;
  top: 2px; right: 1px;
  min-width: 15px; height: 15px;
  padding: 0 3px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-size: .7rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
[data-theme="dark"] .vt-badge {
  background: #fff;
  color: #000;
}

/* Language switcher */
.vt-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 36px;
}
.vt-lang__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  height: 36px;
  min-height: 36px;
  padding: 0 .7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  font-size: var(--fs-xs);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.vt-lang__btn svg {
  width: 11px;
  height: 11px;
  display: block;
  flex-shrink: 0;
}
.vt-lang__menu {
  position: absolute;
  right: 0;
  top: calc(100% + .4rem);
  min-width: 140px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: .35rem;
  display: none;
  z-index: 30;
}
.vt-lang.is-open .vt-lang__menu { display: block; }
.vt-lang__menu button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: .65rem .75rem;
  border-radius: 8px;
  font-size: var(--fs-sm);
  font-weight: 650;
  cursor: pointer;
  color: var(--ink);
}
.vt-lang__menu button:hover,
.vt-lang__menu button.is-active { background: var(--bg-mute); }
#google_translate_element,
.vt-gtranslate-host {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

@media (min-width: 992px) {
  .vt-nav {
    display: flex !important;
    align-items: center;
  }
  .vt-tool--menu { display: none !important; }
}

/* Drawer */
.vt-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0; visibility: hidden;
  transition: .25s; z-index: 1100;
}
.vt-drawer {
  position: fixed; inset: 0 auto 0 0;
  width: min(88vw, 340px);
  background: var(--card);
  color: var(--ink);
  z-index: 1200;
  transform: translateX(-105%);
  transition: transform .3s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
}
.vt-drawer.is-open { transform: none; }
.vt-overlay.is-open { opacity: 1; visibility: visible; }
.vt-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.1rem; border-bottom: 1px solid var(--line);
}
.vt-drawer__body { padding: .75rem .5rem 1.5rem; overflow: auto; }
.vt-drawer__link, .vt-drawer__subtoggle {
  display: block; width: 100%; text-align: left;
  padding: .9rem 1rem; border: 0; background: transparent;
  font-size: 1rem; font-weight: 650; border-radius: 10px;
  cursor: pointer; color: var(--ink);
}
.vt-drawer__subtoggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.vt-drawer__subtoggle::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  opacity: .7;
  flex-shrink: 0;
  transition: transform .2s var(--ease);
}
.vt-drawer__subpanel.is-open .vt-drawer__subtoggle::after {
  transform: rotate(180deg);
}
.vt-drawer__link:hover, .vt-drawer__subtoggle:hover { background: var(--bg-soft); }
.vt-drawer__sublist { display: none; padding: 0 .5rem .5rem 1.1rem; }
.vt-drawer__subpanel.is-open .vt-drawer__sublist { display: block; }
.vt-drawer__sublist a {
  display: block; padding: .65rem .75rem;
  font-size: .92rem; color: var(--muted); font-weight: 600;
}

/* Mobile nav */
.vt-mobile-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--header);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: .35rem .25rem calc(.35rem + env(safe-area-inset-bottom));
}
.vt-mobile-nav a {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
  padding: .35rem; font-size: var(--fs-xs); font-weight: 700; color: var(--muted);
}
.vt-mobile-nav a.active, .vt-mobile-nav a:hover { color: var(--ink); }
.vt-mobile-nav svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }
@media (min-width: 992px) { .vt-mobile-nav { display: none; } }

/* Product detail: hide bottom navbar, show fixed Add to Cart */
body.vt-product-page .vt-mobile-nav { display: none !important; }
/* Customize page: same — hide footer navbar, sticky ATC instead */
body.cb-customize-page .vt-mobile-nav { display: none !important; }
.vt-pd-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 960;
  background: var(--card, #fff);
  border-top: 1px solid var(--line, #e5e5e5);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.1);
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
}
.vt-pd-sticky__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}
.vt-pd-sticky__price {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.vt-pd-sticky__price small {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted, #888);
  font-weight: 700;
}
.vt-pd-sticky__price strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink, #111);
  line-height: 1.1;
}
.vt-pd-sticky__btn {
  border: 0;
  border-radius: 999px;
  background: var(--ink, #111);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.35rem;
  min-width: 148px;
  cursor: pointer;
}
.vt-pd-sticky__btn:active { opacity: 0.9; }
@media (max-width: 991px) {
  body.vt-product-page .vt-pd-sticky { display: block; }
  body.vt-product-page .vt-pd__info .yn-action-wrap { display: none; }
  body.vt-product-page {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom));
  }
  body.vt-product-page .vt-whatsapp {
    bottom: calc(5.25rem + env(safe-area-inset-bottom));
  }
}
@media (min-width: 992px) {
  body.vt-product-page .vt-pd-sticky { display: none !important; }
}
[data-theme="dark"] .vt-pd-sticky {
  background: var(--card, #141414);
  border-top-color: var(--line, #333);
}
[data-theme="dark"] .vt-pd-sticky__btn {
  background: #fff;
  color: #111;
}

/* Floating WhatsApp help (site phone) */
.vt-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem .95rem .7rem .75rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .02em;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.vt-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
  color: #fff !important;
}
.vt-whatsapp svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.vt-whatsapp__label { line-height: 1; }
@media (max-width: 991px) {
  .vt-whatsapp {
    right: .85rem;
    /* Sit above mobile bottom nav */
    bottom: calc(4.35rem + env(safe-area-inset-bottom));
    padding: .65rem;
  }
  .vt-whatsapp__label { display: none; }
  .vt-whatsapp svg { width: 28px; height: 28px; }
}
/* Customize sticky cart — keep WA above it */
body.cb-customize-page .vt-whatsapp {
  bottom: calc(5.25rem + env(safe-area-inset-bottom));
}
@media (min-width: 901px) {
  body.cb-customize-page .vt-whatsapp {
    bottom: calc(1rem + env(safe-area-inset-bottom));
  }
}

/* Hero — Engraven style */
.vt-hero {
  position: relative;
  min-height: min(86vh, 780px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: #0a0a0a;
}
.vt-hero__media { position: absolute; inset: 0; }
.vt-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: vtKen 20s ease-in-out infinite alternate;
}
.vt-hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 42%, rgba(0,0,0,.15) 70%, rgba(0,0,0,.4) 100%),
    linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.35) 40%, rgba(0,0,0,.88) 100%);
}
.vt-hero__content {
  position: relative; z-index: 2;
  padding: 4rem 0 3.25rem;
  max-width: 40rem;
}
.vt-hero__kicker {
  display: inline-flex;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.vt-hero .vt-h1 { color: #fff; }
.vt-hero__text {
  margin: .75rem 0 1.2rem;
  color: rgba(255,255,255,.78);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  max-width: 36ch;
  font-weight: 500;
}
.vt-hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; }
@keyframes vtKen {
  from { transform: scale(1.03); }
  to { transform: scale(1.1) translate(-1%, -1%); }
}

.vt-section { padding: 4.5rem 0; }
.vt-section--soft { background: var(--bg-soft); }
.vt-section--ink {
  background: #0a0a0a !important;
  color: #ffffff !important;
  border-block: none;
}
.vt-section--ink .vt-h2,
.vt-section--ink h2,
.vt-section--ink h3 {
  color: #ffffff !important;
}
.vt-section--ink .vt-lead,
.vt-section--ink .vt-eyebrow,
.vt-section--ink .vt-process__day,
.vt-section--ink .vt-process__card p {
  color: rgba(255,255,255,.68) !important;
}
.vt-section--ink .vt-process__card {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  box-shadow: none;
  color: #fff;
}
.vt-section--ink .vt-process__card h3 {
  color: #fff !important;
}

.vt-section__head {
  display: flex; flex-wrap: wrap;
  align-items: end; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.75rem;
}

/* Product cards — Engraven style */
.vt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}
@media (min-width: 768px) {
  .vt-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.25rem; }
}
@media (min-width: 1100px) {
  .vt-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.35rem; }
}

/* Home collection: 4 products per row on desktop */
.vt-grid--home {
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}
@media (min-width: 768px) {
  .vt-grid--home {
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1.25rem;
  }
}
@media (min-width: 992px) {
  .vt-grid--home {
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 1.25rem;
  }
}

.vt-product {
  display: flex; flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.vt-product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.vt-product__media {
  position: relative;
  aspect-ratio: 1.55 / 1;
  background: var(--media-bg);
  overflow: hidden;
}
.vt-product__media img {
  width: 100%; height: 100%; object-fit: contain;
  padding: .85rem;
  transition: transform .45s var(--ease);
}
.vt-product:hover .vt-product__media img { transform: scale(1.03); }
.vt-product__badge {
  position: absolute; top: .7rem; left: .7rem;
  background: var(--inverse); color: var(--inverse-text);
  font-size: .72rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .6rem; border-radius: 999px;
}
.vt-product__body { padding: 1.05rem 1.1rem 1.2rem; }
.vt-product__brand {
  font-size: var(--fs-xs); font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  line-height: var(--lh-tight);
}
.vt-product__title {
  margin: .35rem 0 .35rem;
  font-size: var(--fs-md); font-weight: 700; line-height: var(--lh-snug);
  min-height: 0;
  font-family: var(--display);
  letter-spacing: -0.02em;
}
.vt-product__rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .35rem .45rem;
  margin: 0 0 .55rem;
  min-height: 1.25rem;
}
.vt-product__rating .vt-stars { gap: 1px; }
.vt-product__rating .vt-star { font-size: .82rem; }
.vt-product__rating-meta {
  font-size: var(--fs-xs);
  font-weight: 650;
  color: var(--muted);
  letter-spacing: .01em;
}
.vt-product__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .2rem .45rem;
  font-size: var(--fs-md);
  font-weight: 800;
}
.vt-product__now { color: var(--ink); }
.vt-product__mrp {
  margin-left: 0;
  color: #e11d48 !important;
  font-weight: 600;
  text-decoration: line-through;
  font-size: var(--fs-sm);
  opacity: .95;
}

/* Feature / midnight promo */
.vt-feature {
  display: grid; gap: 0;
  overflow: hidden; border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: var(--card);
}
@media (min-width: 900px) {
  .vt-feature { grid-template-columns: 1.1fr .9fr; min-height: 420px; }
}
.vt-feature__media { min-height: 280px; background: #0a0a0a; }
.vt-feature__media img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }

/* Photo feature bands stay VIP-dark in both themes */
.vt-section--feature,
.vt-section--photo-dark {
  background: #0a0a0a !important;
}
.vt-section--feature .vt-feature,
.vt-section--photo-dark .vt-feature {
  background: #111111;
  border-color: #222;
  color: #fff;
}
.vt-section--feature .vt-feature__copy,
.vt-section--photo-dark .vt-feature__copy {
  background: #111111;
  color: #fff;
}
.vt-section--feature .vt-h2,
.vt-section--photo-dark .vt-h2,
.vt-section--feature h2,
.vt-section--photo-dark h2 {
  color: #fff !important;
}
.vt-section--feature .vt-eyebrow,
.vt-section--photo-dark .vt-eyebrow,
.vt-section--feature .vt-lead,
.vt-section--photo-dark .vt-lead {
  color: rgba(255,255,255,.7) !important;
}
.vt-section--feature .vt-btn--light,
.vt-section--photo-dark .vt-btn--light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.vt-section--feature .vt-btn--dark,
.vt-section--photo-dark .vt-btn--dark {
  background: #fff;
  color: #0a0a0a;
}
.vt-feature__copy {
  padding: 2rem 1.4rem;
  display: flex; flex-direction: column; justify-content: center;
}
@media (min-width: 900px) { .vt-feature__copy { padding: 2.75rem; } }

/* Process */
.vt-process {
  display: grid; gap: 1rem;
}
@media (min-width: 900px) {
  .vt-process { grid-template-columns: repeat(3, 1fr); }
}
.vt-process__card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  background: var(--card);
  box-shadow: var(--shadow);
}
.vt-process__day {
  font-size: .8rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .65rem;
}
.vt-process__card h3 {
  font-family: var(--display);
  font-size: 1.3rem; margin: 0 0 .5rem; letter-spacing: -0.02em;
}
.vt-process__card p { margin: 0; color: var(--muted); font-size: 1rem; }

/* Trust / reviews — social proof marquee */
.vt-marquee {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
  padding: 1.35rem 0;
}
.vt-marquee::before,
.vt-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(10vw, 120px);
  z-index: 2;
  pointer-events: none;
}
.vt-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-soft) 10%, transparent);
}
.vt-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-soft) 10%, transparent);
}
.vt-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: vtMarquee 42s linear infinite;
  white-space: nowrap;
}
.vt-marquee:hover .vt-marquee__track {
  animation-play-state: paused;
}
.vt-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 2.5rem;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.vt-marquee__item::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--muted), transparent);
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .vt-marquee__track { animation: none; }
}
.vt-review p { margin: 0 0 1rem; color: var(--muted); font-size: 1rem; }
.vt-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.12rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--display);
  letter-spacing: -0.02em;
}
.vt-faq details p {
  margin: .75rem 0 0;
  color: var(--muted);
  max-width: 52rem;
  font-size: 1.02rem;
  line-height: 1.65;
}
.vt-lang__btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 40px;
  padding: 0 .85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
}
.vt-tool {
  position: relative;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  margin: 0;
  line-height: 0;
}
@keyframes vtMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.vt-reviews {
  display: grid; gap: 1rem;
}
@media (min-width: 900px) {
  .vt-reviews { grid-template-columns: repeat(3, 1fr); }
}
.vt-review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.vt-review__stars { color: #111; letter-spacing: 1px; margin-bottom: .55rem; }
[data-theme="dark"] .vt-review__stars { color: #f5c518; }
.vt-review p { margin: 0 0 1rem; color: var(--muted); font-size: .92rem; }
.vt-review strong { font-size: .88rem; }
.vt-review__author {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .88rem;
}
.vt-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}
.vt-verified svg {
  display: block;
}

/* Golden rating stars — filled + outline (both themes) */
.vt-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  line-height: 1;
}
.vt-star {
  font-size: 1.05rem;
  color: transparent;
  -webkit-text-stroke: 1.35px #d4a017;
  text-stroke: 1.35px #d4a017;
  paint-order: stroke fill;
}
.vt-star.is-filled {
  color: #f0c14b;
  -webkit-text-stroke: 1px #d4a017;
  text-shadow: 0 0 0 #f0c14b;
}
.vt-star.is-empty {
  color: transparent;
  -webkit-text-stroke: 1.35px #d4a017;
}

.vt-section--reviews {
  background: var(--bg-soft);
  color: var(--ink);
}
.vt-section--reviews .vt-h2,
.vt-section--reviews h2 {
  color: var(--ink);
}
.vt-section--reviews .vt-eyebrow,
.vt-section--reviews .vt-lead {
  color: var(--muted);
}
.vt-reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem .75rem;
}
.vt-section--reviews .vt-review {
  background: var(--card);
  border-color: var(--line);
  color: var(--ink);
  min-width: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.vt-section--reviews .vt-review p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  min-height: 5.5em;
}
.vt-section--reviews .vt-review strong {
  color: var(--ink);
  font-size: .9rem;
}

.vt-slider__nav {
  display: flex;
  gap: .45rem;
}
.vt-slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.vt-slider__btn:hover {
  background: var(--bg-mute);
}

[data-theme="dark"] .vt-section--reviews {
  background: #0a0a0a;
  color: #fff;
}
[data-theme="dark"] .vt-section--reviews .vt-h2,
[data-theme="dark"] .vt-section--reviews h2 {
  color: #fff;
}
[data-theme="dark"] .vt-section--reviews .vt-eyebrow,
[data-theme="dark"] .vt-section--reviews .vt-lead {
  color: rgba(255,255,255,.7);
}
[data-theme="dark"] .vt-section--reviews .vt-review {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.14);
  color: #fff;
  box-shadow: none;
}
[data-theme="dark"] .vt-section--reviews .vt-review p {
  color: rgba(255,255,255,.78);
}
[data-theme="dark"] .vt-section--reviews .vt-review strong {
  color: rgba(255,255,255,.92);
}
[data-theme="dark"] .vt-slider__btn {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  color: #fff;
}
[data-theme="dark"] .vt-slider__btn:hover {
  background: rgba(255,255,255,.14);
}
.vt-reviews-slider {
  overflow: hidden;
  margin-top: .25rem;
  width: 100%;
}
.vt-reviews-slider__track {
  display: flex;
  gap: 1rem;
  transition: transform .45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.vt-reviews-slider__track .vt-review {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 0;
  box-sizing: border-box;
}
.vt-reviews-slider__dots {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin-top: 1.15rem;
}
.vt-reviews-slider__dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, .22);
  cursor: pointer;
}
.vt-reviews-slider__dots button.is-active {
  background: #d4a017;
  width: 22px;
}
[data-theme="dark"] .vt-reviews-slider__dots button {
  background: rgba(255, 255, 255, .28);
}
[data-theme="dark"] .vt-reviews-slider__dots button.is-active {
  background: #f0c14b;
}
@media (max-width: 991.98px) {
  .vt-section--reviews .vt-section__head {
    flex-direction: column;
    align-items: stretch;
    gap: .85rem;
    margin-bottom: 1rem;
  }
  .vt-section--reviews .vt-slider__nav {
    align-self: flex-end;
  }
  .vt-reviews-slider__track {
    gap: 0;
  }
  .vt-reviews-slider__track .vt-review {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .vt-section--reviews .vt-review p {
    min-height: 0;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .vt-reviews-slider__track .vt-review {
    flex: 0 0 calc((100% - 1rem) / 2);
  }
}

/* FAQ */
.vt-faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.vt-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--display);
  letter-spacing: -0.02em;
}
.vt-faq summary::-webkit-details-marker { display: none; }
.vt-faq summary::after { content: "+"; font-weight: 400; color: var(--muted); }
.vt-faq details[open] summary::after { content: "−"; }
.vt-faq details p,
.vt-faq__answer {
  margin: .75rem 0 0;
  color: var(--muted);
  max-width: 52rem;
  font-size: 1.02rem;
  line-height: 1.65;
}
.vt-faq__answer p { margin: 0 0 .65rem; color: inherit; }
.vt-faq__answer p:last-child { margin-bottom: 0; }

/* Dedicated FAQ page */
.vt-faq-page__body {
  padding-top: 0.75rem;
  padding-bottom: 4rem;
}
.vt-faq-page__inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 0;
}
@media (min-width: 768px) {
  .vt-faq-page__inner {
    width: 66.666%; /* col-8 */
    max-width: 66.666%;
  }
}
.vt-faq-page__intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}
.vt-faq-page__intro .vt-lead {
  margin: 0;
}
.vt-faq-page__panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.vt-faq--page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 768px) {
  .vt-faq--page {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.vt-faq--page details {
  margin: 0;
  padding: 1.05rem 1.15rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  align-self: start;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.vt-faq--page details[open] {
  border-color: rgba(0,0,0,.18);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
[data-theme="dark"] .vt-faq--page details[open] {
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}
.vt-faq--page summary {
  font-size: 1.02rem;
  line-height: 1.35;
  gap: .75rem;
  align-items: flex-start;
}
.vt-faq--page summary::after {
  flex-shrink: 0;
  width: 1.4rem;
  text-align: center;
  line-height: 1.2;
}
.vt-faq--page .vt-faq__answer {
  max-width: none;
  margin-top: .7rem;
  padding-top: .7rem;
  border-top: 1px solid var(--line);
  font-size: .98rem;
}
.vt-faq-page__cta {
  margin-top: 3.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
  padding: 2rem 1.85rem;
  border-radius: var(--radius);
  background: #0a0a0a;
  color: #f5f5f5;
  border: 1px solid transparent;
}
.vt-faq-page__cta .vt-h2 {
  font-size: 1.45rem;
  margin: 0 0 .45rem;
  color: #fff;
}
.vt-faq-page__cta .vt-lead {
  margin: 0;
  color: rgba(255,255,255,.78);
  max-width: 34rem;
}
.vt-faq-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.vt-faq-page__cta .vt-btn--dark {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}
.vt-faq-page__cta .vt-btn--light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
[data-theme="dark"] .vt-faq-page__cta {
  background: #141414;
  border-color: #2a2a2a;
  color: #f5f5f5;
}
[data-theme="dark"] .vt-faq-page__cta .vt-btn--dark {
  background: #f5f5f5;
  color: #0a0a0a;
  border-color: #f5f5f5;
}
.vt-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  margin-top: .65rem;
  font-size: var(--fs-sm);
  color: var(--muted);
}
.vt-crumbs a {
  border-bottom: 1px solid currentColor;
  color: inherit;
}
.vt-crumbs__sep {
  opacity: .55;
  border: 0;
}
@media (max-width: 767px) {
  .vt-faq-page__cta {
    margin-top: 2.25rem;
    padding: 1.45rem 1.2rem;
  }
  .vt-faq-page__cta-actions {
    width: 100%;
  }
  .vt-faq-page__cta-actions .vt-btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* Category tiles */
.vt-cats {
  display: grid; gap: .85rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 900px) {
  .vt-cats { grid-template-columns: repeat(4, 1fr); }
}
.vt-cat-tile {
  position: relative;
  min-height: 190px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; align-items: end;
  padding: 1.25rem;
  color: var(--ink);
  background: var(--media-bg);
  border: 1px solid var(--line);
}
.vt-cat-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; opacity: .42;
  mix-blend-mode: multiply;
}
[data-theme="dark"] .vt-cat-tile img {
  opacity: .5;
  mix-blend-mode: normal;
}
.vt-cat-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, var(--bg-soft) 100%);
}
.vt-cat-tile span {
  position: relative; z-index: 1;
  font-family: var(--display);
  font-weight: 700; font-size: var(--fs-lg);
}

/* Shop / pages */
.vt-page-banner {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 2.2rem 0 1.9rem;
  margin-bottom: 1.5rem;
}
.vt-page-banner h1 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  margin: .25rem 0;
  letter-spacing: -0.03em;
  line-height: var(--lh-tight);
}
.vt-crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; margin-top: .65rem; font-size: var(--fs-sm); color: var(--muted); }
.vt-crumbs a { border-bottom: 1px solid currentColor; color: inherit; }
.vt-crumbs__sep { opacity: .55; }

.vt-shop {
  display: grid; gap: 1.25rem;
  padding-bottom: 3rem;
}
@media (min-width: 960px) {
  .vt-shop { grid-template-columns: 260px 1fr; gap: 1.75rem; align-items: start; }
  .vt-shop > aside {
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 2;
  }
}

/* Round the product photo itself (shop, home, related) */
.vt-shop .vt-product__media,
.vt-grid--home .vt-product__media,
.vt-related .vt-product__media {
  padding: 0.85rem;
}
.vt-shop .vt-product__media img,
.vt-grid--home .vt-product__media img,
.vt-related .vt-product__media img {
  padding: 0 !important;
  border-radius: 12px;
  object-fit: contain;
}

.vt-filter {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: .85rem;
}
.vt-filter h3 {
  margin: 0 0 .75rem;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.vt-filter input, .vt-filter select,
.vt-input, .vt-select, .vt-textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .7rem .85rem;
  background: var(--bg);
  color: var(--ink);
}
.vt-filter button, .vt-filter .vt-btn { margin-top: .65rem; width: 100%; }
.vt-cat a {
  display: flex; justify-content: space-between;
  padding: .55rem 0; border-bottom: 1px dashed var(--line);
  font-size: .9rem; font-weight: 600;
}
.vt-shop-meta {
  display: flex; justify-content: space-between;
  margin-bottom: 1rem; color: var(--muted); font-size: .9rem;
}
.vt-pagination {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  width: 100%;
}
.vt-pager { width: 100%; }
.vt-pager__list {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.vt-pager__list li {
  display: inline-flex !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}
.vt-pager__btn {
  min-width: 44px;
  height: 44px;
  padding: 0 .85rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none !important;
  transition: .15s ease;
}
a.vt-pager__btn:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.vt-pager__btn.is-active {
  background: var(--inverse);
  color: var(--inverse-text);
  border-color: var(--inverse);
}
.vt-pager__btn.is-disabled {
  opacity: .35;
  cursor: not-allowed;
}
.vt-pager__ellipsis {
  min-width: 28px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}
@media (max-width: 959px) {
  .vt-filter { padding: 0; overflow: hidden; }
  .vt-filter h3 { margin: 0; padding: .95rem 1rem; cursor: pointer; position: relative; }
  .vt-filter h3::after { content: "+"; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); }
  .vt-filter.is-open h3::after { content: "−"; }
  .vt-filter__body { max-height: 0; overflow: hidden; padding: 0 1rem; transition: .25s; }
  .vt-filter.is-open .vt-filter__body { max-height: 480px; padding-bottom: 1rem; }
}

/* Product detail */
.vt-pd { padding: 1.5rem 0 3.5rem; }
.vt-pd__grid { display: grid; gap: 1.25rem; }
@media (min-width: 900px) {
  .vt-pd__grid { grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: start; }
}
.vt-pd__gallery {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}
@media (min-width: 900px) {
  .vt-pd__gallery { position: sticky; top: 90px; }
}
.vt-pd__slides .slide {
  display: none; width: 100%; border-radius: 10px;
  background: var(--media-bg); aspect-ratio: 1.58 / 1; object-fit: contain;
}
.vt-pd__slides .slide.active { display: block; }
.vt-pd__dots { text-align: center; margin-top: .85rem; }
.vt-pd__dots .dot {
  width: 9px; height: 9px; margin: 0 4px; border-radius: 50%;
  display: inline-block; background: #c9c9c9; cursor: pointer;
}
.vt-pd__dots .dot.active-dot { background: var(--ink); }
.vt-pd__info {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.5rem;
}
.vt-pd__rating { color: var(--muted); font-size: var(--fs-sm); margin-bottom: .4rem; }
.vt-pd__title {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin: 0 0 .55rem; letter-spacing: -0.03em;
  line-height: var(--lh-tight);
}
.vt-pd__price { font-size: var(--fs-xl); font-weight: 800; margin-bottom: 1.1rem; }
.vt-pd__price .compare {
  margin-left: .45rem; color: var(--muted);
  text-decoration: line-through; font-weight: 500; font-size: var(--fs-md);
}
.vt-pd__block { margin-top: 1.25rem; }
.vt-pd__label {
  display: block; font-size: var(--fs-xs); font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: .55rem;
  line-height: var(--lh-tight);
}
.vt-swatches { display: flex; flex-wrap: wrap; gap: .55rem; }
.vt-swatch {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--card); outline: 1px solid var(--line);
  cursor: pointer; background-size: cover; background-position: center;
}
.vt-addons {
  display: grid;
  gap: .65rem;
  margin-top: .45rem;
}
.vt-addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .85rem 1rem;
  background: var(--bg);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.vt-addon.is-on {
  border-color: var(--ink);
  background: var(--bg-soft);
  box-shadow: inset 0 0 0 1px var(--ink);
}
.vt-addon__copy { min-width: 0; flex: 1; }
.vt-addon__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.vt-addon__price {
  margin-top: .15rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink-2);
}
.vt-addon__list {
  list-style: none;
  margin: .4rem 0 0;
  padding: 0;
  display: grid;
  gap: .15rem;
}
.vt-addon__list li {
  position: relative;
  padding-left: 1rem;
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.35;
}
.vt-addon__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: .72rem;
  font-weight: 700;
  color: var(--ink);
}
.vt-switch {
  position: relative;
  width: 52px;
  min-width: 52px;
  height: 28px;
  display: inline-block;
  cursor: pointer;
  flex-shrink: 0;
}
.vt-switch__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.vt-switch__slider {
  position: absolute;
  inset: 0;
  background: #9a9a9a;
  border-radius: 999px;
  transition: background .2s ease;
}
.vt-switch__slider::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  transition: transform .2s ease;
}
.vt-switch__input:checked + .vt-switch__slider {
  background: var(--ink);
}
.vt-switch__input:checked + .vt-switch__slider::before {
  transform: translateX(24px);
}
.vt-switch__input:focus-visible + .vt-switch__slider {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
[data-theme="dark"] .vt-switch__slider { background: #555; }
[data-theme="dark"] .vt-switch__input:checked + .vt-switch__slider { background: #fff; }
[data-theme="dark"] .vt-switch__input:checked + .vt-switch__slider::before { background: #111; }

/* legacy care radios removed — keep mild fallback if old markup appears */
.vt-care { display: none !important; }
.vt-upload {
  margin-top: .45rem;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: .55rem .7rem;
  text-align: center;
  color: var(--muted);
  cursor: pointer;
  background: transparent;
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
}
.vt-upload:hover, .vt-upload.dragover {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.vt-note {
  width: 100%;
  margin-top: .35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .55rem .7rem;
  background: transparent;
  color: var(--ink);
  font-size: var(--fs-base);
  line-height: var(--lh-snug);
}
.vt-note::placeholder { color: var(--muted); font-size: var(--fs-base); opacity: 1; }
.vt-pd__info .image-preview img {
  margin-top: .55rem !important;
  max-width: 120px !important;
  border-radius: 8px !important;
}
.vt-pd__info .yn-cart-block { margin-top: .85rem; }
.vt-pd__info .yn-qty-label { color: var(--muted); }
.vt-pd__info .yn-qty-wrap {
  border-radius: 8px !important;
  border: 1px solid var(--line) !important;
  background: var(--card) !important;
  width: 100% !important;
  max-width: none !important;
  overflow: hidden;
}
.vt-pd__info .yn-qty-btn {
  width: 44px !important;
  height: 42px !important;
  font-size: var(--fs-md) !important;
  font-weight: 600 !important;
  background: var(--bg-soft) !important;
  color: var(--ink) !important;
  border: 0 !important;
}
.vt-pd__info .yn-qty-btn:hover { background: var(--bg-mute) !important; }
.vt-pd__info .yn-qty-input {
  height: 42px !important;
  width: 100% !important;
  flex: 1 1 auto !important;
  font-size: var(--fs-base) !important;
  font-weight: 700 !important;
  background: var(--card) !important;
  color: var(--ink) !important;
  border-left: 1px solid var(--line) !important;
  border-right: 1px solid var(--line) !important;
}
.vt-pd__info .yn-action-wrap {
  gap: .5rem;
  margin-top: .7rem;
}
.vt-pd__info .yn-action-wrap .btn,
.vt-pd__info .btn-cart,
.vt-pd__info .btn-buy {
  border-radius: 8px !important;
  min-height: 42px !important;
  height: 42px !important;
  padding: 0 .95rem !important;
  font-size: var(--fs-sm) !important;
  font-weight: 700 !important;
  letter-spacing: .02em;
  line-height: 1 !important;
  text-transform: none;
}
.vt-pd__info .btn-cart {
  background: var(--inverse) !important;
  color: var(--inverse-text) !important;
  border: 1px solid var(--inverse) !important;
}
.vt-pd__info .btn-buy {
  background: transparent !important;
  color: var(--ink) !important;
  border: 1.5px solid var(--ink) !important;
  box-shadow: none !important;
}
.vt-pd__info .btn-cart:hover { opacity: .92; }
.vt-pd__info .btn-buy:hover {
  background: var(--bg-soft) !important;
  opacity: 1;
}

/* Product trust / payments */
.vt-trust {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.vt-trust__row--icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  margin-bottom: .85rem;
}
.vt-pay {
  display: inline-flex;
  width: 46px;
  height: 30px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
}
.vt-pay svg { width: 100%; height: 100%; display: block; }
.vt-trust__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem .75rem;
}
.vt-trust__list li {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.25;
}
.vt-trust__list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--ink);
  opacity: .85;
}
.vt-trust__meta {
  margin-top: .85rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}
@media (max-width: 520px) {
  .vt-trust__list { grid-template-columns: 1fr; }
}
.vt-desc {
  margin-top: 2rem; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.35rem;
}
.vt-desc h3 { font-family: var(--display); margin: 0 0 .75rem; font-size: 1.15rem; }
.vt-related { margin-top: 2.5rem; }
.vt-related .vt-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 768px) {
  .vt-related .vt-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

/* Product page customer reviews */
.vt-pd-reviews {
  margin-top: 1.25rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.1rem 1.25rem;
}
.vt-pd-reviews__title {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.vt-pd-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
@media (min-width: 700px) {
  .vt-pd-reviews__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .vt-pd-reviews__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.vt-pd-review {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .85rem .9rem;
  background: var(--bg);
}
.vt-pd-review__stars {
  display: inline-flex;
  gap: 1px;
  margin-bottom: .4rem;
  line-height: 1;
}
.vt-pd-review__stars .vt-star { font-size: .95rem; }
.vt-pd-review p {
  margin: 0 0 .65rem;
  font-size: .88rem;
  line-height: 1.45;
  color: var(--muted);
}
.vt-pd-review strong {
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
}

/* Product page — full reviews + write form */
.vt-reviews-block {
  padding: 0 0 2.5rem;
}
.vt-reviews-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.5rem;
}
.vt-reviews-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.vt-reviews-panel__intro {
  flex: 1 1 220px;
  min-width: 0;
}
.vt-reviews-panel__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-left: auto;
}
.vt-reviews-write-btn {
  white-space: nowrap;
  min-height: 42px;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

/* Write a review — modal popup */
.vt-review-modal {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
}
.vt-review-modal.is-open {
  display: flex !important;
}
.vt-review-modal__dialog {
  width: min(560px, 100%);
  max-height: min(90vh, 820px);
  display: flex;
  flex-direction: column;
  background: var(--card);
  color: var(--ink);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.vt-review-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: var(--ink);
  color: var(--bg);
  flex-shrink: 0;
}
.vt-review-modal__head h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-family: var(--display);
}
.vt-review-modal__head p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  opacity: 0.82;
  max-width: 36em;
}
.vt-review-modal__close {
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.vt-review-modal__close:hover {
  background: rgba(255, 255, 255, 0.22);
}
.vt-review-modal__body {
  padding: 1.15rem 1.2rem 1.35rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
[data-theme="dark"] .vt-review-modal__head {
  background: #111;
  color: #fff;
}
[data-theme="dark"] .vt-review-modal__dialog {
  background: #161616;
}

.vt-reviews-panel__title {
  font-family: var(--display);
  font-size: var(--fs-xl);
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.vt-reviews-panel__sub {
  margin: .35rem 0 0;
  font-size: var(--fs-sm);
  color: var(--muted);
}
.vt-reviews-panel__score {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
}
.vt-reviews-panel__num {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.vt-reviews-bars {
  display: grid;
  gap: .45rem;
  margin-bottom: 1.15rem;
}
.vt-reviews-bar {
  display: grid;
  grid-template-columns: 52px 1fr 40px;
  align-items: center;
  gap: .55rem;
  font-size: .75rem;
  color: var(--muted);
}
.vt-reviews-bar__track {
  height: 7px;
  border-radius: 999px;
  background: var(--bg-mute);
  overflow: hidden;
}
.vt-reviews-bar__fill {
  height: 100%;
  background: var(--ink);
  border-radius: 999px;
}
.vt-reviews-list {
  display: grid;
  gap: .75rem;
  margin-bottom: 1rem;
}
.vt-review-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .95rem 1rem;
  background: var(--bg);
}
.vt-review-card__top {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .55rem;
}
.vt-review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--bg);
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
}
.vt-review-card__meta strong {
  display: block;
  font-size: .9rem;
  color: var(--ink);
}
.vt-review-card__rating {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
  margin-top: .15rem;
}
.vt-review-card__date {
  font-size: .72rem;
  color: var(--muted);
}
.vt-review-card__body {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}
.vt-review-card__body p {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: .9rem;
  line-height: 1.55;
  color: var(--ink-2);
}
.vt-review-card__photo {
  width: 110px;
  height: 82px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  flex-shrink: 0;
  background: var(--bg-mute);
}
.vt-reviews-pages {
  display: flex;
  justify-content: center;
  gap: .4rem;
  flex-wrap: wrap;
  margin: .35rem 0 1rem;
}
.vt-reviews-pages a {
  min-width: 34px;
  height: 34px;
  padding: 0 .55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--bg);
}
.vt-reviews-pages a.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.vt-reviews-more {
  display: flex;
  justify-content: center;
  margin: .5rem 0 1rem;
}
.vt-reviews-more .vt-btn {
  min-width: 200px;
}
.vt-review-form {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  margin-top: 1rem;
}
.vt-review-form--solo {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.vt-review-form__intro { margin-bottom: 1rem; }
.vt-review-form__title {
  margin: 0 0 .35rem;
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--ink);
}
.vt-review-form__lead {
  margin: 0;
  font-size: .88rem;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.5;
}
.vt-star-picker {
  margin-bottom: 1rem;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
}
.vt-star-picker__label {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
}
.vt-star-picker__label em { color: #c0392b; font-style: normal; }
.vt-star-picker__btns { display: inline-flex; gap: .2rem; }
.vt-star-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 1.45rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.35px #d4a017;
  cursor: pointer;
  padding: 0;
  transition: color .15s, transform .15s;
}
.vt-star-btn:hover { transform: scale(1.06); }
.vt-star-btn.is-active {
  color: #f0c14b;
  -webkit-text-stroke: 1px #d4a017;
}
.vt-star-picker__hint {
  display: block;
  margin-top: .4rem;
  font-size: .78rem;
  color: var(--muted);
}
.vt-star-picker__hint.is-error { color: #c0392b; font-weight: 600; }
.vt-review-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem 1rem;
}
.vt-review-form__full { grid-column: 1 / -1; }
.vt-review-form .vt-note {
  margin-top: .3rem;
  width: 100%;
  background: var(--bg);
}
.vt-review-form__ta { min-height: 110px; resize: vertical; }
.vt-review-form__file {
  position: relative;
  margin-top: .3rem;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: .75rem 1rem;
  background: transparent;
  color: var(--muted);
  font-size: .82rem;
}
.vt-review-form__file input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.vt-review-form__submit {
  min-width: 180px;
  width: auto;
  min-height: 44px;
  margin-top: .15rem;
}
.vt-review-form__note {
  margin: .55rem 0 0;
  font-size: .75rem;
  color: var(--muted);
}
.vt-review-form__status {
  display: none;
  margin-top: .55rem;
  font-size: .82rem;
  color: var(--muted);
}
.vt-review-form__error {
  margin-top: .45rem;
  font-size: .82rem;
  color: #b91c1c;
}
@media (max-width: 700px) {
  .vt-review-form__grid { grid-template-columns: 1fr; }
  .vt-review-card__body { flex-direction: column; }
  .vt-review-card__photo { width: 100%; height: 160px; }
  .vt-reviews-panel { padding: 1.1rem 1rem 1.25rem; }
}

/* Cart / checkout */
.vt-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.vt-panel--pad { padding: 1.15rem; }
.vt-layout-2 { display: grid; gap: 1.15rem; }
@media (min-width: 960px) {
  .vt-layout-2 { grid-template-columns: 1fr 340px; align-items: start; }
}
.vt-cart-item {
  display: grid; grid-template-columns: 120px 1fr auto;
  gap: .95rem; padding: 1rem; border-bottom: 1px solid var(--line); align-items: center;
}
.vt-cart-item:last-child { border-bottom: 0; }
.vt-cart-item__media {
  display: block;
  width: 120px;
  aspect-ratio: 1.586 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--media-bg);
  border: 1px solid var(--line);
}
.vt-cart-item__media img,
.vt-cart-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}
.vt-cart-item h3 { margin: 0 0 .25rem; font-size: .95rem; }
.vt-cart-item .meta { font-size: .8rem; color: var(--muted); }
.vt-qty { display: inline-flex; align-items: center; gap: .35rem; margin-top: .45rem; flex-wrap: wrap; }
.vt-qty button {
  width: 32px; height: 32px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--bg); cursor: pointer; color: var(--ink);
}
.vt-qty input {
  width: 52px; height: 32px; text-align: center;
  border: 1px solid var(--line); border-radius: 8px; background: var(--bg); color: var(--ink);
}
.vt-cart-remove {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  transition: color .15s, border-color .15s, background .15s;
}
.vt-cart-remove:hover {
  color: #c62828;
  border-color: rgba(198,40,40,.4);
  background: rgba(198,40,40,.08);
}
.vt-summary .row {
  display: flex; justify-content: space-between; margin: .65rem 0; font-size: .92rem;
}
.vt-summary .total {
  font-size: 1.15rem; font-weight: 800;
  border-top: 1px solid var(--line); padding-top: .75rem; margin-top: .75rem;
}
.vt-form-grid { display: grid; gap: .85rem; }
@media (min-width: 700px) { .vt-form-grid { grid-template-columns: 1fr 1fr; } }
.vt-label { display: block; font-size: .78rem; font-weight: 700; margin-bottom: .35rem; }
.vt-pay-card, .vt-chip-card {
  display: flex; gap: .75rem; align-items: flex-start;
  border: 1px solid var(--line); border-radius: 12px;
  padding: .9rem; margin-bottom: .65rem; cursor: pointer; background: var(--bg);
}
.vt-pay-card:has(input:checked), .vt-chip-card:has(input:checked) {
  border-color: var(--ink); box-shadow: var(--shadow);
}
.vt-pay-card strong, .vt-chip-card strong { display: block; font-size: .92rem; }
.vt-pay-card small, .vt-chip-card small { display: block; color: var(--muted); margin-top: .2rem; line-height: 1.45; }

/* Footer — VIP */
.vt-footer {
  background: var(--bg-soft);
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding: 0;
  margin-top: 3rem;
}
.vt-footer__cta {
  background: var(--bg-mute);
  color: var(--ink);
  padding: 2.75rem 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.vt-footer__cta h3 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 .75rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.vt-footer__cta p {
  margin: 0 auto 1.25rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.02rem;
}
.vt-footer__cta .vt-btn {
  background: var(--inverse);
  color: var(--inverse-text);
  border-color: var(--inverse);
}
[data-theme="dark"] .vt-footer__cta {
  background: #141414;
  border-bottom-color: #2a2a2a;
}
[data-theme="dark"] .vt-footer__cta h3 {
  color: #f5f5f5;
}
[data-theme="dark"] .vt-footer__cta p {
  color: #a0a0a0;
}
[data-theme="dark"] .vt-footer__cta .vt-btn {
  background: #f5f5f5;
  color: #0a0a0a;
  border-color: #f5f5f5;
}
.vt-footer__main { padding: 3.25rem 0 2rem; }
.vt-footer__grid {
  display: grid;
  gap: 2rem 1.5rem;
}
@media (min-width: 900px) {
  .vt-footer__grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}
.vt-footer__logo img {
  height: 44px; width: auto;
}
[data-theme="dark"] .vt-footer__logo img {
  filter: brightness(0) invert(1);
}
.vt-footer__brand p {
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 1rem 0 1.25rem;
}
.vt-footer__trust {
  display: flex; flex-wrap: wrap; gap: .55rem;
}
.vt-footer__trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 .75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.vt-footer h4 {
  color: var(--ink); margin: 0 0 1rem;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
}
.vt-footer__links a {
  display: block; padding: .4rem 0; font-weight: 600; color: var(--muted); font-size: .98rem;
}
.vt-footer__links a:hover { color: var(--ink); }
.vt-footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem;
  margin-top: 2.25rem; padding-top: 1.25rem;
  border-top: 1px solid var(--line); font-size: .9rem; color: var(--muted);
}
.vt-footer__policies { display: flex; gap: 1.1rem; }
.vt-footer__policies a { color: var(--muted); font-weight: 600; }

.vt-reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.vt-reveal.is-in { opacity: 1; transform: none; }
.vt-empty { padding: 2.5rem 1.25rem; text-align: center; font-weight: 700; }

.yn-auth-section, .main-wrapper { background: var(--bg) !important; color: var(--ink); }
.yn-auth-card {
  border-radius: 16px !important; overflow: hidden;
  border: 1px solid var(--line) !important; box-shadow: var(--shadow) !important;
  background: var(--card) !important;
}
.yn-auth-cta, .btn.btn-primary {
  border-radius: 999px !important;
  background: var(--inverse) !important;
  border-color: var(--inverse) !important;
  color: var(--inverse-text) !important;
}

.eg-msg.ok { color: #067647; }
.eg-msg.err { color: #b42318; }
.eg-modal-backdrop.is-open,
.yn-chip-modal-backdrop.is-open { display: flex !important; }

/* Tap II Pay compatibility modal */
.vt-chip-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(4px);
}
.vt-chip-modal.is-open { display: flex !important; }
.vt-chip-modal__dialog {
  width: min(720px, 100%);
  max-height: min(90vh, 760px);
  display: flex;
  flex-direction: column;
  background: var(--card);
  color: var(--ink);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  overflow: hidden;
}
.vt-chip-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: var(--ink);
  color: var(--bg);
}
.vt-chip-modal__head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.vt-chip-modal__head p {
  margin: .4rem 0 0;
  font-size: .88rem;
  opacity: .82;
  line-height: 1.45;
  max-width: 42ch;
}
.vt-chip-modal__close {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
[data-theme="dark"] .vt-chip-modal__close {
  background: rgba(0,0,0,.12);
  color: #0a0a0a;
}
.vt-chip-modal__body {
  padding: 1.15rem;
  overflow: auto;
  display: grid;
  gap: 1rem;
}
@media (min-width: 760px) {
  .vt-chip-modal__body {
    grid-template-columns: 1.15fr .95fr;
    align-items: start;
  }
}
.vt-chip-modal__media {
  background: var(--media-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  max-height: 280px;
}
.vt-chip-modal__media img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}
.vt-chip-modal__copy h4 {
  margin: 0 0 .55rem;
  font-size: 1rem;
}
.vt-chip-modal__copy ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
  list-style: disc;
}
.vt-chip-modal__check {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .9rem;
  margin-bottom: 1rem;
  cursor: pointer;
}
.vt-chip-modal__check input { margin-top: .2rem; }
.vt-chip-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.vt-chip-modal__actions .vt-btn {
  flex: 1;
  min-width: 120px;
}
#yn-chip-continue:disabled {
  opacity: .45;
  cursor: not-allowed;
}

/* ========== MOBILE APP FEEL ========== */
.vt-mobile-only { display: none !important; }
.vt-feature__actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

@media (max-width: 991.98px) {
  html { font-size: 14px; }

  .vt-desktop-only { display: none !important; }
  .vt-mobile-only { display: block !important; }

  .vt-announce { display: none; }

  .vt-header__bar {
    height: 52px;
    min-height: 52px;
    gap: .35rem;
    grid-template-columns: auto 1fr;
    align-items: center;
  }
  .vt-container { width: min(100% - 1.25rem, var(--max)); }

  .vt-brand {
    height: 36px;
    justify-content: flex-start;
    justify-self: start;
  }
  .vt-brand__img {
    display: block !important;
    height: 26px;
    max-width: 110px;
    width: auto;
    object-fit: contain;
    object-position: left center;
  }
  .vt-brand__word { display: none !important; }

  .vt-tools {
    height: 36px;
    gap: .2rem;
    justify-content: flex-end;
    justify-self: end;
    align-items: center;
  }
  .vt-lang {
    height: 34px;
  }
  .vt-lang__btn {
    height: 34px;
    min-height: 34px;
    min-width: 42px;
    padding: 0 .55rem;
    font-size: var(--fs-xs);
  }
  .vt-tool {
    width: 34px;
    height: 34px;
  }
  .vt-tool svg { width: 17px; height: 17px; }
  .vt-tool--account,
  .vt-tool--cart { display: none !important; }

  .vt-hero {
    min-height: 62vh;
    align-items: end;
  }
  .vt-hero__content { padding: 2rem 0 1.75rem; max-width: 100%; }
  .vt-h1 { font-size: 1.7rem !important; line-height: 1.2; }
  .vt-hero__text { font-size: var(--fs-md); margin: .7rem 0 1.1rem; }
  .vt-hero__actions { gap: .55rem; }
  .vt-hero__actions .vt-btn {
    flex: 1;
    min-height: 44px;
    font-size: var(--fs-sm);
    padding: .7rem 1rem;
  }

  .vt-section { padding: 1.75rem 0; }
  .vt-section--products { padding-top: 1.25rem; }
  .vt-section--feature { padding-bottom: 0.5rem; }
  .vt-h2 { font-size: 1.35rem !important; }
  .vt-lead { font-size: var(--fs-md); }
  .vt-eyebrow { font-size: var(--fs-xs); margin-bottom: .35rem; }

  .vt-section__head {
    margin-bottom: 1rem;
    align-items: center;
  }
  .vt-section__head .vt-btn {
    min-height: 40px;
    padding: .55rem 1rem;
    font-size: var(--fs-sm);
  }

  .vt-feature { border-radius: 18px; }
  .vt-feature__media { min-height: 180px; }
  .vt-feature__media img { min-height: 180px; max-height: 220px; object-fit: cover; }
  .vt-feature__copy { padding: 1.15rem 1.1rem 1.25rem; }
  .vt-feature__actions { margin-top: 1rem; }
  .vt-feature__actions .vt-btn { width: 100%; }

  /* Home: 2 products per row — flush mobile cards */
  .vt-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: .4rem !important;
  }
  .vt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: .4rem !important;
  }
  .vt-product--mobile-hide { display: flex !important; }

  .vt-product {
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid var(--line);
    background: var(--card);
  }
  .vt-product:hover {
    transform: none;
    box-shadow: none;
  }
  .vt-product__media {
    aspect-ratio: 1.586 / 1;
    background: #f3f3f5;
    margin: 0;
  }
  [data-theme="dark"] .vt-product__media { background: #161616; }
  .vt-product__media img {
    padding: .35rem !important;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .vt-product__badge {
    top: .3rem;
    left: .3rem;
    font-size: var(--fs-xs);
    padding: .18rem .35rem;
  }
  .vt-product__body {
    padding: .35rem .4rem .4rem;
  }
  .vt-product__brand { display: none; }
  .vt-product__title {
    font-size: var(--fs-sm);
    font-weight: 700;
    line-height: 1.25;
    min-height: 0;
    margin: 0 0 .15rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .vt-product__price { font-size: var(--fs-sm); font-weight: 800; }
  .vt-product__mrp { font-size: var(--fs-xs); margin-left: 0; color: #e11d48 !important; }
  .vt-product__rating { margin: 0 0 .35rem; }
  .vt-product__rating .vt-star { font-size: .72rem; }
  .vt-product__rating-meta { font-size: .65rem; }

  .vt-section { padding: 1.25rem 0; }
  .vt-section--products { padding-top: 1rem; padding-bottom: .5rem; }
  .vt-section--products .vt-section__head {
    margin-bottom: .55rem;
  }
  .vt-section--products .vt-h2 { font-size: 1.25rem !important; }

  .vt-section--reviews {
    padding: 1.15rem 0 1rem;
  }
  .vt-section--reviews .vt-h2 { font-size: 1.3rem !important; }
  .vt-section--reviews .vt-lead { font-size: var(--fs-sm); }
  .vt-section--reviews .vt-review {
    padding: 1rem .95rem;
    border-radius: 12px;
  }
  .vt-section--reviews .vt-review p {
    min-height: 0 !important;
    font-size: var(--fs-sm);
    margin-bottom: .65rem;
    line-height: 1.5;
  }
  .vt-section--reviews .vt-review strong {
    font-size: .8rem;
  }
  .vt-slider__btn { width: 36px; height: 36px; }

  .vt-page-banner { padding: 1.1rem 0 1rem; margin-bottom: .75rem; }
  .vt-page-banner h1 { font-size: 1.45rem; }
  .vt-shop { gap: .75rem; padding-bottom: 0; }
  .vt-filter { border-radius: 12px; }
  .vt-shop .vt-product__media,
  .vt-grid--home .vt-product__media,
  .vt-related .vt-product__media {
    padding: 0.35rem;
  }
  .vt-shop .vt-product__media img,
  .vt-grid--home .vt-product__media img,
  .vt-related .vt-product__media img {
    padding: 0 !important;
    border-radius: 10px;
  }

  .vt-pd { padding: .75rem 0 0; }
  .vt-pd__title { font-size: 1.35rem; }
  .vt-pd__info { padding: .9rem; border-radius: 14px; }
  .vt-pd__gallery { border-radius: 14px; }

  .vt-footer { display: none !important; }
  body { padding-bottom: calc(3.6rem + env(safe-area-inset-bottom)) !important; }
  #MainContent,
  main { padding-bottom: 0 !important; margin-bottom: 0 !important; }

  .vt-mobile-cta {
    padding: .75rem 0 .35rem;
    margin: 0;
  }
  .vt-mobile-cta .vt-btn {
    min-height: 44px;
    font-size: var(--fs-sm);
    border-radius: 12px;
  }

  .vt-mobile-nav {
    padding: .35rem .15rem calc(.3rem + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 20px rgba(0,0,0,.07);
  }
  .vt-mobile-nav a { font-size: var(--fs-xs); gap: .15rem; }
  .vt-mobile-nav svg { width: 22px; height: 22px; }
}

@media (min-width: 992px) {
  .vt-mobile-only { display: none !important; }
  .vt-brand__word { display: none !important; }
  .vt-brand__img { display: block !important; }
}

/* Contact page */
.vt-contact-page__body {
  padding-top: 0.5rem;
  padding-bottom: 3.5rem;
}
.vt-contact-page__intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}
.vt-contact-page__intro .vt-lead { margin: 0; }
.vt-contact-layout {
  display: grid;
  gap: 1.15rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .vt-contact-layout {
    grid-template-columns: 0.9fr 1.2fr;
    gap: 1.25rem;
  }
}
.vt-contact-info {
  padding: 1.45rem 1.35rem;
  border-radius: var(--radius);
  background: #0a0a0a !important;
  color: #f5f5f5 !important;
  border: 1px solid #1a1a1a;
  display: flex;
  flex-direction: column;
}
[data-theme="dark"] .vt-contact-info {
  background: #141414 !important;
  border-color: #2a2a2a !important;
  color: #f5f5f5 !important;
}
.vt-contact-info__title {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 0 0 .45rem;
  color: #ffffff !important;
}
.vt-contact-info__text {
  margin: 0 0 1.35rem;
  opacity: .78;
  line-height: 1.55;
  font-size: 0.98rem;
  color: rgba(255,255,255,.78) !important;
}
.vt-contact-meta {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.vt-contact-meta__label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .55;
  margin-bottom: .28rem;
  color: rgba(255,255,255,.55) !important;
}
.vt-contact-meta a,
.vt-contact-meta li > span {
  color: #f5f5f5 !important;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.45;
  word-break: break-word;
}
.vt-contact-meta a:hover { text-decoration: underline; }
.vt-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: auto;
}
.vt-contact-info .vt-btn--dark {
  background: #ffffff !important;
  color: #0a0a0a !important;
  border-color: #ffffff !important;
}
.vt-contact-info .vt-btn--light {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.4) !important;
}
.vt-contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem 1.4rem;
  box-shadow: var(--shadow);
}
.vt-contact-form__title {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
}
.vt-contact-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
@media (min-width: 640px) {
  .vt-contact-fields {
    grid-template-columns: 1fr 1fr;
  }
  .vt-contact-field--full {
    grid-column: 1 / -1;
  }
}
.vt-contact-field .vt-input,
.vt-contact-field .vt-select,
.vt-contact-field .vt-textarea {
  width: 100%;
  min-height: 46px;
}
.vt-contact-field .vt-textarea {
  min-height: 130px;
  resize: vertical;
}
.vt-contact-form__foot {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
}
.vt-contact-note {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  max-width: 26rem;
  line-height: 1.45;
}
.vt-contact-status {
  margin-top: .85rem;
  color: var(--muted);
  font-weight: 600;
  font-size: .92rem;
}
.vt-contact-error {
  margin-top: .65rem;
  color: #b42318;
  font-weight: 600;
  font-size: .92rem;
}
@media (max-width: 639px) {
  .vt-contact-form-wrap { padding: 1.15rem 1rem 1.25rem; }
  .vt-contact-info { padding: 1.2rem 1.05rem; }
  .vt-contact-form__foot { flex-direction: column; align-items: stretch; }
  .vt-contact-form__foot .vt-btn { width: 100%; justify-content: center; }
  .vt-contact-links .vt-btn { flex: 1 1 auto; justify-content: center; }
}

/* Legal pages — terms / privacy (theme-aware) */
.vt-legal-page {
  padding-top: 0.5rem;
  padding-bottom: 3.5rem;
}
.vt-legal-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.vt-legal-content {
  padding: 1.5rem 1.45rem 1.75rem;
  color: var(--ink-2);
  line-height: 1.75;
  font-size: 1rem;
  overflow-wrap: anywhere;
}
.vt-legal-content h1,
.vt-legal-content h2,
.vt-legal-content h3,
.vt-legal-content h4,
.vt-legal-content h5,
.vt-legal-content h6 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  margin: 1.25em 0 .45em;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.vt-legal-content h1:first-child,
.vt-legal-content h2:first-child {
  margin-top: 0;
}
.vt-legal-content p {
  margin: 0 0 .85rem;
  color: var(--muted);
}
.vt-legal-content ul,
.vt-legal-content ol {
  margin: 0 0 1rem 1.15rem;
  padding: 0;
  color: var(--muted);
}
.vt-legal-content li { margin-bottom: .4rem; }
.vt-legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  display: block;
  overflow-x: auto;
}
.vt-legal-content table th,
.vt-legal-content table td {
  border: 1px solid var(--line);
  padding: .7rem .8rem;
  text-align: left;
  vertical-align: top;
  color: var(--ink-2);
}
.vt-legal-content table th {
  background: var(--bg-soft);
  color: var(--ink);
}
.vt-legal-content blockquote {
  border-left: 3px solid var(--ink);
  background: var(--bg-soft);
  padding: .75rem .9rem;
  margin: 1rem 0;
  color: var(--muted);
}
.vt-legal-content img,
.vt-legal-content iframe,
.vt-legal-content video {
  max-width: 100%;
  height: auto;
}
.vt-legal-content a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
[data-theme="dark"] .vt-legal-card {
  background: #141414;
  border-color: #2a2a2a;
}
[data-theme="dark"] .vt-legal-content,
[data-theme="dark"] .vt-legal-content li,
[data-theme="dark"] .vt-legal-content td {
  color: #cfcfcf;
}
[data-theme="dark"] .vt-legal-content h1,
[data-theme="dark"] .vt-legal-content h2,
[data-theme="dark"] .vt-legal-content h3,
[data-theme="dark"] .vt-legal-content h4,
[data-theme="dark"] .vt-legal-content h5,
[data-theme="dark"] .vt-legal-content h6,
[data-theme="dark"] .vt-legal-content a,
[data-theme="dark"] .vt-legal-content th {
  color: #f5f5f5;
}
[data-theme="dark"] .vt-legal-content p {
  color: #a8a8a8;
}
[data-theme="dark"] .vt-legal-content table th {
  background: #1a1a1a;
}
[data-theme="dark"] .vt-legal-content blockquote {
  background: #1a1a1a;
  border-left-color: #f5f5f5;
  color: #a8a8a8;
}
@media (max-width: 767px) {
  .vt-legal-content {
    padding: 1.15rem 1rem 1.35rem;
    font-size: .95rem;
  }
}


