/** Shopify CDN: Minification failed

Line 1209:0 Unexpected "`"
Line 1938:0 Unexpected "`"

**/
/* ==========================================================================
   VITAORA — theme stylesheet
   All colour, radius and width values come from CSS custom properties set in
   layout/theme.liquid from Theme Editor settings. Every class is namespaced
   `vt-` so nothing collides with apps or Shopify defaults.
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--vt-bg);
  color: var(--vt-text);
  font-family: var(--vt-font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
button { font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; }

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

p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--vt-accent);
  outline-offset: 2px;
  border-radius: 3px;
}

::selection { background: var(--vt-accent-wash); color: var(--vt-accent-dark); }

.vt-skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
}
.vt-skip-link:focus {
  left: 1rem;
  top: 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--vt-text);
  color: var(--vt-bg);
  border-radius: 999px;
  font-size: 0.875rem;
}

.vt-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------------------------------------------------------------- layout -- */

.vt-container {
  width: 100%;
  max-width: var(--vt-page-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .vt-container { padding: 0 2rem; } }
@media (min-width: 1024px) { .vt-container { padding: 0 3rem; } }

.vt-section { padding: 5rem 0; }
@media (min-width: 640px) { .vt-section { padding: 7rem 0; } }
@media (min-width: 1024px) { .vt-section { padding: 8rem 0; } }

.vt-rule { height: 1px; background: var(--vt-line); border: 0; margin: 0; }

/* ------------------------------------------------------------ typography -- */

.vt-eyebrow {
  font-family: var(--vt-font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--vt-text-3);
  margin: 0;
}

.vt-h1 { font-size: calc(2.1rem * var(--vt-type-scale)); line-height: 1.05; letter-spacing: -0.025em; }
.vt-h2 { font-size: calc(2rem * var(--vt-type-scale)); }
.vt-h3 { font-size: calc(1.25rem * var(--vt-type-scale)); line-height: 1.25; }

@media (min-width: 640px) {
  .vt-h1 { font-size: calc(2.75rem * var(--vt-type-scale)); }
  .vt-h2 { font-size: calc(2.75rem * var(--vt-type-scale)); }
}
@media (min-width: 1024px) {
  .vt-h1 { font-size: calc(3rem * var(--vt-type-scale)); }
  .vt-h2 { font-size: calc(3.25rem * var(--vt-type-scale)); }
}

.vt-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--vt-text-2);
  max-width: 34rem;
}

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

/* --------------------------------------------------------------- buttons -- */

.vt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--vt-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.95rem 2rem;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.vt-btn:active { transform: scale(0.985); }
.vt-btn[disabled] { opacity: 0.6; cursor: not-allowed; }

.vt-btn--primary {
  background: var(--vt-accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(31, 29, 27, 0.04), 0 12px 32px -12px rgba(31, 29, 27, 0.1);
}
.vt-btn--primary:hover { background: var(--vt-accent-dark); }

.vt-btn--secondary {
  background: transparent;
  border-color: rgba(31, 29, 27, 0.15);
  color: var(--vt-text);
}
.vt-btn--secondary:hover { border-color: rgba(31, 29, 27, 0.4); background: rgba(31, 29, 27, 0.03); }

.vt-btn--full { width: 100%; }
.vt-btn--lg { padding: 1.1rem 2rem; }

.vt-btn__spinner {
  width: 1.05rem; height: 1.05rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: vt-spin 0.7s linear infinite;
}
@keyframes vt-spin { to { transform: rotate(360deg); } }

.vt-btn.is-loading .vt-btn__label,
.vt-btn:not(.is-loading) .vt-btn__spinner { display: none; }

/* ------------------------------------------------------------------ card -- */

.vt-card {
  border: 1px solid var(--vt-line);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--vt-radius);
  box-shadow: 0 1px 2px rgba(31, 29, 27, 0.04), 0 12px 32px -12px rgba(31, 29, 27, 0.1);
}

/* ------------------------------------------------------- announcement bar -- */

.vt-announcement {
  background: var(--vt-text);
  color: #fff;
}
.vt-announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.5rem 0;
}
.vt-announcement__text {
  font-family: var(--vt-font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}
@media (min-width: 640px) {
  .vt-announcement__text { font-size: 0.6875rem; letter-spacing: 0.14em; }
}

/* ---------------------------------------------------------------- header -- */

.vt-header {
  background: var(--vt-bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background-color 0.3s;
  z-index: 50;
}
.vt-header--sticky { position: sticky; top: 0; }
.vt-header.is-scrolled {
  border-bottom-color: var(--vt-line);
  background: color-mix(in srgb, var(--vt-bg) 85%, transparent);
  backdrop-filter: blur(12px);
}
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .vt-header.is-scrolled { background: var(--vt-bg); }
}

.vt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4rem;
}
@media (min-width: 1024px) { .vt-header__inner { height: 5rem; } }

.vt-wordmark {
  font-family: var(--vt-font-display);
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.vt-wordmark__dot {
  display: inline-block;
  width: 0.2em; height: 0.2em;
  border-radius: 50%;
  background: var(--vt-accent);
  margin-left: -0.14em;
  vertical-align: 0.55em;
}
.vt-wordmark img { max-height: 2.25rem; width: auto; }

.vt-nav { display: none; }
@media (min-width: 1024px) { .vt-nav { display: block; } }
.vt-nav__list { display: flex; align-items: center; gap: 2.25rem; }
.vt-nav__link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vt-text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.vt-nav__link:hover { color: var(--vt-text); }
.vt-nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  height: 1px; width: 0;
  background: var(--vt-accent);
  transition: width 0.3s;
}
.vt-nav__link:hover::after { width: 100%; }

.vt-header__actions { display: flex; align-items: center; gap: 0.25rem; }

.vt-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.2s;
}
.vt-icon-btn:hover { background: rgba(31, 29, 27, 0.05); }
.vt-icon-btn--menu { margin-left: -0.5rem; }
@media (min-width: 1024px) { .vt-icon-btn--menu { display: none; } }
.vt-icon-btn--account { display: none; }
@media (min-width: 640px) { .vt-icon-btn--account { display: inline-flex; } }

.vt-cart-count {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--vt-accent);
  color: #fff;
  font-family: var(--vt-font-mono);
  font-size: 10px;
  font-weight: 500;
}
.vt-cart-count[hidden] { display: none; }

.vt-search-bar { border-top: 1px solid var(--vt-line); background: var(--vt-bg); }
.vt-search-bar[hidden] { display: none; }
.vt-search-bar__inner { padding: 1rem 0; }
.vt-input {
  width: 100%;
  border: 1px solid var(--vt-line);
  background: #fff;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  font: inherit;
  font-size: 0.875rem;
  color: var(--vt-text);
}
.vt-input::placeholder { color: var(--vt-text-3); }
.vt-input:focus { border-color: var(--vt-accent); outline: none; }

/* ------------------------------------------------------------- overlays -- */

.vt-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
}
.vt-overlay.is-open { display: block; }
.vt-overlay__scrim {
  position: absolute;
  inset: 0;
  background: rgba(31, 29, 27, 0.45);
  backdrop-filter: blur(4px);
}

.vt-drawer {
  position: absolute;
  top: 0; bottom: 0;
  width: 100%;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  background: var(--vt-bg);
  box-shadow: 0 2px 4px rgba(31, 29, 27, 0.05), 0 24px 48px -16px rgba(31, 29, 27, 0.16);
}
.vt-drawer--right { right: 0; border-left: 1px solid var(--vt-line); animation: vt-slide-right 0.32s cubic-bezier(0.22, 1, 0.36, 1) both; }
.vt-drawer--left { left: 0; width: 86%; max-width: 24rem; padding: 1.5rem; animation: vt-slide-left 0.32s cubic-bezier(0.22, 1, 0.36, 1) both; }

@keyframes vt-slide-right { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes vt-slide-left { from { transform: translateX(-100%); } to { transform: translateX(0); } }

.vt-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--vt-line);
}
.vt-drawer__title { font-family: var(--vt-font-display); font-size: 1.25rem; }

.vt-mobile-nav { margin-top: 2.5rem; flex: 1; }
.vt-mobile-nav__link {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--vt-line);
  font-family: var(--vt-font-display);
  font-size: 1.5rem;
  text-decoration: none;
}

/* ---------------------------------------------------------- product page -- */

.vt-pdp { padding: 2rem 0 4rem; }
@media (min-width: 1024px) { .vt-pdp { padding: 3.5rem 0 6rem; } }

.vt-pdp__grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) {
  .vt-pdp__grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}
@media (min-width: 1280px) { .vt-pdp__grid { gap: 5rem; } }

.vt-breadcrumb { display: none; margin-bottom: 1.5rem; }
@media (min-width: 1024px) { .vt-breadcrumb { display: block; } }
.vt-breadcrumb ol { display: flex; align-items: center; gap: 0.5rem; }
.vt-breadcrumb a, .vt-breadcrumb span {
  font-family: var(--vt-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vt-text-3);
  text-decoration: none;
}
.vt-breadcrumb a:hover { color: var(--vt-text); }

/* gallery */

.vt-gallery { width: 100%; max-width: 36rem; margin: 0 auto; }
@media (min-width: 1024px) {
  .vt-gallery { position: sticky; top: 7rem; max-width: none; }
}

.vt-gallery__frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--vt-line);
  border-radius: var(--vt-radius-lg);
  background: var(--vt-surface);
}
.vt-gallery__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 25% 15%, var(--vt-accent-wash) 0%, transparent 55%),
    radial-gradient(90% 80% at 85% 90%, var(--vt-support-wash) 0%, transparent 60%);
}
.vt-gallery__item {
  position: absolute;
  inset: 0;
  display: none;
  padding: 1.25rem;
}
@media (min-width: 640px) { .vt-gallery__item { padding: 2rem; } }
.vt-gallery__item.is-active { display: block; animation: vt-fade-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }
.vt-gallery__item img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease-out;
}
.vt-gallery__frame.is-zoomed .vt-gallery__item.is-active img { transform: scale(1.55); }

@keyframes vt-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.vt-gallery__badge {
  position: absolute;
  left: 1.25rem; top: 1.25rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(31, 29, 27, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  font-family: var(--vt-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vt-text-2);
}
.vt-gallery__hint {
  position: absolute;
  right: 1.25rem; bottom: 1.25rem;
  display: none;
  font-family: var(--vt-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vt-text-3);
  pointer-events: none;
}
@media (min-width: 1024px) { .vt-gallery__hint { display: block; } }

.vt-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}
@media (min-width: 640px) { .vt-thumbs { gap: 0.75rem; } }
.vt-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--vt-line);
  border-radius: 12px;
  background: var(--vt-surface);
  opacity: 0.7;
  transition: opacity 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.vt-thumb:hover { opacity: 1; }
.vt-thumb.is-active {
  opacity: 1;
  border-color: var(--vt-accent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--vt-accent) 40%, transparent);
}
.vt-thumb img { width: 100%; height: 100%; object-fit: contain; }

/* product info */

.vt-pdp__info { width: 100%; max-width: 36rem; margin: 0 auto; }
@media (min-width: 1024px) { .vt-pdp__info { max-width: none; margin: 0; } }

.vt-rating { display: flex; align-items: center; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.vt-stars { display: inline-flex; gap: 2px; color: #E39B33; }
.vt-stars svg { width: 15px; height: 15px; }
.vt-stars .vt-star--empty { color: var(--vt-line); }
.vt-rating__text { font-family: var(--vt-font-mono); font-size: 12px; color: var(--vt-text-2); }

.vt-benefits-list { margin-top: 1.5rem; display: grid; gap: 0.65rem; }
.vt-benefits-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; }
.vt-benefits-list__tick {
  flex: 0 0 auto;
  margin-top: 2px;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--vt-support-wash);
  color: var(--vt-support);
}
.vt-benefits-list__tick svg { width: 11px; height: 11px; }

.vt-price {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.5rem 1rem;
  margin-top: 2rem;
}
.vt-price__current { font-family: var(--vt-font-display); font-size: 2.5rem; line-height: 1; letter-spacing: -0.02em; }
.vt-price__compare {
  font-family: var(--vt-font-mono);
  font-size: 0.875rem;
  color: var(--vt-text-3);
  text-decoration: line-through;
  padding-bottom: 0.25rem;
}
.vt-price__save {
  margin-bottom: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--vt-accent-wash);
  color: var(--vt-accent-dark);
  font-family: var(--vt-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.vt-price__save[hidden], .vt-price__compare[hidden] { display: none; }

/* variant / pack selector */

.vt-packs { margin-top: 1.75rem; }
.vt-packs__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.vt-packs__meta { font-family: var(--vt-font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--vt-text-3); }

.vt-packs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
  margin-top: 1rem;
  border: 0;
  padding: 0;
}
@media (min-width: 640px) {
  .vt-packs__grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.vt-packs__grid legend { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.vt-pack {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0.9rem;
  border: 1px solid var(--vt-line);
  border-radius: var(--vt-radius);
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}
@media (min-width: 640px) { .vt-pack { padding: 1rem; } }
.vt-pack:hover { border-color: rgba(31, 29, 27, 0.25); background: #fff; }
.vt-pack input { position: absolute; opacity: 0; pointer-events: none; }
.vt-pack.is-active {
  border-color: var(--vt-accent);
  background: color-mix(in srgb, var(--vt-accent-wash) 60%, transparent);
  box-shadow: 0 1px 2px rgba(31, 29, 27, 0.04), 0 12px 32px -12px rgba(31, 29, 27, 0.1);
}
.vt-pack.is-unavailable { opacity: 0.45; cursor: not-allowed; }

.vt-pack__badge {
  position: absolute;
  top: -0.5rem; left: 0.75rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: var(--vt-accent);
  color: #fff;
  font-family: var(--vt-font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.vt-pack__badge--support { background: var(--vt-support); }

.vt-pack__row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.vt-pack__name { font-size: 0.875rem; font-weight: 600; }
.vt-pack__radio {
  flex: 0 0 auto;
  width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(31, 29, 27, 0.25);
  border-radius: 50%;
  color: #fff;
  transition: background-color 0.2s, border-color 0.2s;
}
.vt-pack__radio svg { width: 11px; height: 11px; opacity: 0; }
.vt-pack.is-active .vt-pack__radio { background: var(--vt-accent); border-color: var(--vt-accent); }
.vt-pack.is-active .vt-pack__radio svg { opacity: 1; }

.vt-pack__price { font-family: var(--vt-font-display); font-size: 1.25rem; line-height: 1; margin-top: 0.5rem; }
.vt-pack__sub { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.4rem; font-family: var(--vt-font-mono); font-size: 11px; }
.vt-pack__was { color: var(--vt-text-3); text-decoration: line-through; }
.vt-pack__off { color: var(--vt-support); font-weight: 500; }

/* purchase options */

.vt-purchase { display: grid; gap: 0.625rem; margin-top: 0.75rem; }
.vt-purchase__option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.8rem 1rem;
  border: 1px solid var(--vt-line);
  border-radius: var(--vt-radius);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}
.vt-purchase__option:hover { border-color: rgba(31, 29, 27, 0.2); }
.vt-purchase__option.is-active { border-color: rgba(31, 29, 27, 0.3); background: #fff; }
.vt-purchase__option.is-active.vt-purchase__option--sub {
  border-color: var(--vt-support);
  background: color-mix(in srgb, var(--vt-support-wash) 70%, transparent);
}
.vt-purchase__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.vt-purchase__label { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; font-weight: 500; }
.vt-purchase__radio {
  flex: 0 0 auto;
  width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(31, 29, 27, 0.25);
  border-radius: 50%;
  color: #fff;
}
.vt-purchase__radio svg { width: 11px; height: 11px; opacity: 0; }
.vt-purchase__option.is-active .vt-purchase__radio { background: var(--vt-text); border-color: var(--vt-text); }
.vt-purchase__option.is-active .vt-purchase__radio svg { opacity: 1; }
.vt-purchase__option--sub.is-active .vt-purchase__radio { background: var(--vt-support); border-color: var(--vt-support); }
.vt-purchase__pill {
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: var(--vt-support);
  color: #fff;
  font-family: var(--vt-font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.vt-purchase__amount { font-family: var(--vt-font-mono); font-size: 0.875rem; }
.vt-purchase__note {
  display: flex; flex-wrap: wrap; gap: 0.25rem 1rem;
  margin-top: 0.5rem; padding-left: 1.75rem;
  font-family: var(--vt-font-mono); font-size: 11px; color: var(--vt-text-2);
}
.vt-purchase__select {
  margin-top: 0.6rem; margin-left: 1.75rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--vt-line);
  border-radius: 10px;
  background: #fff;
  font: inherit; font-size: 0.8125rem;
}

/* add to cart */

.vt-atc { display: grid; gap: 0.625rem; margin-top: 1.5rem; }
.vt-atc__note { text-align: center; font-family: var(--vt-font-mono); font-size: 11px; color: var(--vt-text-3); padding-top: 0.25rem; }

.vt-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--vt-line);
}
.vt-trust li { display: flex; align-items: center; gap: 0.625rem; font-size: 0.8125rem; color: var(--vt-text-2); }
.vt-trust svg { flex: 0 0 auto; width: 16px; height: 16px; color: var(--vt-support); }

/* sticky mobile buy bar */

.vt-buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  border-top: 1px solid var(--vt-line);
  background: color-mix(in srgb, var(--vt-bg) 95%, transparent);
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  padding-bottom: env(safe-area-inset-bottom);
}
.vt-buybar.is-visible { transform: translateY(0); }
@media (min-width: 1024px) { .vt-buybar { display: none; } }
.vt-buybar__inner { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.25rem; }
.vt-buybar__text { flex: 1 1 auto; min-width: 0; }
.vt-buybar__title { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vt-buybar__meta { font-family: var(--vt-font-mono); font-size: 11px; color: var(--vt-text-3); }
.vt-buybar .vt-btn { flex: 0 0 auto; padding: 0.8rem 1.5rem; font-size: 0.875rem; }

/* --------------------------------------------------------- content blocks -- */

.vt-heading-block { max-width: 48rem; }
.vt-heading-block--center { margin: 0 auto; text-align: center; }
.vt-heading-block h2 { margin-top: 1rem; }
.vt-heading-block .vt-lead { margin-top: 1.25rem; }
.vt-heading-block--center .vt-lead { margin-left: auto; margin-right: auto; }

/* benefits grid with hairline dividers */
.vt-grid-hairline {
  display: grid;
  gap: 1px;
  margin-top: 3.5rem;
  background: var(--vt-line);
  border: 1px solid var(--vt-line);
  border-radius: var(--vt-radius-lg);
  overflow: hidden;
}
@media (min-width: 640px) { .vt-grid-hairline { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .vt-grid-hairline { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.vt-benefit-card {
  background: var(--vt-bg);
  padding: 1.75rem;
  height: 100%;
  transition: background-color 0.3s;
}
@media (min-width: 1024px) { .vt-benefit-card { padding: 2.25rem; } }
.vt-benefit-card:hover { background: #fff; }
.vt-benefit-card__n { font-family: var(--vt-font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--vt-accent); }
.vt-benefit-card__dash { display: block; width: 2rem; height: 1px; margin: 1.25rem 0; background: var(--vt-line); transition: width 0.5s, background-color 0.5s; }
.vt-benefit-card:hover .vt-benefit-card__dash { width: 4rem; background: var(--vt-accent); }
.vt-benefit-card h3 { font-size: 1.3rem; }
.vt-benefit-card p { margin-top: 0.75rem; font-size: 0.9375rem; color: var(--vt-text-2); }

/* editorial / lifestyle */
.vt-editorial { position: relative; overflow: hidden; background: var(--vt-surface); }
.vt-editorial__wash {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(70% 60% at 80% 10%, var(--vt-accent-wash) 0%, transparent 60%),
    radial-gradient(60% 60% at 5% 95%, var(--vt-support-wash) 0%, transparent 65%);
}
.vt-editorial__grid { position: relative; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .vt-editorial__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.vt-editorial__media { position: relative; }
.vt-editorial__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border: 1px solid var(--vt-line);
  border-radius: var(--vt-radius-lg);
  background: var(--vt-bg);
}
.vt-editorial__inset {
  display: none;
  position: absolute; right: -0.5rem; bottom: -2rem;
  width: 10rem; aspect-ratio: 1 / 1;
  border: 1px solid var(--vt-line);
  border-radius: var(--vt-radius);
  background: var(--vt-bg);
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(31, 29, 27, 0.05), 0 24px 48px -16px rgba(31, 29, 27, 0.16);
}
@media (min-width: 640px) { .vt-editorial__inset { display: block; } }
@media (min-width: 1024px) { .vt-editorial__inset { right: -2rem; width: 13rem; } }
.vt-editorial__inset img { width: 100%; height: 100%; object-fit: contain; border: 0; border-radius: 0; aspect-ratio: auto; }
.vt-editorial h2 { font-size: calc(2.25rem * var(--vt-type-scale)); line-height: 1.02; margin-top: 1.25rem; }
@media (min-width: 640px) { .vt-editorial h2 { font-size: calc(3rem * var(--vt-type-scale)); } }
@media (min-width: 1024px) { .vt-editorial h2 { font-size: calc(3.6rem * var(--vt-type-scale)); } }
.vt-editorial__accent { color: var(--vt-accent); }
.vt-editorial p + p { margin-top: 1rem; }
.vt-link-arrow {
  display: inline-flex; align-items: center; gap: 0.625rem;
  margin-top: 2rem; font-size: 0.875rem; font-weight: 600; text-decoration: none;
}
.vt-link-arrow span { border-bottom: 1px solid rgba(31, 29, 27, 0.25); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.vt-link-arrow:hover span { color: var(--vt-accent); border-color: var(--vt-accent); }
.vt-link-arrow svg { width: 16px; height: 16px; transition: transform 0.3s; }
.vt-link-arrow:hover svg { transform: translateX(4px); }

/* ingredients */
.vt-ing-head { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) { .vt-ing-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }

.vt-ing-grid { display: grid; gap: 1rem; margin-top: 3.5rem; }
@media (min-width: 640px) { .vt-ing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .vt-ing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.vt-ing-card { padding: 1.5rem; height: 100%; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; }
@media (min-width: 640px) { .vt-ing-card { padding: 1.75rem; } }
.vt-ing-card:hover { transform: translateY(-2px); border-color: rgba(31, 29, 27, 0.15); box-shadow: 0 2px 4px rgba(31, 29, 27, 0.05), 0 24px 48px -16px rgba(31, 29, 27, 0.16); }
.vt-ing-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.vt-ing-card h3 { font-size: 1.2rem; line-height: 1.35; }
.vt-ing-card__amount {
  flex: 0 0 auto;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: var(--vt-surface);
  font-family: var(--vt-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--vt-text-2);
}
.vt-ing-card p { margin-top: 1rem; font-size: 0.9375rem; color: var(--vt-text-2); }

.vt-modal { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.vt-modal.is-open { display: flex; }
@media (max-width: 639px) { .vt-modal { align-items: flex-end; padding: 0; } }
.vt-modal__panel {
  position: relative;
  width: 100%; max-width: 36rem;
  max-height: 88vh; overflow-y: auto;
  padding: 1.75rem;
  border: 1px solid var(--vt-line);
  border-radius: var(--vt-radius-lg) var(--vt-radius-lg) 0 0;
  background: var(--vt-bg);
  animation: vt-fade-up 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media (min-width: 640px) { .vt-modal__panel { border-radius: var(--vt-radius-lg); padding: 2.25rem; } }
.vt-facts { width: 100%; border-collapse: collapse; margin-top: 1.25rem; }
.vt-facts th, .vt-facts td { padding: 0.75rem 0; border-bottom: 1px solid var(--vt-line); text-align: left; }
.vt-facts thead th {
  padding-bottom: 0.5rem;
  border-bottom-color: rgba(31, 29, 27, 0.15);
  font-family: var(--vt-font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--vt-text-3);
}
.vt-facts tbody th { font-weight: 400; font-size: 0.875rem; }
.vt-facts td { text-align: right; font-family: var(--vt-font-mono); font-size: 13px; color: var(--vt-text-2); }

/* how it works — dark section */
.vt-steps { background: var(--vt-text); color: var(--vt-bg); border-top: 1px solid var(--vt-line); border-bottom: 1px solid var(--vt-line); }
.vt-steps__grid { display: grid; gap: 3.5rem; }
@media (min-width: 1024px) { .vt-steps__grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.vt-steps .vt-eyebrow { color: rgba(250, 247, 242, 0.45); }
.vt-steps h2 { color: var(--vt-bg); margin-top: 1.25rem; font-size: calc(2.25rem * var(--vt-type-scale)); }
@media (min-width: 640px) { .vt-steps h2 { font-size: calc(3rem * var(--vt-type-scale)); } }
@media (min-width: 1024px) { .vt-steps h2 { font-size: calc(3.4rem * var(--vt-type-scale)); } }
.vt-steps__intro { margin-top: 1.5rem; max-width: 24rem; color: rgba(250, 247, 242, 0.6); font-size: 1.0625rem; line-height: 1.65; }
.vt-steps__media { display: none; margin-top: 2.5rem; }
@media (min-width: 1024px) { .vt-steps__media { display: block; } }
.vt-steps__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--vt-radius-lg); }
.vt-step { display: flex; align-items: flex-start; gap: 1.5rem; padding: 2rem 0; border-top: 1px solid rgba(255, 255, 255, 0.1); }
@media (min-width: 640px) { .vt-step { gap: 2.5rem; padding: 2.5rem 0; } }
.vt-step:first-child { border-top: 0; padding-top: 0; }
.vt-step__n {
  font-family: var(--vt-font-display);
  font-size: 3.5rem; line-height: 0.8; font-weight: 300;
  color: rgba(250, 247, 242, 0.2);
  transition: color 0.5s;
}
@media (min-width: 640px) { .vt-step__n { font-size: 4.5rem; } }
.vt-step:hover .vt-step__n { color: var(--vt-accent); }
.vt-step h3 { color: var(--vt-bg); font-size: 1.4rem; padding-top: 0.25rem; }
@media (min-width: 640px) { .vt-step h3 { font-size: 1.7rem; } }
.vt-step p { margin-top: 0.75rem; max-width: 28rem; color: rgba(250, 247, 242, 0.55); font-size: 0.9375rem; }

/* testimonials */
.vt-reviews__head { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 640px) { .vt-reviews__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.vt-reviews__rail {
  display: flex; gap: 1rem;
  margin-top: 3rem;
  padding: 0 1.25rem 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.vt-reviews__rail::-webkit-scrollbar { display: none; }
@media (min-width: 640px) { .vt-reviews__rail { padding-left: 2rem; padding-right: 2rem; } }
@media (min-width: 1024px) {
  .vt-reviews__rail { max-width: var(--vt-page-width); margin-left: auto; margin-right: auto; padding-left: 3rem; padding-right: 3rem; }
}
.vt-review {
  flex: 0 0 auto;
  width: 82vw; max-width: 24rem;
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  padding: 1.5rem;
}
@media (min-width: 640px) { .vt-review { width: 46vw; padding: 1.75rem; } }
@media (min-width: 1024px) { .vt-review { width: calc((100% - 2rem) / 3); max-width: none; } }
.vt-review blockquote { flex: 1; margin: 1rem 0 0; font-size: 0.9375rem; line-height: 1.65; }
.vt-review figcaption { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--vt-line); }
.vt-review__name { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 600; }
.vt-review__name svg { width: 14px; height: 14px; color: var(--vt-support); }
.vt-review__ctx { display: block; margin-top: 2px; font-family: var(--vt-font-mono); font-size: 11px; color: var(--vt-text-3); }
.vt-reviews__disclaimer { margin-top: 2rem; font-family: var(--vt-font-mono); font-size: 11px; color: var(--vt-text-3); }

.vt-arrows { display: none; gap: 0.5rem; }
@media (min-width: 1024px) { .vt-arrows { display: flex; } }
.vt-arrows button { padding: 0.625rem; border: 1px solid var(--vt-line); border-radius: 999px; background: transparent; transition: border-color 0.2s, background-color 0.2s; }
.vt-arrows button:hover { border-color: rgba(31, 29, 27, 0.35); background: #fff; }
.vt-arrows svg { width: 16px; height: 16px; display: block; }

/* comparison */
.vt-compare { background: var(--vt-surface); }
.vt-compare__wrap {
  max-width: 56rem; margin: 3rem auto 0;
  border: 1px solid var(--vt-line);
  border-radius: var(--vt-radius-lg);
  background: var(--vt-bg);
  overflow: hidden;
}
.vt-compare table { width: 100%; border-collapse: collapse; display: block; }
.vt-compare thead { display: none; }
.vt-compare tbody, .vt-compare tr, .vt-compare th, .vt-compare td { display: block; }
.vt-compare tbody tr { border-top: 1px solid var(--vt-line); }
.vt-compare tbody tr:first-child { border-top: 0; }
.vt-compare tbody th { padding: 1.25rem 1.25rem 0.5rem; font-size: 0.8125rem; font-weight: 600; text-align: left; }
.vt-compare td { padding: 0.75rem 1.25rem; }
.vt-compare td:last-child { padding-bottom: 1.25rem; }
.vt-compare__ours { background: color-mix(in srgb, var(--vt-accent-wash) 70%, transparent); }
.vt-compare__cell { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9375rem; }
.vt-compare__cell svg { flex: 0 0 auto; margin-top: 3px; width: 15px; height: 15px; }
.vt-compare__ours .vt-compare__cell { font-weight: 500; }
.vt-compare__ours svg { color: var(--vt-accent); }
.vt-compare__theirs { color: var(--vt-text-3); }
.vt-compare__theirs svg { color: var(--vt-line); }
.vt-compare__minilabel {
  display: block; margin-bottom: 2px;
  font-family: var(--vt-font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
}
.vt-compare__ours .vt-compare__minilabel { color: var(--vt-accent-dark); }
.vt-compare__theirs .vt-compare__minilabel { color: var(--vt-text-3); }

@media (min-width: 640px) {
  .vt-compare table { display: table; }
  .vt-compare thead { display: table-header-group; }
  .vt-compare tbody { display: table-row-group; }
  .vt-compare tr { display: table-row; }
  .vt-compare th, .vt-compare td { display: table-cell; padding: 1.25rem 1.5rem; vertical-align: top; }
  .vt-compare thead th { text-align: left; }
  .vt-compare thead th:nth-child(2) { background: color-mix(in srgb, var(--vt-accent-wash) 70%, transparent); }
  .vt-compare__colname { font-family: var(--vt-font-display); font-size: 1.05rem; }
  .vt-compare__colname--ours { color: var(--vt-accent-dark); font-weight: 500; }
  .vt-compare__colname--theirs { color: var(--vt-text-2); }
  .vt-compare tbody th { font-weight: 500; color: var(--vt-text-2); font-size: 0.875rem; }
  .vt-compare__minilabel { display: none; }
  .vt-compare tbody tr:first-child { border-top: 1px solid var(--vt-line); }
}

/* FAQ */
.vt-faq__grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .vt-faq__grid { grid-template-columns: 4fr 8fr; gap: 4rem; } }
.vt-faq__list { border-top: 1px solid var(--vt-line); }
.vt-faq__item { border-bottom: 1px solid var(--vt-line); }
.vt-faq__trigger {
  display: flex; width: 100%; gap: 1.5rem;
  align-items: flex-start; justify-content: space-between;
  padding: 1.25rem 0;
  border: 0; background: transparent; text-align: left;
}
.vt-faq__q { font-size: 1.0625rem; font-weight: 500; line-height: 1.35; transition: color 0.2s; }
@media (min-width: 640px) { .vt-faq__q { font-size: 1.15rem; } }
.vt-faq__trigger:hover .vt-faq__q { color: var(--vt-accent); }
.vt-faq__trigger[aria-expanded='true'] .vt-faq__q { color: var(--vt-accent); }
.vt-faq__sign { flex: 0 0 auto; margin-top: 4px; width: 18px; height: 18px; color: var(--vt-text-3); transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s; }
.vt-faq__trigger[aria-expanded='true'] .vt-faq__sign { transform: rotate(45deg); color: var(--vt-accent); }
.vt-faq__panel { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s; }
.vt-faq__panel.is-open { grid-template-rows: 1fr; opacity: 1; }
.vt-faq__panel > div { overflow: hidden; }
.vt-faq__panel p { max-width: 42rem; padding: 0 2.5rem 1.5rem 0; font-size: 0.9375rem; line-height: 1.7; color: var(--vt-text-2); }

/* guarantee */
.vt-guarantee { background: color-mix(in srgb, var(--vt-support-wash) 50%, transparent); border-top: 1px solid var(--vt-line); border-bottom: 1px solid var(--vt-line); }
.vt-guarantee__grid { display: grid; gap: 2rem; margin-top: 3rem; }
@media (min-width: 640px) { .vt-guarantee__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .vt-guarantee__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2.5rem; } }
.vt-guarantee__item svg { width: 22px; height: 22px; color: var(--vt-support); }
.vt-guarantee__item h3 { margin-top: 1rem; font-family: var(--vt-font-body); font-size: 1.0625rem; font-weight: 600; line-height: 1.35; letter-spacing: 0; }
.vt-guarantee__item p { margin-top: 0.5rem; font-size: 0.9375rem; color: var(--vt-text-2); }

/* final CTA */
.vt-final__wrap {
  border: 1px solid var(--vt-line);
  border-radius: var(--vt-radius-lg);
  background: rgba(255, 255, 255, 0.6);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(31, 29, 27, 0.04), 0 12px 32px -12px rgba(31, 29, 27, 0.1);
}
.vt-final__grid { display: grid; }
@media (min-width: 1024px) { .vt-final__grid { grid-template-columns: 1fr 1fr; } }
.vt-final__media { position: relative; min-height: 18rem; background: var(--vt-surface); border-bottom: 1px solid var(--vt-line); }
@media (min-width: 1024px) { .vt-final__media { border-bottom: 0; border-right: 1px solid var(--vt-line); } }
.vt-final__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 2.5rem; }
@media (min-width: 1024px) { .vt-final__media img { padding: 4rem; } }
.vt-final__badge {
  position: absolute; left: 1.5rem; bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(31, 29, 27, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  font-family: var(--vt-font-mono); font-size: 11px; color: var(--vt-text-2);
}
.vt-final__body { padding: 1.75rem; }
@media (min-width: 640px) { .vt-final__body { padding: 2.5rem; } }
@media (min-width: 1024px) { .vt-final__body { padding: 3rem; } }

/* ---------------------------------------------------------------- footer -- */

.vt-footer { background: var(--vt-text); color: var(--vt-bg); padding: 4rem 0 6rem; border-top: 1px solid var(--vt-line); }
@media (min-width: 640px) { .vt-footer { padding-bottom: 4rem; } }
@media (min-width: 1024px) { .vt-footer { padding-top: 5rem; } }
.vt-footer__grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .vt-footer__grid { grid-template-columns: 5fr 7fr; gap: 2rem; } }
.vt-footer .vt-wordmark { color: var(--vt-bg); }
.vt-footer__blurb { margin-top: 1.25rem; max-width: 20rem; font-size: 0.9375rem; line-height: 1.65; color: rgba(250, 247, 242, 0.55); }
.vt-footer__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
@media (min-width: 640px) { .vt-footer__cols { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.vt-footer__heading { font-family: var(--vt-font-mono); font-size: 0.6875rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(250, 247, 242, 0.45); margin: 0; }
.vt-footer__links { margin-top: 1rem; display: grid; gap: 0.625rem; }
.vt-footer__links a { font-size: 0.875rem; color: rgba(250, 247, 242, 0.7); text-decoration: none; transition: color 0.2s; }
.vt-footer__links a:hover { color: var(--vt-bg); }

.vt-newsletter { margin-top: 2rem; max-width: 24rem; }
.vt-newsletter__field { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.vt-newsletter__field:focus-within { border-color: var(--vt-accent); }
.vt-newsletter input {
  flex: 1; width: 100%;
  border: 0; background: transparent;
  font: inherit; font-size: 0.875rem;
  color: var(--vt-bg);
}
.vt-newsletter input::placeholder { color: rgba(250, 247, 242, 0.35); }
.vt-newsletter input:focus { outline: none; }
.vt-newsletter button { padding: 0.375rem; border: 0; background: transparent; border-radius: 999px; color: rgba(250, 247, 242, 0.7); }
.vt-newsletter button:hover { background: rgba(255, 255, 255, 0.1); color: var(--vt-bg); }
.vt-newsletter__note { margin-top: 0.75rem; font-family: var(--vt-font-mono); font-size: 10px; line-height: 1.6; color: rgba(250, 247, 242, 0.35); }
.vt-newsletter__success { margin-top: 0.75rem; font-size: 0.875rem; color: var(--vt-support); }

.vt-footer__bottom {
  display: flex; flex-direction: column; gap: 1.25rem;
  margin-top: 3.5rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 640px) { .vt-footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.vt-footer__copy { font-family: var(--vt-font-mono); font-size: 11px; color: rgba(250, 247, 242, 0.4); }
.vt-footer__social { display: flex; gap: 1.5rem; }
.vt-footer__social a { font-family: var(--vt-font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250, 247, 242, 0.5); text-decoration: none; }
.vt-footer__social a:hover { color: var(--vt-bg); }
.vt-footer__legal { margin-top: 2rem; max-width: 48rem; font-size: 11px; line-height: 1.7; color: rgba(250, 247, 242, 0.3); }
.vt-footer__payment { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.vt-footer__payment svg { width: 38px; height: 24px; }

/* ------------------------------------------------------------ cart drawer -- */

.vt-cart__wrap { display: flex; flex-direction: column; flex: 1; min-height: 0; }

.vt-cart__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; }
.vt-cart__empty svg { width: 28px; height: 28px; color: var(--vt-text-3); }
.vt-cart__empty h3 { margin-top: 1.25rem; font-size: 1.25rem; }
.vt-cart__empty p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--vt-text-2); }

.vt-ship-meter { padding: 1rem 1.5rem; border-bottom: 1px solid var(--vt-line); }
.vt-ship-meter__text { font-family: var(--vt-font-mono); font-size: 11px; color: var(--vt-text-2); }
.vt-ship-meter__track { height: 4px; margin-top: 0.5rem; border-radius: 999px; background: var(--vt-line); overflow: hidden; }
.vt-ship-meter__fill { height: 100%; border-radius: 999px; background: var(--vt-support); transition: width 0.5s ease-out; }

.vt-cart__items { flex: 1; overflow-y: auto; padding: 0 1.5rem; }
.vt-cart__item { display: flex; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--vt-line); }
.vt-cart__item:last-child { border-bottom: 0; }
.vt-cart__thumb { flex: 0 0 auto; width: 5rem; height: 5rem; padding: 0.375rem; border: 1px solid var(--vt-line); border-radius: 12px; background: var(--vt-surface); }
.vt-cart__thumb img { width: 100%; height: 100%; object-fit: contain; }
.vt-cart__body { flex: 1; min-width: 0; }
.vt-cart__row { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; }
.vt-cart__name { font-size: 0.875rem; font-weight: 600; text-decoration: none; }
.vt-cart__variant { margin-top: 2px; font-family: var(--vt-font-mono); font-size: 11px; color: var(--vt-text-3); }
.vt-cart__linetotal { font-family: var(--vt-font-mono); font-size: 0.875rem; }
.vt-cart__controls { display: flex; align-items: center; justify-content: space-between; margin-top: 0.75rem; }

.vt-qty { display: inline-flex; align-items: center; border: 1px solid var(--vt-line); border-radius: 999px; background: #fff; }
.vt-qty button { padding: 0.5rem; border: 0; background: transparent; color: var(--vt-text-2); border-radius: 999px; }
.vt-qty button:hover { background: rgba(31, 29, 27, 0.05); }
.vt-qty svg { width: 13px; height: 13px; display: block; }
.vt-qty__value { min-width: 1.5rem; text-align: center; font-family: var(--vt-font-mono); font-size: 13px; }

.vt-cart__remove { border: 0; background: transparent; padding: 0; font-family: var(--vt-font-mono); font-size: 11px; color: var(--vt-text-3); }
.vt-cart__remove:hover { color: var(--vt-accent); text-decoration: underline; }

.vt-cart__foot { padding: 1.25rem 1.5rem; border-top: 1px solid var(--vt-line); }
.vt-cart__subtotal { display: flex; align-items: baseline; justify-content: space-between; }
.vt-cart__subtotal-value { font-family: var(--vt-font-display); font-size: 1.25rem; }
.vt-cart__note { margin-top: 0.25rem; font-size: 12px; color: var(--vt-text-3); }

/* ----------------------------------------------------------------- toast -- */

.vt-toast {
  position: fixed;
  z-index: 90;
  bottom: 6rem; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2.5rem);
  max-width: 24rem;
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--vt-line);
  border-radius: 999px;
  background: var(--vt-text);
  box-shadow: 0 2px 4px rgba(31, 29, 27, 0.05), 0 24px 48px -16px rgba(31, 29, 27, 0.16);
  animation: vt-fade-up 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media (min-width: 640px) {
  .vt-toast { left: auto; right: 2rem; bottom: 2rem; transform: none; }
}
.vt-toast[hidden] { display: none; }
.vt-toast__dot { flex: 0 0 auto; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--vt-support); color: #fff; }
.vt-toast__dot svg { width: 12px; height: 12px; }
.vt-toast__text { font-size: 0.8125rem; font-weight: 500; color: var(--vt-bg); }

/* ------------------------------------------------------- generic sections -- */

.vt-rte { color: var(--vt-text-2); line-height: 1.7; }
.vt-rte > * + * { margin-top: 1rem; }
.vt-rte h2, .vt-rte h3 { color: var(--vt-text); margin-top: 2rem; }
.vt-rte a { color: var(--vt-accent); }
.vt-rte ul { list-style: disc; padding-left: 1.25rem; }
.vt-rte li { margin-top: 0.5rem; }

.vt-product-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 768px) { .vt-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .vt-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.vt-pcard { display: block; text-decoration: none; }
.vt-pcard__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--vt-line);
  border-radius: var(--vt-radius);
  background: var(--vt-surface);
  overflow: hidden;
}
.vt-pcard__media img { width: 100%; height: 100%; object-fit: contain; padding: 1.25rem; transition: transform 0.4s; }
.vt-pcard:hover .vt-pcard__media img { transform: scale(1.04); }
.vt-pcard__title { margin-top: 0.875rem; font-size: 0.9375rem; font-weight: 600; }
.vt-pcard__price { margin-top: 0.25rem; font-family: var(--vt-font-mono); font-size: 0.8125rem; color: var(--vt-text-2); }
.vt-pcard__was { color: var(--vt-text-3); text-decoration: line-through; margin-left: 0.375rem; }

.vt-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.vt-pagination a, .vt-pagination span {
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--vt-line);
  border-radius: 999px;
  font-family: var(--vt-font-mono);
  font-size: 12px;
  text-decoration: none;
}
.vt-pagination .is-current { background: var(--vt-text); color: var(--vt-bg); border-color: var(--vt-text); }

/* cart page */
.vt-cartpage__row { display: grid; gap: 1rem; grid-template-columns: 5rem 1fr auto; align-items: start; padding: 1.5rem 0; border-bottom: 1px solid var(--vt-line); }

/* --------------------------------------------------------- reveal on scroll */

.vt-reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.vt-reveal.is-visible { opacity: 1; transform: none; }
.no-js .vt-reveal { opacity: 1; transform: none; }

@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-reveal { opacity: 1; transform: none; }
}
.vt-btn__label {
  font-size: 0;
}
.vt-btn__label::before {
  content: "Add to cart";
  font-size: 1rem;
}
.vt-price {
  display: none;
}
```css
/* ============================================================
   VITAORA – STRAWBERRY-AÇAÍ GLOBAL PALETTE OVERRIDE
   Paste at the very bottom of assets/vitaora.css
   ============================================================ */

:root {
  --vt-primary: #8B1E4F;
  --vt-primary-dark: #651437;
  --vt-accent: #E75C82;
  --vt-accent-light: #F8C9D6;
  --vt-page-background: #FFF8FA;
  --vt-section-background: #FFFFFF;
  --vt-soft-background: #FFF0F4;
  --vt-cream-background: #FFF8F0;
  --vt-heading: #281820;
  --vt-body-text: #685961;
  --vt-muted-text: #88777F;
  --vt-border: #EBCFD8;
  --vt-button-text: #FFFFFF;
}

/* ============================================================
   PAGE & BODY BACKGROUND
   ============================================================ */
body,
html,
.vt-page,
.vt-page-wrapper,
main,
#MainContent {
  background-color: #FFF8FA !important;
  color: #685961 !important;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.vt-announcement-bar,
.announcement-bar,
.vt-announcement,
[class*="announcement"] {
  background-color: #8B1E4F !important;
  color: #FFFFFF !important;
  border-color: #651437 !important;
}
.vt-announcement-bar a,
.announcement-bar a,
[class*="announcement"] a {
  color: #FFFFFF !important;
}
.vt-announcement-bar svg,
.announcement-bar svg,
[class*="announcement"] svg {
  fill: #FFFFFF !important;
  stroke: #FFFFFF !important;
}

/* ============================================================
   HEADER
   ============================================================ */
.vt-header,
.site-header,
header,
#shopify-section-header {
  background-color: #FFFFFF !important;
  border-bottom-color: #EBCFD8 !important;
}
.vt-header a,
.site-header a,
header a {
  color: #281820 !important;
}
.vt-header a:hover,
.site-header a:hover,
header a:hover {
  color: #8B1E4F !important;
}
.vt-header svg,
.site-header svg,
header svg {
  fill: #281820 !important;
  stroke: #281820 !important;
}
.vt-header .vt-cart-icon svg,
.site-header .cart-icon svg {
  fill: #8B1E4F !important;
  stroke: #8B1E4F !important;
}

/* ============================================================
   HEADINGS
   ============================================================ */
h1, h2, h3, h4, h5, h6,
.vt-heading,
.vt-title,
.vt-section-title,
.vt-product-title,
[class*="vt-heading"],
[class*="vt-title"] {
  color: #281820 !important;
}

/* ============================================================
   BODY TEXT & PARAGRAPHS
   ============================================================ */
p,
li,
span,
.vt-body-text,
.vt-description,
.vt-text,
[class*="vt-body"],
[class*="vt-desc"] {
  color: #685961 !important;
}

/* ============================================================
   MUTED / SECONDARY TEXT
   ============================================================ */
.vt-muted,
.vt-label,
.vt-secondary-text,
.vt-subtitle,
small,
[class*="vt-muted"],
[class*="vt-label"],
[class*="vt-secondary"] {
  color: #88777F !important;
}

/* ============================================================
   LINKS
   ============================================================ */
a,
.vt-link {
  color: #8B1E4F !important;
}
a:hover,
.vt-link:hover {
  color: #651437 !important;
}

/* ============================================================
   PRODUCT SECTION & PRODUCT INFO
   ============================================================ */
.vt-product-section,
.vt-product-info,
.vt-product-wrapper,
.product-section,
.product__info-wrapper,
[class*="vt-product"] {
  background-color: #FFF8FA !important;
}

/* ============================================================
   STARS & RATINGS
   ============================================================ */
.vt-star,
.vt-stars,
.vt-rating-star,
.vt-review-star,
[class*="vt-star"],
[class*="star"],
.star-rating,
.review-stars {
  color: #E75C82 !important;
  fill: #E75C82 !important;
}
.vt-star svg,
.vt-stars svg,
[class*="star"] svg,
.star-rating svg {
  fill: #E75C82 !important;
  stroke: none !important;
}
.vt-star::before,
.vt-stars::before,
[class*="star"]::before {
  color: #E75C82 !important;
}

/* ============================================================
   CHECKMARKS & BENEFIT ICONS
   ============================================================ */
.vt-check,
.vt-checkmark,
.vt-benefit-icon,
.vt-benefit-check,
[class*="vt-check"],
[class*="vt-benefit"] svg,
[class*="checkmark"] {
  color: #E75C82 !important;
  fill: #E75C82 !important;
  stroke: #E75C82 !important;
}
.vt-check::before,
.vt-checkmark::before,
[class*="vt-check"]::before {
  color: #E75C82 !important;
}

/* ============================================================
   BUTTONS – PRIMARY
   ============================================================ */
.vt-btn,
.vt-button,
.vt-btn-primary,
.vt-add-to-cart,
.vt-cta-btn,
button[class*="vt-"],
.btn,
.button,
.product-form__submit,
[class*="vt-btn"],
[class*="vt-button"] {
  background-color: #8B1E4F !important;
  color: #FFFFFF !important;
  border-color: #8B1E4F !important;
  box-shadow: 0 2px 8px rgba(139, 30, 79, 0.25) !important;
}
.vt-btn:hover,
.vt-button:hover,
.vt-btn-primary:hover,
.vt-add-to-cart:hover,
.vt-cta-btn:hover,
button[class*="vt-"]:hover,
.btn:hover,
.button:hover,
.product-form__submit:hover,
[class*="vt-btn"]:hover,
[class*="vt-button"]:hover {
  background-color: #651437 !important;
  border-color: #651437 !important;
  color: #FFFFFF !important;
}
.vt-btn:active,
.vt-button:active,
.product-form__submit:active,
[class*="vt-btn"]:active {
  background-color: #651437 !important;
  border-color: #651437 !important;
}
.vt-btn:focus,
.vt-button:focus,
.product-form__submit:focus,
[class*="vt-btn"]:focus {
  outline-color: #8B1E4F !important;
  box-shadow: 0 0 0 3px rgba(139, 30, 79, 0.3) !important;
}
.vt-btn:disabled,
.vt-button:disabled,
.product-form__submit:disabled,
[class*="vt-btn"]:disabled {
  background-color: #EBCFD8 !important;
  border-color: #EBCFD8 !important;
  color: #88777F !important;
}
.vt-btn svg,
.vt-button svg,
[class*="vt-btn"] svg {
  fill: #FFFFFF !important;
  stroke: #FFFFFF !important;
}

/* ============================================================
   BUTTONS – SECONDARY / OUTLINE
   ============================================================ */
.vt-btn-secondary,
.vt-btn-outline,
[class*="vt-btn-secondary"],
[class*="vt-btn-outline"] {
  background-color: transparent !important;
  color: #8B1E4F !important;
  border-color: #8B1E4F !important;
}
.vt-btn-secondary:hover,
.vt-btn-outline:hover,
[class*="vt-btn-secondary"]:hover,
[class*="vt-btn-outline"]:hover {
  background-color: #8B1E4F !important;
  color: #FFFFFF !important;
}

/* ============================================================
   BUNDLE CARDS
   ============================================================ */
.vt-bundle,
.vt-bundle-card,
.vt-bundle-option,
[class*="vt-bundle"] {
  background-color: #FFFFFF !important;
  border-color: #EBCFD8 !important;
  color: #685961 !important;
}
.vt-bundle:hover,
.vt-bundle-card:hover,
[class*="vt-bundle"]:hover {
  border-color: #8B1E4F !important;
}
.vt-bundle.selected,
.vt-bundle-card.selected,
.vt-bundle-option.selected,
.vt-bundle.active,
.vt-bundle-card.active,
[class*="vt-bundle"].selected,
[class*="vt-bundle"].active {
  background-color: #FFF0F4 !important;
  border-color: #8B1E4F !important;
}
.vt-bundle-card__title,
[class*="vt-bundle"] h3,
[class*="vt-bundle"] h4 {
  color: #281820 !important;
}

/* ============================================================
   BADGES & LABELS
   ============================================================ */
.vt-badge,
.vt-best-value,
.vt-discount-badge,
.vt-tag,
[class*="vt-badge"],
[class*="vt-best-value"],
[class*="vt-discount"] {
  background-color: #E75C82 !important;
  color: #FFFFFF !important;
  border-color: #E75C82 !important;
}

/* ============================================================
   PRICES
   ============================================================ */
.vt-price,
.vt-price-current,
.vt-price__regular,
.price,
.price--on-sale,
[class*="vt-price"] {
  color: #8B1E4F !important;
}
.vt-price-compare,
.vt-price__compare,
.price--compare,
[class*="vt-price-compare"],
[class*="price--compare"] {
  color: #88777F !important;
  text-decoration: line-through !important;
}
.vt-price-savings,
.vt-savings,
[class*="vt-savings"] {
  color: #E75C82 !important;
}

/* ============================================================
   BORDERS & DIVIDERS
   ============================================================ */
.vt-divider,
.vt-separator,
hr,
[class*="vt-divider"],
[class*="vt-separator"] {
  border-color: #EBCFD8 !important;
  background-color: #EBCFD8 !important;
}

/* ============================================================
   INGREDIENT SECTION
   ============================================================ */
.vt-ingredients,
.vt-ingredient-section,
.vt-ingredient-card,
[class*="vt-ingredient"] {
  background-color: #FFF8FA !important;
  border-color: #EBCFD8 !important;
}
.vt-ingredient-card__title,
[class*="vt-ingredient"] h3,
[class*="vt-ingredient"] h4 {
  color: #281820 !important;
}
.vt-ingredient-card__text,
[class*="vt-ingredient"] p {
  color: #685961 !important;
}
.vt-ingredient-icon svg,
[class*="vt-ingredient"] svg {
  fill: #8B1E4F !important;
  stroke: #8B1E4F !important;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.vt-comparison,
.vt-comparison-table,
[class*="vt-comparison"] {
  background-color: #FFFFFF !important;
  border-color: #EBCFD8 !important;
}
.vt-comparison th,
.vt-comparison-table th,
[class*="vt-comparison"] th {
  background-color: #8B1E4F !important;
  color: #FFFFFF !important;
  border-color: #651437 !important;
}
.vt-comparison td,
.vt-comparison-table td,
[class*="vt-comparison"] td {
  border-color: #EBCFD8 !important;
  color: #685961 !important;
}
.vt-comparison tr:nth-child(even),
.vt-comparison-table tr:nth-child(even),
[class*="vt-comparison"] tr:nth-child(even) {
  background-color: #FFF8FA !important;
}
.vt-comparison .vt-check svg,
.vt-comparison-table .vt-check svg,
[class*="vt-comparison"] .vt-check svg {
  fill: #E75C82 !important;
}
.vt-comparison .vt-cross svg,
.vt-comparison-table .vt-cross svg,
[class*="vt-comparison"] .vt-cross svg {
  fill: #88777F !important;
}

/* ============================================================
   TESTIMONIALS & REVIEWS
   ============================================================ */
.vt-testimonial,
.vt-review,
.vt-testimonial-card,
.vt-review-card,
[class*="vt-testimonial"],
[class*="vt-review"] {
  background-color: #FFFFFF !important;
  border-color: #EBCFD8 !important;
}
.vt-testimonial__text,
.vt-review__text,
[class*="vt-testimonial"] p,
[class*="vt-review"] p {
  color: #685961 !important;
}
.vt-testimonial__author,
.vt-review__author,
[class*="vt-testimonial"] .author,
[class*="vt-review"] .author {
  color: #281820 !important;
}
.vt-testimonial__stars,
.vt-review__stars,
[class*="vt-testimonial"] [class*="star"],
[class*="vt-review"] [class*="star"] {
  color: #E75C82 !important;
  fill: #E75C82 !important;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.vt-faq,
.vt-faq-section,
.vt-faq-item,
[class*="vt-faq"] {
  background-color: #FFF8FA !important;
  border-color: #EBCFD8 !important;
}
.vt-faq__question,
.vt-faq-item__question,
[class*="vt-faq"] summary,
[class*="vt-faq"] .question {
  color: #281820 !important;
}
.vt-faq__answer,
.vt-faq-item__answer,
[class*="vt-faq"] .answer,
[class*="vt-faq"] p {
  color: #685961 !important;
}
.vt-faq__icon,
[class*="vt-faq"] svg {
  fill: #8B1E4F !important;
  stroke: #8B1E4F !important;
}
details[class*="vt-faq"][open] summary,
.vt-faq-item.open .vt-faq__question {
  color: #8B1E4F !important;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.vt-final-cta,
.vt-cta-section,
[class*="vt-final-cta"],
[class*="vt-cta-section"] {
  background-color: #8B1E4F !important;
  color: #FFFFFF !important;
}
.vt-final-cta h1,
.vt-final-cta h2,
.vt-final-cta h3,
.vt-cta-section h1,
.vt-cta-section h2,
.vt-cta-section h3,
[class*="vt-final-cta"] h1,
[class*="vt-final-cta"] h2,
[class*="vt-cta-section"] h2 {
  color: #FFFFFF !important;
}
.vt-final-cta p,
.vt-cta-section p,
[class*="vt-final-cta"] p,
[class*="vt-cta-section"] p {
  color: #F8C9D6 !important;
}
.vt-final-cta .vt-btn,
.vt-cta-section .vt-btn,
[class*="vt-final-cta"] .vt-btn,
[class*="vt-cta-section"] .vt-btn {
  background-color: #FFFFFF !important;
  color: #8B1E4F !important;
  border-color: #FFFFFF !important;
}
.vt-final-cta .vt-btn:hover,
.vt-cta-section .vt-btn:hover,
[class*="vt-final-cta"] .vt-btn:hover {
  background-color: #F8C9D6 !important;
  color: #651437 !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer,
.vt-footer,
.site-footer,
#shopify-section-footer {
  background-color: #651437 !important;
  color: #FFFFFF !important;
  border-top-color: #8B1E4F !important;
}
footer a,
.vt-footer a,
.site-footer a {
  color: #F8C9D6 !important;
}
footer a:hover,
.vt-footer a:hover,
.site-footer a:hover {
  color: #FFFFFF !important;
}
footer h3,
footer h4,
.vt-footer h3,
.vt-footer h4,
.site-footer h3,
.site-footer h4 {
  color: #FFFFFF !important;
}
footer p,
footer li,
footer span,
.vt-footer p,
.vt-footer li,
.site-footer p {
  color: #F8C9D6 !important;
}
footer svg,
.vt-footer svg,
.site-footer svg {
  fill: #F8C9D6 !important;
  stroke: #F8C9D6 !important;
}
footer hr,
.vt-footer hr,
.site-footer hr {
  border-color: #8B1E4F !important;
}

/* ============================================================
   SOFT / ALTERNATE SECTION BACKGROUNDS
   ============================================================ */
.vt-section-soft,
.vt-section-alt,
.vt-section-cream,
[class*="vt-section-soft"],
[class*="vt-section-alt"],
[class*="vt-section-cream"] {
  background-color: #FFF0F4 !important;
}
.vt-section,
[class*="vt-section"] {
  border-color: #EBCFD8 !important;
}

/* ============================================================
   FORMS & INPUTS
   ============================================================ */
input,
select,
textarea,
.vt-input,
[class*="vt-input"] {
  border-color: #EBCFD8 !important;
  color: #685961 !important;
  background-color: #FFFFFF !important;
}
input:focus,
select:focus,
textarea:focus,
.vt-input:focus,
[class*="vt-input"]:focus {
  border-color: #8B1E4F !important;
  outline-color: #8B1E4F !important;
  box-shadow: 0 0 0 3px rgba(139, 30, 79, 0.15) !important;
}
input::placeholder,
textarea::placeholder {
  color: #88777F !important;
}

/* ============================================================
   QUANTITY SELECTOR
   ============================================================ */
.vt-quantity,
.quantity,
[class*="vt-quantity"],
[class*="quantity"] {
  border-color: #EBCFD8 !important;
  color: #281820 !important;
}
.vt-quantity__btn,
.quantity__button,
[class*="quantity"] button {
  background-color: #FFF0F4 !important;
  color: #8B1E4F !important;
  border-color: #EBCFD8 !important;
}
.vt-quantity__btn:hover,
.quantity__button:hover,
[class*="quantity"] button:hover {
  background-color: #8B1E4F !important;
  color: #FFFFFF !important;
}

/* ============================================================
   CHAT BUTTON
   ============================================================ */
.vt-chat-btn,
.vt-chat-button,
[class*="vt-chat"],
[id*="chat-button"],
[class*="chat-button"] {
  background-color: #8B1E4F !important;
  color: #FFFFFF !important;
  border-color: #651437 !important;
  box-shadow: 0 4px 12px rgba(139, 30, 79, 0.35) !important;
}
.vt-chat-btn:hover,
.vt-chat-button:hover,
[class*="vt-chat"]:hover {
  background-color: #651437 !important;
}
.vt-chat-btn svg,
.vt-chat-button svg,
[class*="vt-chat"] svg {
  fill: #FFFFFF !important;
  stroke: #FFFFFF !important;
}

/* ============================================================
   GRADIENTS
   ============================================================ */
.vt-gradient,
[class*="vt-gradient"] {
  background-image: linear-gradient(135deg, #8B1E4F 0%, #E75C82 100%) !important;
}
.vt-gradient-soft,
[class*="vt-gradient-soft"] {
  background-image: linear-gradient(135deg, #FFF0F4 0%, #FFF8FA 100%) !important;
}

/* ============================================================
   BOX SHADOWS
   ============================================================ */
.vt-card,
.vt-shadow,
[class*="vt-card"],
[class*="vt-shadow"] {
  box-shadow: 0 2px 16px rgba(139, 30, 79, 0.08) !important;
}
.vt-card:hover,
[class*="vt-card"]:hover {
  box-shadow: 0 4px 24px rgba(139, 30, 79, 0.15) !important;
}

/* ============================================================
   SVG ICONS – GLOBAL FALLBACK
   ============================================================ */
.vt-icon svg,
[class*="vt-icon"] svg {
  fill: #8B1E4F !important;
  stroke: #8B1E4F !important;
}

/* ============================================================
   SCROLLBAR (WEBKIT)
   ============================================================ */
::-webkit-scrollbar-thumb {
  background-color: #EBCFD8 !important;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #8B1E4F !important;
}

/* ============================================================
   SELECTION HIGHLIGHT
   ============================================================ */
::selection {
  background-color: #F8C9D6 !important;
  color: #281820 !important;
}
```
/* Fix header search and cart buttons */
.vt-icon-btn {
  background: #FFF0F4 !important;
  color: #7E173F !important;
  border: 1px solid #EADDE2 !important;
}

.vt-icon-btn:hover {
  background: #B7285E !important;
  color: #FFFFFF !important;
  border-color: #B7285E !important;
}

.vt-icon-btn svg {
  color: currentColor !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8;
}

.vt-icon-btn svg path,
.vt-icon-btn svg circle,
.vt-icon-btn svg line {
  stroke: currentColor !important;
}

.vt-cart-count,
.vt-cart-count-badge,
.vt-icon-btn__badge {
  background: #B7285E !important;
  color: #FFFFFF !important;
  border: 2px solid #FFFFFF !important;
}
/* NEXORA LEEFAR WORDMARK */
.vt-wordmark {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: var(--vt-wordmark-width, 220px) !important;
  min-width: 0 !important;
  margin: 0 !important;
  color: #241a1e !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.vt-wordmark__image {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: var(--vt-wordmark-width, 220px) !important;
  max-height: 46px !important;
  margin: 0 auto !important;
  object-fit: contain !important;
}

.vt-wordmark__text {
  display: block !important;
  max-width: 100% !important;
  color: #241a1e !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0.14em !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.vt-wordmark__dot {
  display: none !important;
}

@media screen and (max-width: 749px) {
  .vt-wordmark {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .vt-wordmark__image {
    width: auto !important;
    max-width: min(170px, 100%) !important;
    max-height: 34px !important;
  }

  .vt-wordmark__text {
    max-width: 100% !important;
    overflow: hidden !important;
    font-size: 14px !important;
    letter-spacing: 0.06em !important;
  }
}

@media screen and (max-width: 370px) {
  .vt-wordmark__text {
    font-size: 12px !important;
    letter-spacing: 0.03em !important;
  }
}
/* Add spacing between desktop logo and navigation */
@media screen and (min-width: 990px) {
  .vt-header__brand {
    margin-right: 48px !important;
  }

  .vt-nav__list {
    display: flex;
    align-items: center;
    gap: 38px !important;
  }
}

/* Do not add this spacing on mobile */
@media screen and (max-width: 989px) {
  .vt-header__brand {
    margin-right: 0 !important;
  }
}