@font-face {
  font-family: "Sequel Sans";
  src: url("../fonts/sequel-sans/sequel-sans-book-body.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sequel Sans";
  src: url("../fonts/sequel-sans/sequel-sans-medium-body.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sequel Sans";
  src: url("../fonts/sequel-sans/sequel-sans-semi-bold-body.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sequel Sans";
  src: url("../fonts/sequel-sans/sequel-sans-bold-body.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sequel Sans";
  src: url("../fonts/sequel-sans/sequel-sans-black-body.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP Telegraf";
  src: url("../fonts/pp-telegraf/pptelegraf-ultralight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Telegraf";
  src: url("../fonts/pp-telegraf/pptelegraf-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Telegraf";
  src: url("../fonts/pp-telegraf/pptelegraf-ultrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/manrope-variablefont-wght.ttf") format("truetype-variations");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --vh-dark: #1b1a28;
  --vh-olive: #8c9e6d;
  --vh-gold: #fead52;
  --vh-gold-strong: #ffbe0b;
  --vh-sand: #e9e3e0;
  --vh-ink: #0f0f17;
  --vh-white: #ffffff;
  --vh-font-heading: "Sequel Sans", "PP Telegraf", "Manrope", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --vh-font-body: "Manrope", "Sequel Sans", "PP Telegraf", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --vh-font-cta: "PP Telegraf", "Sequel Sans", "Manrope", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --vh-color-bg-body: var(--vh-sand);
  --vh-color-bg-surface: #ffffff;
  --vh-color-bg-surface-alt: #f4eee5;
  --vh-color-bg-elevated: linear-gradient(145deg, #1b1a28, #0f0f17);
  --vh-color-bg-contrast: #1b1a28;
  --vh-color-bg-chip: rgba(27, 26, 40, 0.06);
  --vh-color-border-subtle: #e4d8c7;
  --vh-color-accent: var(--vh-gold);
  --vh-color-accent-text: #a96400;
  --vh-color-accent-soft: rgba(254, 173, 82, 0.16);
  --vh-color-accent-olive: var(--vh-olive);
  --vh-color-text-main: var(--vh-dark);
  --vh-color-text-muted: #77757e;
  --vh-color-text-invert: #ffffff;
  --vh-color-success: #8c9e6d;
  --vh-color-danger: #c13f3f;
  --vh-space-2: 2px;
  --vh-space-4: 4px;
  --vh-space-8: 8px;
  --vh-space-12: 12px;
  --vh-space-16: 16px;
  --vh-space-20: 20px;
  --vh-space-24: 24px;
  --vh-space-32: 32px;
  --vh-radius-xs: 6px;
  --vh-radius-sm: 8px;
  --vh-radius-md: 12px;
  --vh-radius-lg: 16px;
  --vh-radius-xl: 19px;
  --vh-radius-pill: 999px;
  --vh-shadow-soft: 0 10px 24px rgba(27, 26, 40, 0.12);
  --vh-shadow-elevated: 0 18px 42px rgba(27, 26, 40, 0.18);
  --vh-shadow-contrast: 0 14px 34px rgba(0, 0, 0, 0.32);
  --vh-font-xs: 12px;
  --vh-font-sm: 14px;
  --vh-font-md: 16px;
  --vh-font-lg: 18px;
  --vh-font-xl: 22px;
  --vh-font-2xl: 28px;
  --vh-weight-regular: 400;
  --vh-weight-medium: 500;
  --vh-weight-semibold: 600;
  --vh-weight-bold: 700;
}

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

body {
  margin: 0;
  font-family: var(--vh-font-body);
  color: var(--vh-dark);
  background: var(--vh-sand);
  line-height: 1.6;
  overflow-x: hidden;
}

.vh-main {
  overflow-x: hidden;
}

/* Cookie notice (3rd-party) */
@media (max-width: 560px) {
  #cookie-notice {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: calc(100% - 24px) !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }

  #cookie-notice .cookie-notice-container {
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
  }

  #cookie-notice a,
  #cookie-notice button,
  #cookie-notice input {
    max-width: 100%;
    white-space: normal;
  }
}

.vh-header {
  background: #0f0f17;
  color: #ffffff;
  border-bottom: 3px solid var(--vh-gold);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 120;
}

.vh-header__top {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vh-header__nav {
  padding: 0.3rem 0;
  background: #181520;
}

@media (max-width: 768px) {
  .vh-home-iconstrip {
    position: sticky;
    top: 0;
    z-index: 130;
  }

  .vh-header {
    display: contents;
  }

  .vh-header__top {
    background: #0f0f17;
    color: #ffffff;
  }

  .vh-header__nav {
    position: sticky;
    top: var(--vh-iconstrip-h, 0px);
    z-index: 125;
    border-bottom: 3px solid var(--vh-gold);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  }
}

.vh-header__nav .vh-header__row {
  min-height: 56px;
  grid-template-columns: 1fr;
}

.vh-header__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 1rem;
  min-height: 64px;
}

.vh-header__row > * {
  min-width: 0;
}

@media (min-width: 901px) and (max-width: 1199px) {
  .vh-header__top .vh-header__row {
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr) minmax(0, 360px);
  }

  .vh-header__search form {
    grid-template-columns: minmax(90px, 0.9fr) minmax(120px, 2fr) minmax(90px, 0.8fr);
  }
}

@media (min-width: 1200px) {
  .vh-header__top .vh-header__row {
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr) minmax(0, 520px);
  }
}

.vh-header__search {
  position: relative;
  width: 100%;
}

.vh-header__search form {
  display: grid;
  grid-template-columns: minmax(110px, 0.9fr) minmax(160px, 2fr) minmax(110px, 0.8fr);
  align-items: stretch;
  gap: 0.5rem;
  background: rgba(var(--vh-home-search-bg-rgb, 255, 255, 255), var(--vh-home-search-bg-opacity, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.35rem;
}

.vh-search,
.vh-search-form {
  position: relative;
}

.vh-search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #15141d;
  width: min(640px, 100%);
  border: 1px solid #e4d8c7;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  margin-top: 8px;
  display: none;
  z-index: 300;
  max-height: 360px;
  overflow: auto;
}

.vh-search-suggestions.is-open {
  display: block;
}

.vh-search-suggestion {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  align-items: center;
  color: #f6f4ff;
}

.vh-search-suggestion:hover {
  background: rgba(255, 255, 255, 0.06);
}

.vh-search-suggestion__thumb img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e4d8c7;
}

.vh-search-suggestion__title {
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}

.vh-search-suggestion__price {
  color: #ffd58a;
  font-weight: 700;
  font-size: 0.92rem;
}

.vh-search-suggestion--empty {
  padding: 0.75rem 0.85rem;
  color: #e7e0ff;
  font-weight: 600;
}

.vh-search-suggestion--all {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .vh-header__row {
    grid-template-columns: 1fr;
    justify-items: flex-start;
  }

  .vh-header__search form {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .vh-search__cats,
  .vh-search__input,
  .vh-search__button {
    width: 100%;
    min-width: 0;
  }
}
.vh-brand img {
  max-height: 64px;
}

.vh-search__cats {
  border-radius: 12px;
  border: 1px solid #272435;
  padding: 0.65rem 0.75rem;
  background: #181520;
  color: #fff;
  min-width: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.vh-search__input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #272435;
  padding: 0.65rem 0.75rem;
  background: #181520;
  color: #fff;
}

.vh-search__button {
  border-radius: 12px;
  border: 1px solid #1b1a28;
  padding: 0.65rem 0.9rem;
  background: linear-gradient(120deg, #f2b35c, #1b1a28);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.04em;
  min-width: 0;
  text-transform: uppercase;
}

.vh-header__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 900px) {
  .vh-header__actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.vh-header__action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vh-header__action,
.vh-header__cart {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.15s ease, border-color 0.2s ease;
  white-space: nowrap;
}

@media (max-width: 1199px) {
  .vh-header__actions {
    gap: 0.65rem;
  }

  .vh-header__action,
  .vh-header__cart {
    padding: 0.45rem 0.55rem;
  }

  .vh-action__label {
    display: none;
  }
}

.vh-header__action:hover,
.vh-header__cart:hover {
  border-color: var(--vh-gold);
  transform: translateY(-1px);
}

.vh-cart-count {
  background: #fead52;
  color: #1b1a28;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  font-weight: 900;
}

.vh-cart-total {
  font-weight: 700;
}

.vh-header__cartwrap {
  position: relative;
  z-index: 160;
}

body.vh-mini-cart-open {
  overflow: hidden;
}

body.vh-mini-cart-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 23, 0.65);
  z-index: 190;
}

.vh-mini-cart {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(420px, 92vw);
  background: var(--vh-color-bg-surface, #ffffff);
  border-left: 1px solid var(--vh-color-border-subtle, #e4d8c7);
  box-shadow: var(--vh-shadow-contrast, 0 14px 34px rgba(0, 0, 0, 0.32));
  padding: 0.9rem 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 200;
  color: var(--vh-dark);
  transform: translateX(110%);
  transition: transform 0.2s ease;
  pointer-events: none;
}

.vh-mini-cart .widget_shopping_cart_content {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.vh-mini-cart-open .vh-mini-cart,
.vh-mini-cart.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.vh-mini-progress {
  border: 1px solid #e4d8c7;
  border-radius: var(--vh-radius-md, 12px);
  padding: 0.65rem 0.75rem;
  background: #fff9ef;
  color: var(--vh-dark);
  margin-bottom: 0.6rem;
}

.vh-mini-progress__label {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}

.vh-mini-progress__bar {
  background: #efe4d4;
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.vh-mini-progress__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--vh-gold), var(--vh-olive));
  border-radius: 999px;
  transition: width 0.2s ease;
}

.vh-action__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 800;
}

.vh-mini-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.15rem;
  font-weight: 800;
  color: var(--vh-dark);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #e4d8c7;
}

.vh-mini-cart__head-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.vh-mini-cart__close {
  width: 36px;
  height: 36px;
  border-radius: var(--vh-radius-md, 12px);
  border: 1px solid var(--vh-color-border-subtle, #e4d8c7);
  background: transparent;
  color: var(--vh-dark);
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.vh-mini-cart__close:hover {
  border-color: var(--vh-gold);
  background: rgba(27, 26, 40, 0.06);
  transform: translateY(-1px);
}

.vh-mini-cart__meta {
  font-size: 0.92rem;
  color: #5a545f;
}

.vh-mini-cart__wishlist {
  margin: 0 0 0.4rem;
}

.vh-mini-cart__wishlist a {
  color: #4b4657;
  font-weight: 700;
  text-decoration: underline;
}

.vh-mini-cart__wishlist a:hover {
  color: var(--vh-gold);
}

.woocommerce-mini-cart {
  flex: 1 1 auto;
  max-height: none;
  overflow-y: auto;
  margin: 0 -0.25rem 0.5rem;
  padding: 0 0.25rem;
}

.woocommerce-mini-cart li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.6rem;
  align-items: flex-start;
  padding: 0.35rem 0;
  border-bottom: 1px solid #eee4d6;
  position: relative;
}

.woocommerce-mini-cart li:last-child {
  border-bottom: none;
}

.woocommerce-mini-cart li > a:not(.remove) {
  flex: 1 1 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding-right: 2.25rem;
  color: var(--vh-dark);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.woocommerce-mini-cart li > a:not(.remove) img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: var(--vh-radius-md, 12px);
  border: 1px solid var(--vh-color-border-subtle, #e4d8c7);
}

.woocommerce-mini-cart li dl.variation {
  flex: 1 1 100%;
  margin: 0;
  padding-left: calc(64px + 0.6rem);
  color: #5a545f;
  font-weight: 700;
  font-size: 0.92rem;
}

.woocommerce-mini-cart .mini-cart-item-meta {
  flex: 1 1 100%;
  margin: 0;
  padding-left: calc(64px + 0.6rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  color: #5a545f;
  font-weight: 700;
  font-size: 0.92rem;
}

.woocommerce-mini-cart .remove {
  color: #c14040;
  font-weight: 800;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.12s ease;
}
.woocommerce-mini-cart .remove.is-loading {
  pointer-events: none;
  opacity: 0.4;
}

.woocommerce-mini-cart .quantity {
  color: #5a545f;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  flex: 1 1 100%;
  padding-left: calc(64px + 0.6rem);
  padding-right: 2.25rem;
  width: auto;
}

.woocommerce-mini-cart__total {
  font-weight: 800;
  padding-top: 0.45rem;
  border-top: 1px solid #e4d8c7;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.woocommerce-mini-cart__total strong {
  font-size: 0.95rem;
}

.woocommerce-mini-cart__total {
  font-weight: 800;
  padding-top: 0.35rem;
  border-top: 1px solid #e4d8c7;
  margin-top: 0.35rem;
}

.woocommerce-mini-cart__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.woocommerce-mini-cart__buttons .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.4rem 0.6rem;
  border-radius: var(--vh-radius-md, 12px);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid var(--vh-cta-border, #1b1a28);
  background: var(--vh-cta-bg, linear-gradient(#a5acb9, #1b1a28));
  color: var(--vh-cta-color, #ffffff);
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.woocommerce-mini-cart__buttons .button:hover {
  transform: translateY(var(--vh-cta-hover-translate, -1px));
  box-shadow: var(--vh-cta-hover-shadow, 0 10px 18px rgba(0, 0, 0, 0.16));
  border-color: var(--vh-cta-hover-border, var(--vh-gold));
  background: var(--vh-cta-hover-bg, var(--vh-cta-bg, linear-gradient(#a5acb9, #1b1a28)));
  color: var(--vh-cta-hover-color, var(--vh-cta-color, #ffffff));
}

.woocommerce-mini-cart__buttons .wc-forward {
  background: var(--vh-color-bg-surface-alt, #f4eee5);
  color: var(--vh-color-text-main, #1b1a28);
  border-color: var(--vh-color-border-subtle, #e4d8c7);
}

@media (max-width: 520px) {
  .woocommerce-mini-cart__buttons {
    grid-template-columns: 1fr;
  }
}

.vh-action__icon--account::before {
  content: "👤";
  font-size: 12px;
}

.vh-action__icon--cart::before {
  content: "🛒";
  font-size: 12px;
}

.vh-primary-nav .menu {
  display: flex;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--vh-font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

@media (max-width: 520px) {
  .vh-primary-nav .menu {
    flex-wrap: wrap;
    gap: 0.6rem 1.1rem;
  }

  .vh-primary-nav a {
    padding: 0.55rem 0;
  }
}

.vh-primary-nav a {
  color: #ffffff;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.vh-primary-nav .menu > li:hover > a,
.vh-primary-nav .menu > li.current-menu-item > a {
  color: var(--vh-gold);
  border-color: var(--vh-gold);
}

.vh-primary-nav {
  position: relative;
}

.vh-primary-nav .menu > li.vh-menu--mega > .vh-mega-menu {
  display: none;
}

@media (min-width: 768px) {
  .vh-primary-nav .menu > li.vh-menu--mega:hover > .vh-mega-menu,
  .vh-primary-nav .menu > li.vh-menu--mega:focus-within > .vh-mega-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.12s ease, transform 0.12s ease, visibility 0s linear 0s;
  }

  .vh-primary-nav .menu > li.vh-menu--mega > .vh-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: translateY(-6px);
    padding: 1rem 1.1rem;
    margin: 0;
    list-style: none;
    z-index: 140;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
      radial-gradient(820px 220px at 12% 0%, rgba(254, 173, 82, 0.14), transparent 60%),
      radial-gradient(720px 220px at 88% 0%, rgba(140, 158, 109, 0.14), transparent 62%),
      rgba(27, 26, 40, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    isolation: isolate;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.12s ease, transform 0.12s ease, visibility 0s linear 0.12s;
  }

  .vh-primary-nav .menu > li.vh-menu--mega > .vh-mega-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 40%),
      radial-gradient(420px 160px at 20% 12%, rgba(254, 173, 82, 0.18), transparent 70%),
      radial-gradient(420px 160px at 80% 12%, rgba(140, 158, 109, 0.18), transparent 72%);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
  }

  .vh-primary-nav .menu > li.vh-menu--mega > .vh-mega-menu > li {
    position: relative;
    z-index: 1;
  }

  .vh-mega-menu__header {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.15rem 0.25rem 0.85rem;
    margin: -0.1rem 0 0.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .vh-mega-menu__body {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 1.1rem;
    padding-top: 0.95rem;
  }

  .vh-mega-menu__nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }

  .vh-mega-menu__navitem.is-active > .vh-mega-menu__link {
    border-color: rgba(254, 173, 82, 0.75);
    background: rgba(254, 173, 82, 0.11);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
  }

  .vh-mega-menu__navitem.is-active > .vh-mega-menu__link::after {
    color: rgba(254, 173, 82, 0.95);
    transform: translateX(2px);
  }

  .vh-mega-menu__title {
    font-family: var(--vh-font-heading);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.92);
  }

  .vh-mega-menu__viewall {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.92);
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.12s ease, border-color 0.15s ease, background 0.15s ease;
  }

  .vh-mega-menu__viewall::after {
    content: "→";
  }

  .vh-mega-menu__viewall:hover {
    transform: translateY(-1px);
    border-color: rgba(254, 173, 82, 0.75);
    background: rgba(254, 173, 82, 0.12);
  }

  .vh-mega-menu__viewall:focus-visible {
    outline: 2px solid rgba(254, 173, 82, 0.85);
    outline-offset: 2px;
  }

  .vh-mega-menu__link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 54px;
    padding: 0.8rem 0.95rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    transition: transform 0.12s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  }

  .vh-mega-menu__link:hover {
    transform: translateY(-1px);
    border-color: rgba(254, 173, 82, 0.65);
    background: rgba(254, 173, 82, 0.08);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.26);
  }

  .vh-mega-menu__link:hover .vh-mega-menu__icon {
    border-color: rgba(254, 173, 82, 0.65);
    background: rgba(254, 173, 82, 0.12);
  }

  .vh-mega-menu__link:focus-visible {
    outline: 2px solid rgba(254, 173, 82, 0.85);
    outline-offset: 2px;
  }

  .vh-mega-menu__icon {
    width: 24px;
    height: 24px;
    flex: none;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
  }

  .vh-mega-menu__label {
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .vh-mega-menu__link::after {
    content: "→";
    margin-left: auto;
    color: rgba(255, 255, 255, 0.55);
    transition: transform 0.12s ease, color 0.15s ease;
  }

  .vh-mega-menu__link:hover::after {
    transform: translateX(2px);
    color: rgba(254, 173, 82, 0.92);
  }

  .vh-mega-menu__panels {
    min-height: 280px;
  }

  .vh-mega-menu__panel[hidden] {
    display: none;
  }

  .vh-mega-menu__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
  }

  .vh-mega-menu__panel-title {
    font-family: var(--vh-font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.94);
  }

  .vh-mega-menu__panel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.12s ease, border-color 0.15s ease, background 0.15s ease;
  }

  .vh-mega-menu__panel-link::after {
    content: "→";
  }

  .vh-mega-menu__panel-link:hover {
    transform: translateY(-1px);
    border-color: rgba(254, 173, 82, 0.75);
    background: rgba(254, 173, 82, 0.1);
  }

  .vh-mega-menu__subcats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .vh-mega-menu__chip {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    font-size: 0.86rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.12s ease, border-color 0.15s ease, background 0.15s ease;
  }

  .vh-mega-menu__chip:hover {
    transform: translateY(-1px);
    border-color: rgba(140, 158, 109, 0.8);
    background: rgba(140, 158, 109, 0.1);
  }

  .vh-mega-menu__products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .vh-mega-menu__product {
    display: grid;
    gap: 0.4rem;
    padding: 0.7rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.12s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  }

  .vh-mega-menu__product:hover {
    transform: translateY(-2px);
    border-color: rgba(254, 173, 82, 0.6);
    background: rgba(254, 173, 82, 0.08);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
  }

  .vh-mega-menu__product-img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.18);
  }

  .vh-mega-menu__product-img picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .vh-mega-menu__product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .vh-mega-menu__product-ph {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
  }

  .vh-mega-menu__product-title {
    font-weight: 800;
    font-size: 0.9rem;
    line-height: 1.1;
  }

  .vh-mega-menu__product-price {
    font-weight: 800;
    color: var(--vh-gold);
  }

  @media (max-width: 980px) {
    .vh-mega-menu__body {
      grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
    }

    .vh-mega-menu__products {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
}

.vh-lang-switch select {
  background: #181520;
  color: #fff;
  border-radius: 10px;
  border: 1px solid #272435;
  padding: 0.45rem 0.65rem;
}

a {
  color: var(--vh-dark);
  text-decoration: none;
}

a:hover {
  color: var(--vh-gold);
}

.vh-container {
  width: min(1280px, 96vw);
  margin: 0 auto;
}

.vh-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.vh-eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vh-olive);
  font-weight: 700;
  font-size: 0.78rem;
}

.vh-title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  letter-spacing: 0.01em;
  color: var(--vh-dark);
}

.vh-subtitle {
  margin: 0.35rem 0 0;
  color: #3a3646;
  max-width: 720px;
}

.vh-text-link {
  font-weight: 700;
  color: var(--vh-dark, #1b1a28);
  text-decoration: none;
}

.vh-text-link--light {
  color: var(--vh-color-text-invert, #ffffff);
}

.vh-text-link--light:hover {
  color: #fff;
}

.vh-breadcrumbs {
  margin: 0.35rem 0 0.65rem;
}

.vh-breadcrumbs-wrap {
  margin-top: 0.5rem;
}

.vh-breadcrumbs__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
  align-items: center;
  color: #5b5568;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.vh-breadcrumbs__item a {
  color: inherit;
}

.vh-breadcrumbs__item a:hover {
  color: var(--vh-gold);
}

.vh-breadcrumbs__sep {
  color: var(--vh-olive);
  opacity: 0.7;
}

.vh-button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  border: 2px solid var(--vh-cta-border, #ffffff);
  background: var(--vh-cta-bg, linear-gradient(#a5acb9, #1b1a28));
  color: var(--vh-cta-color, #ffffff);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.vh-button:hover {
  background: var(--vh-cta-hover-bg, linear-gradient(#8c9e6d, #8c9e6d));
  border-color: var(--vh-cta-hover-border, var(--vh-gold));
  color: var(--vh-cta-hover-color, var(--vh-cta-color, #ffffff));
  box-shadow: var(--vh-cta-hover-shadow, 0 12px 30px rgba(0, 0, 0, 0.25));
  transform: translateY(var(--vh-cta-hover-translate, -2px));
}

.vh-button--ghost {
  background: transparent;
  border-color: var(--vh-gold);
  color: var(--vh-gold);
}

.vh-button--ghost:hover {
  background: #f4efe7;
  color: var(--vh-dark);
}

.vh-button--secondary {
  background: var(--vh-color-bg-chip, rgba(27, 26, 40, 0.06));
  border-color: var(--vh-color-border-subtle, #e4d8c7);
  color: var(--vh-color-text-main, #1b1a28);
}

.vh-button--secondary:hover {
  background: #ffffff;
  border-color: var(--vh-gold);
  color: var(--vh-color-text-main, #1b1a28);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  transform: translateY(var(--vh-cta-hover-translate, -1px));
}

.vh-button--outline {
  background: transparent;
  border-color: var(--vh-color-border-subtle, #e4d8c7);
  color: var(--vh-color-text-main, #1b1a28);
}

.vh-button--outline:hover {
  background: rgba(27, 26, 40, 0.06);
  border-color: var(--vh-gold);
  color: var(--vh-color-text-main, #1b1a28);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  transform: translateY(var(--vh-cta-hover-translate, -1px));
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: #1a1626;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.15rem;
  padding: 0.75rem min(4vw, 24px);
}

.site-branding img {
  height: 50px;
  width: auto;
}

.site-nav .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.95rem;
  align-items: center;
  flex-wrap: wrap;
}

.site-nav a {
  color: #f5f5f7;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.32rem 0;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--vh-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after {
  transform: scaleX(1);
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-actions .vh-search {
  position: relative;
}

.site-actions input[type="search"] {
  background: #f6f2ea;
  border: 1px solid #d8d1c7;
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  color: var(--vh-dark);
  min-width: 220px;
  font-weight: 600;
}

.site-actions .woocommerce-product-search {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.site-actions .woocommerce-product-search button {
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #d8d1c7;
  background: linear-gradient(#a5acb9, #1b1a28);
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.site-actions input[type="search"]::placeholder {
  color: #706c77;
}

/* Hero */


.vh-home section {
  padding: clamp(1.75rem, 4vw, 3rem) 0;
}

.vh-hero__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

/* Category buttons */


/* Product grid */

.vh-content {
  color: #2c2732;
  line-height: 1.7;
}

.vh-content a {
  color: var(--vh-dark);
}

.vh-content h1,
.vh-content h2,
.vh-content h3,
.vh-content h4,
.vh-content h5 {
  font-family: var(--vh-font-heading);
  color: var(--vh-dark);
}

.vh-product-card .onsale {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--vh-gold);
  color: var(--vh-ink);
  font-weight: 800;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  z-index: 2;
  text-transform: uppercase;
}

.vh-product-card .star-rating {
  color: var(--vh-gold);
}

.woocommerce .products .product .price del {
  opacity: 0.7;
}

.woocommerce .products .product .price ins {
  color: var(--vh-color-accent-text, #a96400);
  font-weight: 800;
}

/* Promo banner */
.vh-banner {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin: 2rem 0 1.5rem;
  background: #1b1a28;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 210px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.vh-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 26, 40, 0.82), rgba(27, 26, 40, 0.25));
}

.vh-banner__content {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 2.8rem);
  max-width: 720px;
  color: #ffffff;
}

.vh-banner__title {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 5vw, 2.4rem);
  font-family: var(--vh-font-heading);
}

.vh-banner__text {
  margin: 0 0 1.1rem;
  color: #f2ede5;
}

.vh-404__icon {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.vh-404__search {
  margin-top: 1.35rem;
  max-width: 680px;
}

.vh-404 .vh-search-form {
  display: grid;
  grid-template-columns: minmax(110px, 0.9fr) minmax(160px, 2fr) minmax(110px, 0.8fr);
  align-items: stretch;
  gap: 0.5rem;
  background: rgba(var(--vh-home-search-bg-rgb, 255, 255, 255), var(--vh-home-search-bg-opacity, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.35rem;
}

/* Highlights */


/* Shop archive */
.vh-shop {
  background: #f6f2ea;
}

.vh-shop .vh-container {
  width: min(1220px, 96vw);
}

.vh-shop__hero {
  padding: 1.8rem 0 1.3rem;
  background: linear-gradient(180deg, #efeee3, #f8f5ec);
  color: #0f0f17;
  border-bottom: 1px solid #e4d8c7;
  position: relative;
  background-size: cover;
  background-position: center;
}

.vh-shop__hero--modern {
  padding: 2.2rem 0 1.6rem;
  background: linear-gradient(180deg, #efeee3, #f6f2ea);
  color: #0f0f17;
  border-bottom: 1px solid #e4d8c7;
}

.vh-shop__hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  align-items: center;
}

.vh-shop__hero-text .vh-title {
  margin: 0.15rem 0 0.4rem;
}

.vh-shop__usp {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.6rem 0 1rem;
}

.vh-shop__usp--bar {
  background: #fff;
  border: 1px solid #e4d8c7;
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.65rem;
}

.vh-usp-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: center;
}

.vh-usp-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f7f1e9;
  border: 1px solid #e4d8c7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.vh-usp-card strong {
  display: block;
  color: #1b1a28;
}

.vh-usp-card p {
  margin: 0;
  color: #4b4657;
  font-size: 0.95rem;
}

.vh-shop__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-top: 0.75rem;
}

.vh-shop__body {
  background: radial-gradient(circle at 18% 12%, rgba(254, 173, 82, 0.05), transparent 32%), radial-gradient(circle at 82% 18%, rgba(108, 93, 211, 0.05), transparent 30%), var(--vh-sand);
  padding: 0.5rem 0;
}

.vh-shop__toolbar {
  padding: 0.6rem 0.85rem;
  background: #ffffff;
  border: 1px solid #e4d8c7;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.vh-shop__chips {
  margin: 0.5rem 0 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.vh-shop__chips .vh-chip {
  background: #fff;
  border: 1px solid #e4d8c7;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.vh-shop__sidebar {
  background: linear-gradient(180deg, #ffffff, #fbf7f1);
  border: 1px solid #e4d8c7;
  border-radius: 14px;
  padding: 1.15rem;
  position: sticky;
  top: 96px;
  align-self: start;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
  max-height: calc(100vh - 140px);
  overflow: auto;
}

.vh-filter__close {
  display: none;
  margin-left: auto;
  margin-bottom: 0.5rem;
  border: 1px solid #d8cfc0;
  background: #f6f2ea;
  color: #1b1a28;
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
  cursor: pointer;
}

.vh-filters__overlay {
  display: none;
}

.vh-sidebar__block + .vh-sidebar__block {
  margin-top: 1rem;
}

.vh-sidebar__block h2,
.vh-sidebar__block h3 {
  margin: 0 0 0.5rem;
  font-family: var(--vh-font-heading);
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #1b1a28;
}

.vh-sidebar__block form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.vh-sidebar__block .search-field,
.vh-sidebar__block input[type="text"],
.vh-sidebar__block input[type="search"],
.vh-sidebar__block select {
  background: #ffffff;
  border: 1px solid #e4d8c7;
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  font-weight: 700;
  color: #1b1a28;
}

.vh-sidebar__block button,
.vh-sidebar__block input[type="submit"] {
  background: linear-gradient(#a5acb9, #1b1a28);
  color: #ffffff;
  border: 1px solid #1b1a28;
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

.vh-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}

.vh-sidebar__list--sub {
  padding-left: 0.9rem;
  margin-top: 0.25rem;
  gap: 0.2rem;
}

.vh-sidebar__list a {
  display: block;
  padding: 0.3rem 0.15rem;
  border-radius: 6px;
  background: transparent;
  border: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1b1a28;
  position: relative;
}

.vh-sidebar__list a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.vh-sidebar__count {
  margin-left: auto;
  padding: 0.05rem 0.45rem;
  border-radius: 999px;
  background: #f7f1e9;
  border: 1px solid #e4d8c7;
  font-size: 0.8rem;
  font-weight: 800;
  color: #6c6474;
}

.vh-sidebar__list a:hover {
  color: #0f0f17;
  text-decoration: underline;
}

.vh-sidebar__list a.is-active {
  text-decoration: underline;
}

.vh-sidebar__list a::before {
  content: "›";
  display: inline-block;
  margin-right: 0;
  color: #c2b6a6;
}

.vh-sidebar__list--sub a {
  font-weight: 600;
}

.vh-shop__sidebar .woocommerce-widget-layered-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.vh-shop__sidebar .woocommerce-widget-layered-nav-list__item a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #e4d8c7;
  background: #ffffff;
  color: #1b1a28;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.vh-shop__sidebar .woocommerce-widget-layered-nav-list__item a:hover {
  transform: translateY(-1px);
  border-color: var(--vh-gold);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
}

.vh-shop__sidebar .woocommerce-widget-layered-nav-list__item--chosen a {
  background: linear-gradient(120deg, #f2b35c, #1b1a28);
  border-color: #1b1a28;
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
}

.vh-shop__sidebar .woocommerce-widget-layered-nav-list__item.chosen a {
  background: linear-gradient(120deg, #f2b35c, #1b1a28);
  border-color: #1b1a28;
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
}

.vh-shop__sidebar .woocommerce-widget-layered-nav-list__item .count {
  margin-left: 0.1rem;
  font-weight: 700;
  opacity: 0.7;
}

.vh-shop--modern .vh-shop__content {
  background: linear-gradient(180deg, #ffffff, #fbf7f1);
  border: 1px solid #e4d8c7;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.06);
}

.price_slider_wrapper .ui-widget-content {
  background: #e6dbcf;
  border-radius: 999px;
  height: 12px;
  border: none;
}

.price_slider_wrapper .price_slider {
  display: block;
  margin: 0.35rem 0 0.55rem;
  width: 100%;
  position: relative;
  height: 12px;
}

.price_slider_wrapper .ui-slider-range {
  background: linear-gradient(120deg, #f2b35c, #1b1a28);
  border-radius: 999px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.price_slider_wrapper .ui-slider-handle {
  width: 20px;
  height: 20px;
  background: #fffaf3;
  border: 2px solid #1b1a28;
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  position: absolute;
  display: block;
}

.price_slider_wrapper .ui-slider-horizontal .ui-slider-handle {
  margin-left: 0;
}

.price_slider_amount {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
  font-weight: 700;
  color: #1b1a28;
  font-size: 0.95rem;
}

.price_slider_amount input[type="text"] {
  width: 100%;
  background: #fff;
  border: 1px solid #e4d8c7;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  font-weight: 700;
  text-align: center;
}

.price_slider_amount .button {
  grid-column: span 2;
  background: linear-gradient(#a5acb9, #1b1a28);
  color: #fff;
  border: 1px solid #1b1a28;
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
}

.price_slider_amount .price_label {
  display: none;
}

.vh-active-filters {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.vh-active-filters__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem;
  border-radius: 10px;
  background: #f6f2ea;
  border: 1px solid #e4d8c7;
  font-weight: 700;
}

.vh-empty-filters {
  margin: 0;
  color: #6b6258;
}

.widget_layered_nav_filters ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.widget_layered_nav_filters a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  border: 1px solid #d9cec0;
  padding: 0.35rem 0.55rem;
  border-radius: 10px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .vh-shop__layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .vh-shop__layout > * {
    min-width: 0;
  }
  .vh-shop__content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .vh-shop__content ul.products {
    width: 100%;
    max-width: 100%;
  }
  .vh-shop__sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    max-width: 320px;
    width: 86vw;
    top: 0;
    transform: translateX(-110%);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 150;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 14px 22px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    height: 100vh;
    padding-top: 1.25rem;
  }
  .vh-filter__close {
    display: inline-flex;
  }
  .vh-filters__overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 10, 18, 0.62);
    z-index: 140;
  }
  body.vh-filters-open .vh-filters__overlay {
    display: block;
  }
  body.vh-filters-open .vh-shop__sidebar {
    transform: translateX(0);
  }
  .vh-shop__content {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 900px) {
  .vh-cat-intro {
    grid-template-columns: 1fr;
  }
  .vh-cat-intro__media img {
    max-height: 220px;
  }
}

.vh-shop__body {
  padding: 1rem 0 2.2rem;
  background: #f6f2ea;
}

.vh-shop__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.35rem 0 1rem;
  padding: 0.35rem 0 0.15rem;
}

.vh-cat-intro {
  margin: 0 0 1rem;
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid #e4d8c7;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.vh-cat-intro__media img {
  width: 100%;
  height: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #e4d8c7;
}

.vh-cat-intro__body .vh-subtitle {
  margin: 0.2rem 0 0;
  color: #3a3646;
}

.vh-title-sm {
  margin: 0.1rem 0 0.35rem;
  font-family: var(--vh-font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: #1b1a28;
}

.vh-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #e4d8c7;
  background: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1b1a28;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.vh-chip:hover {
  border-color: var(--vh-gold);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.vh-shop__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e4d8c7;
  border-radius: 12px;
  padding: 0.75rem 0.95rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.vh-toolbar__left,
.vh-toolbar__right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.vh-toolbar__views {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-right: 0.25rem;
}

.vh-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #e4d8c7;
  background: #f7f1e9;
  color: #1b1a28;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: all 0.18s ease;
}

.vh-view-btn.is-active {
  background: linear-gradient(120deg, #f2b35c, #1b1a28);
  border-color: #1b1a28;
  color: #fff;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
}

.vh-view-btn:hover {
  transform: translateY(-1px);
  border-color: var(--vh-gold);
}

.vh-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #1b1a28;
  color: #fff;
  border: 1px solid #1b1a28;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
}

.vh-filter-toggle:hover {
  background: var(--vh-gold);
  color: #1b1a28;
}

.vh-shop__pagination {
  margin-top: 1.25rem;
}

.vh-shop .vh-product-grid {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.vh-shop .woocommerce-result-count {
  color: #3a3646;
  font-weight: 700;
}

.vh-shop .woocommerce-ordering select {
  background: #f6f2ea;
  border: 1px solid #d8d1c7;
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  font-weight: 700;
  color: var(--vh-dark);
  min-width: 170px;
}

.vh-shop__toolbar .woocommerce-ordering {
  margin: 0;
}

.vh-shop .woocommerce-result-count {
  margin: 0;
}

body.woocommerce-shop,
body.post-type-archive-product,
body.tax-product_cat,
body.tax-product_tag,
body.single-product {
  --vh-product-card-cta-bg: var(--vh-shop-product-card-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28)));
  --vh-product-card-cta-color: var(--vh-shop-product-card-cta-color, var(--vh-cta-color, #ffffff));
  --vh-product-card-cta-border: var(--vh-shop-product-card-cta-border, var(--vh-cta-border, #1b1a28));
  --vh-product-card-cta-hover-bg: var(--vh-shop-product-card-cta-hover-bg, var(--vh-cta-hover-bg, linear-gradient(120deg, var(--vh-color-accent-gold, #fead52) 0%, #1b1a28 100%)));
  --vh-product-card-cta-hover-color: var(--vh-shop-product-card-cta-hover-color, var(--vh-cta-hover-color, #ffffff));
  --vh-product-card-cta-hover-border: var(--vh-shop-product-card-cta-hover-border, var(--vh-cta-hover-border, #1b1a28));
}

.vh-shop .vh-product-card {
  border-radius: 12px;
}

.vh-shop__content ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 28px !important;
  padding: 0;
}

@media (max-width: 560px) {
  body.post-type-archive-product .vh-shop__content ul.products,
  body.tax-product_cat .vh-shop__content ul.products,
  body.tax-product_tag .vh-shop__content ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: var(--vh-gap, 12px) !important;
  }

  body.post-type-archive-product .vh-shop__content ul.products li.product,
  body.tax-product_cat .vh-shop__content ul.products li.product,
  body.tax-product_tag .vh-shop__content ul.products li.product {
    min-width: 0;
  }

  body.post-type-archive-product .vh-shop__content ul.products img,
  body.tax-product_cat .vh-shop__content ul.products img,
  body.tax-product_tag .vh-shop__content ul.products img {
    max-width: 100%;
    height: auto;
  }
}

body.vh-view-slide .vh-shop__content ul.products {
  grid-template-columns: 1fr !important;
}

@media (max-width: 768px) {
  .vh-product-card--slide {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .vh-product-card--slide .vh-product-card__thumb {
    min-height: 180px;
  }
}

.vh-product-single {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto 2rem;
}

/* PDP (single product) — staging-inspired layout */
.single-product .vh-pdp__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 2.25rem;
  align-items: start;
}

.single-product .vh-pdp__grid > * {
  min-width: 0;
}

@media (max-width: 900px) {
  .single-product .vh-pdp__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.single-product .vh-pdp__gallery {
  background: #ffffff;
  border: 1px solid #e1d8cb;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.single-product .vh-pdp__gallery .woocommerce-product-gallery {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

@media (min-width: 901px) {
  .single-product .vh-pdp__gallery .woocommerce-product-gallery {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 0.95rem;
    align-items: start;
  }

  .single-product .vh-pdp__gallery .woocommerce-product-gallery .flex-viewport {
    grid-column: 2;
    grid-row: 1;
  }

  .single-product .vh-pdp__gallery .woocommerce-product-gallery .flex-control-nav {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
  }
}

.single-product .vh-pdp__gallery .woocommerce-product-gallery__trigger {
  display: none !important;
}

.single-product .vh-pdp__gallery .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  cursor: zoom-in;
}

.single-product .vh-pdp__gallery .woocommerce-product-gallery .flex-viewport {
  width: 100% !important;
}

.single-product .vh-pdp__gallery .woocommerce-product-gallery .flex-control-nav img {
  padding: 0;
  background: #ffffff;
}

.single-product .vh-pdp__gallery .woocommerce-product-gallery .flex-viewport img {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.single-product .vh-pdp__summary {
  min-width: 0;
}

.single-product .vh-pdp__summary {
  background: #ffffff;
  border: 1px solid #e1d8cb;
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

@media (max-width: 900px) {
  .single-product .vh-pdp__summary {
    padding: 1rem;
  }
}

.single-product .vh-pdp__summary .product_title {
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.single-product .vh-pdp__summary .woocommerce-product-details__short-description {
  background: transparent;
  border: 0;
  padding: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.vh-pdp-stock {
  margin: 0.35rem 0 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.vh-pdp-info-bar,
.vh-pdp-trust {
  gap: 0.6rem;
}

.vh-pdp-assurance {
  margin: 1.75rem 0 1.25rem;
}

.vh-pdp-assurance__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.vh-pdp-assurance .vh-card-feature__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.single-product .vh-pdp__details {
  margin-top: 1.75rem;
}

.single-product .vh-pdp__details .woocommerce-tabs ul.tabs {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  border-bottom: 1px solid #e1d8cb;
}

.single-product .vh-pdp__details .woocommerce-tabs ul.tabs::before,
.single-product .vh-pdp__details .woocommerce-tabs ul.tabs::after {
  display: none;
}

.single-product .vh-pdp__details .woocommerce-tabs ul.tabs li {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
}

.single-product .vh-pdp__details .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 0.75rem 0;
  color: #3a3646;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.02em;
  border-bottom: 2px solid transparent;
}

.single-product .vh-pdp__details .woocommerce-tabs ul.tabs li.active a {
  color: #1b1a28;
  border-bottom-color: var(--vh-gold);
}

.single-product .vh-pdp__details .woocommerce-tabs .panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin-top: 1rem;
}

/* Native variation table */
.vh-variation-table-block {
  margin: 1rem 0 1.5rem;
}

.vh-variation-table-wrap {
  width: 100%;
  margin: 0.5rem 0 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--vh-radius-lg);
  border: 1px solid var(--vh-color-border-subtle, #e6ddcf);
  background: var(--vh-color-bg-surface-alt, #f4eee5);
  box-shadow: var(--vh-shadow-soft);
  overflow-x: auto;
  box-sizing: border-box;
  max-width: 100%;
}

.vh-variation-table-wrap::-webkit-scrollbar {
  height: 8px;
}

.vh-variation-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(27, 26, 40, 0.22);
  border-radius: 999px;
}

.vh-variation-filter {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.65rem;
  flex-wrap: wrap;
}

.vh-variation-filter label {
  font-weight: var(--vh-weight-semibold, 600);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vh-color-text-main, #1b1a28);
}

.vh-variation-filter select {
  border: 1px solid var(--vh-color-border-subtle, #d8cfc0);
  border-radius: var(--vh-radius-md);
  padding: 0.6rem 0.85rem;
  background: var(--vh-color-bg-surface, #ffffff);
  color: var(--vh-color-text-main, #1b1a28);
  min-height: 44px;
  font-weight: var(--vh-weight-semibold, 600);
  box-shadow: inset 0 1px 0 rgba(27, 26, 40, 0.04);
}

.vh-variation-filter select:focus-visible {
  outline: 2px solid var(--vh-color-accent-gold, #fead52);
  outline-offset: 2px;
}

.vh-variation-table {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border-collapse: collapse;
  background: var(--vh-color-bg-surface, #fff);
  border: 1px solid var(--vh-color-border-subtle, #e6ddcf);
  border-radius: var(--vh-radius-lg);
  box-shadow: var(--vh-shadow-soft);
  overflow: hidden;
  box-sizing: border-box;
}

.vh-variation-table thead th {
  background: var(--vh-color-bg-surface-alt, #f4eee5);
  color: var(--vh-color-text-main, #1b1a28);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: var(--vh-weight-semibold, 600);
  padding: 0.85rem 0.95rem;
  border-bottom: 1px solid var(--vh-color-border-subtle, #e6ddcf);
  white-space: nowrap;
  font-size: 0.85rem;
}

.vh-variation-table tbody td {
  padding: 0.75rem 0.95rem;
  border-bottom: 1px solid #eee4d7;
  color: var(--vh-color-text-main, #1f1d2a);
  vertical-align: middle;
  font-size: 0.95rem;
}

.vh-variation-table tbody tr:nth-child(even) {
  background: #fbf8f3;
}

.vh-variation-table tbody tr:hover {
  background: #f6efe5;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.03);
}

.vh-variation-table__price {
  font-weight: var(--vh-weight-semibold, 600);
  white-space: nowrap;
  text-align: right;
  color: var(--vh-color-text-main);
}

.vh-variation-table__sku {
  font-size: 0.9rem;
  color: #5a4f44;
}

.vh-variation-table__qty input[type="number"] {
  width: 88px;
  padding: 0.5rem 0.4rem;
  border: 1px solid var(--vh-color-border-subtle, #d8cfc0);
  border-radius: var(--vh-radius-md);
  font-weight: 700;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06);
  background: var(--vh-color-bg-surface, #fffdf8);
}

.vh-variation-table__cta {
  text-align: right;
  vertical-align: middle;
  white-space: nowrap;
}

.vh-variation-table__cta .vh-var-add.button {
  background: var(--vh-pdp-variation-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #a5acb9 0%, #1b1a28 100%)));
  color: var(--vh-pdp-variation-cta-color, var(--vh-cta-color, #ffffff));
  border: 1px solid var(--vh-pdp-variation-cta-border, var(--vh-cta-border, #1b1a28));
  padding: 0.55rem 0.95rem;
  border-radius: var(--vh-radius-md);
  font-weight: var(--vh-weight-semibold, 600);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-width: 0;
  max-width: 150px;
  box-sizing: border-box;
}

/* Prevent page-level horizontal overflow from variation table */
.vh-variation-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

/* Allow table to size its own columns naturally */
.vh-variation-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

/* Base cells for variation table */
.vh-variation-table th,
.vh-variation-table td {
  padding: 0.75rem 1rem;
  vertical-align: middle;
  box-sizing: border-box;
  white-space: nowrap;
}

/* First column should wrap naturally at spaces */
.vh-variation-table th:first-child,
.vh-variation-table td:first-child {
  white-space: normal;
  word-break: normal;
}

/* Price & quantity columns: right-aligned, natural sizing */
.vh-variation-table th:nth-child(3),
.vh-variation-table td:nth-child(3),
.vh-variation-table th:nth-child(4),
.vh-variation-table td:nth-child(4) {
  text-align: right;
}

/* Last column (Add to cart): right-aligned, no forced width */
.vh-variation-table th:last-child,
.vh-variation-table td:last-child {
  text-align: right;
  white-space: nowrap;
}

/* Buttons in the variation table should be capped so they don’t force overflow */
.vh-variation-table td:last-child .single_add_to_cart_button,
.vh-variation-table td:last-child .vh-var-add.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
  line-height: 1.2;
  min-width: 0;
  max-width: 120px;
  white-space: nowrap;
  box-sizing: border-box;
}

.vh-variation-table__cta .vh-var-add.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
  background: var(--vh-pdp-variation-cta-hover-bg, var(--vh-cta-hover-bg, linear-gradient(120deg, var(--vh-color-accent-gold, #fead52) 0%, #1b1a28 100%)));
  border-color: var(--vh-pdp-variation-cta-hover-border, var(--vh-pdp-variation-cta-border, var(--vh-cta-border, #1b1a28)));
  color: var(--vh-pdp-variation-cta-hover-color, var(--vh-pdp-variation-cta-color, var(--vh-cta-color, #ffffff)));
}

.vh-variation-table__cta .vh-var-add.button:focus-visible {
  outline: 2px solid var(--vh-color-accent-gold, #fead52);
  outline-offset: 2px;
}

.vh-var-out {
  color: #8a2b2b;
  font-weight: var(--vh-weight-semibold, 600);
  display: inline-block;
  padding: 0.35rem 0.55rem;
}

.vh-variation-table__empty {
  padding: 0.9rem;
  border: 1px solid var(--vh-color-border-subtle, #e4d8c7);
  border-radius: var(--vh-radius-md);
  background: #fdf8f0;
}

.vh-variation-table .vh-var-add[disabled],
.vh-variation-table .vh-var-add[aria-busy="true"] {
  opacity: 0.65;
  cursor: not-allowed;
}

.vh-variation-row.is-filtered-out {
  display: none;
}

.vh-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  font-weight: var(--vh-weight-semibold, 600);
  border: 1px solid #e4d8c7;
  background: #f9f4ea;
}

.vh-stock-badge.in-stock {
  color: #1f7a3d;
  border-color: #c8e6c9;
  background: #f0fff2;
}

.vh-stock-badge.out-of-stock {
  color: #9b2c2c;
  border-color: #f2c7c7;
  background: #fff2f2;
}

@media (max-width: 900px) {
  .vh-variation-table {
    min-width: 0;
  }
  .vh-variation-table thead th {
    font-size: 0.82rem;
  }
  .vh-variation-table tbody td {
    font-size: 0.9rem;
  }
}

@media (max-width: 540px) {
  .vh-variation-table-wrap {
    margin-inline: -10px;
    padding-inline: 12px;
  }
  .vh-variation-table {
    min-width: 0;
  }
}

@media (max-width: 900px) {
  
}

.vh-size-guide {
  position: fixed;
  inset: 0;
  background: rgba(16, 15, 23, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 180;
}

.vh-size-guide.is-open {
  opacity: 1;
  pointer-events: all;
}

.vh-size-guide__content {
  background: #ffffff;
  padding: 1.25rem;
  max-width: 620px;
  width: min(620px, 96vw);
  border-radius: 14px;
  position: relative;
  border: 1px solid #e4d8c7;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}

.vh-size-guide__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: #f6f2ea;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  font-size: 1.1rem;
  cursor: pointer;
}

.vh-size-guide__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.vh-size-guide__table th,
.vh-size-guide__table td {
  border: 1px solid #e4d8c7;
  padding: 0.55rem 0.65rem;
  text-align: left;
}

.vh-size-guide__trigger {
  margin: 0.5rem 0;
  border: 1px solid #d8cfc0;
  background: #f6f2ea;
  color: #1b1a28;
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
  cursor: pointer;
}


/* Sticky ATC (toggle via body class) */
.vh-sticky-atc {
  position: fixed;
  left: 50%;
  bottom: 0;
  width: min(1200px, calc(100% - 32px));
  transform: translate(-50%, 120%);
  background: #1b1a28;
  color: #fff;
  border: 1px solid #2c2838;
  border-radius: 16px;
  padding: 0.75rem 1rem;
  display: none;
  align-items: center;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
  z-index: 1200;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease;
}

.vh-sticky-atc-enabled .vh-sticky-atc {
  display: flex;
}

.single-product .product {
  padding-bottom: 140px;
}

.vh-sticky-atc.is-visible {
  transform: translate(-50%, 0);
  bottom: 0;
}

.vh-sticky-atc__price {
  color: var(--vh-gold);
  font-weight: 800;
}

.vh-sticky-atc__variations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem 0.75rem;
}

.vh-sticky-atc__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  border-radius: 10px;
  background: #14121f;
  border: 1px solid #2c2838;
  padding: 0.2rem 0.35rem;
}

.vh-sticky-variation {
  display: grid;
  gap: 0.25rem;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}

.vh-sticky-variation__label {
  opacity: 0.85;
}

.vh-sticky-variation__control select {
  background: #181520;
  color: #fff;
  border: 1px solid #2c2838;
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  min-width: 140px;
}

.vh-sticky-variation__reset {
  background: transparent;
  border: 1px dashed #625a7a;
  color: #dcd7f3;
  border-radius: 10px;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
  font-weight: 700;
}

.vh-sticky-atc__qty {
  width: 72px;
  border: none;
  background: transparent;
  color: #fff;
  padding: 0.45rem 0.5rem;
  font-weight: 700;
  text-align: center;
}

.vh-sticky-qty-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 900;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.vh-sticky-qty-btn:hover {
  background: #1f1a2a;
}

.vh-sticky-atc__submit {
  background: var(--vh-pdp-add-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28)));
  color: var(--vh-pdp-add-cta-color, var(--vh-cta-color, #ffffff));
  border: 1px solid var(--vh-pdp-add-cta-border, var(--vh-cta-border, #1b1a28));
  border-radius: 10px;
  padding: 0.6rem 1rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  min-width: 140px;
}

.vh-sticky-atc__submit:hover {
  background: var(--vh-pdp-add-cta-hover-bg, var(--vh-pdp-add-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28))));
  border-color: var(--vh-pdp-add-cta-hover-border, var(--vh-pdp-add-cta-border, var(--vh-cta-border, #1b1a28)));
  color: var(--vh-pdp-add-cta-hover-color, var(--vh-pdp-add-cta-color, var(--vh-cta-color, #ffffff)));
}

@media (max-width: 640px) {
  .vh-sticky-atc {
    width: calc(100% - 20px);
    padding: 0.6rem 0.75rem 0.75rem;
  }
  
  
}
.vh-reassure {
  background: var(--vh-sand);
  border-top: 1px solid #e4d8c7;
  border-bottom: 1px solid #e4d8c7;
  padding: 1.4rem min(4vw, 24px);
}

.vh-reassure__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.vh-reassure__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e4d8c7;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.vh-reassure__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--vh-ink);
  color: var(--vh-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vh-reassure__icon svg {
  width: 22px;
  height: 22px;
}

.vh-reassure__title {
  margin: 0 0 0.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.vh-reassure__body {
  margin: 0;
  color: #4b4657;
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: #1c1726;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem min(4vw, 24px);
  color: #f6f2ea;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.site-footer nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.site-footer nav a {
  color: #f6f2ea;
}

.site-footer nav a:hover {
  color: var(--vh-gold);
}

.vh-footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .site-actions {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  
}

@media (max-width: 640px) {
  .site-nav .menu {
    flex-wrap: wrap;
    gap: 0.65rem;
  }


}

/* WooCommerce tweaks */
.woocommerce nav.woocommerce-pagination {
  text-align: center;
  margin-top: 1.3rem;
  margin-bottom: 1rem;
}

.woocommerce nav.woocommerce-pagination ul {
  border: none;
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  max-width: 100%;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  background: #ffffff;
  color: var(--vh-dark);
  border: 1px solid #e1d8cb;
  padding: 0.6rem 0.95rem;
  border-radius: 12px;
  min-width: 44px;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
  border-color: var(--vh-gold);
  color: #1b1a28;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.09);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: linear-gradient(120deg, #f2b35c, #1b1a28);
  color: #ffffff;
  border-color: #1b1a28;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
}

.woocommerce nav.woocommerce-pagination ul li .next,
.woocommerce nav.woocommerce-pagination ul li .prev {
  font-size: 0.9rem;
}

.woocommerce .products .product:not(.vh-product-card) {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.woocommerce div.product {
  color: var(--vh-dark);
  background: #ffffff;
  border: 1px solid #e1d8cb;
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.woocommerce div.product.vh-product-single {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.woocommerce div.product .product_title {
  font-family: var(--vh-font-heading);
  color: var(--vh-dark);
  margin-top: 0;
  letter-spacing: 0.01em;
}

.woocommerce div.product .price {
  font-weight: 800;
}

.woocommerce div.product .woocommerce-product-rating {
  display: flex;
  gap: 0.5rem;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: #3a3646;
  line-height: 1.7;
  background: #f7f1e9;
  border: 1px solid #e1d8cb;
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background: #fff8ee;
  border-color: #f1d2a8;
  color: var(--vh-dark);
  border-radius: 10px;
  padding: 0.85rem 1rem;
}

.vh-product-summary {
  background: #ffffff;
  border: 1px solid #e1d8cb;
  border-radius: 14px;
  padding: 1.25rem;
  display: grid;
  gap: 0.75rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 28px;
  min-width: 0;
}

.single-product .vh-product-summary .product_title,
.single-product .vh-product-summary .woocommerce-product-details__short-description {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.single-product .vh-pdp__summary form.cart {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.single-product .vh-pdp__summary form.cart table.variations {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: collapse;
}

.single-product .vh-pdp__summary form.cart table.variations tbody {
  display: block;
}

.single-product .vh-pdp__summary form.cart table.variations tr {
  display: block;
  margin: 0 0 0.85rem;
}

.single-product .vh-pdp__summary form.cart table.variations td {
  padding: 0;
}

.single-product .vh-pdp__summary form.cart table.variations td.label {
  display: block;
  margin: 0 0 0.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1b1a28;
  text-transform: none;
}

.single-product .vh-pdp__summary form.cart table.variations td.value {
  display: block;
}

.single-product .vh-pdp__summary form.cart .variations select,
.single-product .vh-pdp__summary form.cart .variations select:focus {
  width: 100%;
  border: 1px solid #d9cec0;
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  background: #ffffff;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  min-width: 0;
}

.single-product .vh-pdp__summary form.cart .reset_variations {
  font-size: 0.9rem;
  color: #8c7b67;
  margin-top: 0.4rem;
  display: inline-block;
}

.single-product .vh-pdp__summary form.cart .single_variation_wrap {
  display: grid;
  gap: 0.75rem;
}

.single-product .vh-pdp__summary form.cart .woocommerce-variation {
  display: grid;
  gap: 0.25rem;
}

.single-product .vh-pdp__summary form.cart .woocommerce-variation-price,
.single-product .vh-pdp__summary form.cart .woocommerce-variation-availability {
  font-weight: 700;
  color: #1b1a28;
}

.single-product .vh-pdp__summary form.cart .woocommerce-variation-add-to-cart {
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.single-product .vh-pdp__summary form.variations_form .woocommerce-variation-add-to-cart.woocommerce-variation-add-to-cart-disabled {
  display: none;
}

.single-product .vh-pdp__summary form.variations_form .woocommerce-variation-add-to-cart.woocommerce-variation-add-to-cart-enabled {
  display: flex;
}

.single-product .vh-pdp__summary form.cart .quantity {
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  width: 140px;
  min-height: 48px;
  border: 1px solid #d8cfc0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.single-product .vh-pdp__summary form.cart .quantity input.qty {
  border: none;
  border-left: 1px solid #e4d8c7;
  border-right: 1px solid #e4d8c7;
  padding: 0.7rem 0.75rem;
  font-size: 1rem;
  font-weight: 800;
  max-width: none;
  background: #fff;
  text-align: center;
  height: 100%;
  min-width: 62px;
  flex: 1 1 62px;
}

.single-product .vh-pdp__summary form.cart .vh-qty-btn {
  background: #f6f2ea;
  border: none;
  padding: 0.7rem 0.85rem;
  font-weight: 900;
  font-size: 1.1rem;
  cursor: pointer;
  color: #1b1a28;
  transition: background 0.15s ease;
  min-width: 42px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.single-product .vh-pdp__summary form.cart .vh-qty-btn:hover {
  background: #e9e1d6;
}

.single-product .vh-pdp__summary form.cart .single_add_to_cart_button,
.single-product .vh-pdp__summary form.cart .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.4rem;
  border-radius: 14px;
  border: 1px solid var(--vh-pdp-add-cta-border, var(--vh-cta-border, #1b1a28));
  background: var(--vh-pdp-add-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28)));
  color: var(--vh-pdp-add-cta-color, var(--vh-cta-color, #ffffff));
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-align: center;
  min-width: 200px;
  min-height: 48px;
  flex: 1 1 220px;
}

.single-product .vh-pdp__summary form.cart .single_add_to_cart_button:hover,
.single-product .vh-pdp__summary form.cart .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
  background: var(--vh-pdp-add-cta-hover-bg, var(--vh-pdp-add-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28))));
  border-color: var(--vh-pdp-add-cta-hover-border, var(--vh-pdp-add-cta-border, var(--vh-cta-border, #1b1a28)));
  color: var(--vh-pdp-add-cta-hover-color, var(--vh-pdp-add-cta-color, var(--vh-cta-color, #ffffff)));
  filter: brightness(1.05);
}

.single-product .vh-pdp__summary form.cart .woocommerce-variation-description p {
  margin: 0;
}

@media (max-width: 540px) {
  .single-product .vh-pdp__summary form.cart .woocommerce-variation-add-to-cart {
    flex-direction: column;
    align-items: stretch;
  }

  .single-product .vh-pdp__summary form.cart .quantity {
    width: 100%;
  }

  .single-product .vh-pdp__summary form.cart .single_add_to_cart_button,
  .single-product .vh-pdp__summary form.cart .button {
    width: 100%;
    min-width: 0;
  }
}

.vh-stock.in-stock {
  color: #2d7a46;
}

.vh-stock.out-of-stock {
  color: #a12d2d;
}

.single-product .woocommerce-product-gallery ol.flex-control-nav li {
  list-style: none;
}

.single-product .woocommerce-product-gallery ol.flex-control-nav li img {
  border-radius: 10px;
  border: 2px solid transparent;
  opacity: 0.8;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.single-product .woocommerce-product-gallery ol.flex-control-nav li img.flex-active,
.single-product .woocommerce-product-gallery ol.flex-control-nav li img:hover {
  border-color: var(--vh-gold);
  opacity: 1;
}

.single-product .woocommerce-product-gallery ol.flex-control-nav li::before {
  display: none !important;
}

.single-product .flex-control-paging,
.single-product .woocommerce-product-gallery__wrapper .flex-control-paging {
  display: none !important;
}

.single-product .woocommerce-Reviews-title,
.single-product #reviews h2 {
  font-family: var(--vh-font-heading);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.single-product #reviews {
  background: #f7f1e9;
  border: 1px solid #e1d8cb;
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 0.8rem;
}

.single-product #reviews #comments ol.commentlist {
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.single-product #reviews #comments ol.commentlist li {
  border: none;
}

.single-product #reviews #comments li .comment-text {
  background: #ffffff;
  border: 1px solid #e1d8cb;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 0.3rem;
}

.single-product #reviews #comments li .meta {
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1b1a28;
}

.single-product #reviews #comments .star-rating {
  color: var(--vh-gold);
}

.single-product #reviews .comment-reply-title {
  font-family: var(--vh-font-heading);
  letter-spacing: 0.02em;
}

.single-product #review_form_wrapper {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid #e1d8cb;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.single-product #review_form_wrapper input[type="text"],
.single-product #review_form_wrapper input[type="email"],
.single-product #review_form_wrapper textarea {
  width: 100%;
  border: 1px solid #d9cec0;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  background: #f7f1e9;
}

.single-product #review_form_wrapper input[type="submit"] {
  margin-top: 0.5rem;
  background: linear-gradient(120deg, #f2b35c, #1b1a28);
  border: 1px solid #1b1a28;
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.woocommerce div.product .summary .product_title {
  margin-bottom: 0.35rem;
}

.woocommerce div.product .summary .price {
  color: var(--vh-color-accent-text, #a96400);
  font-size: 1.6rem;
}

.woocommerce div.product .product_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: #3a3646;
  border-top: 1px solid #e1d8cb;
  margin-top: 1rem;
  padding-top: 0.75rem;
}

.woocommerce div.product .product_meta a {
  color: var(--vh-dark);
  font-weight: 700;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
  border: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: #f6f2ea;
  border: 1px solid #e1d8cb;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 0.65rem 0.9rem;
  color: var(--vh-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-color: var(--vh-gold);
  background: #fff3e0;
}

.woocommerce div.product .woocommerce-tabs .panel {
  background: #ffffff;
  border: 1px solid #e1d8cb;
  border-radius: 10px;
  padding: 1rem;
  margin-top: 0.75rem;
}

.woocommerce div.product .woocommerce-tabs .vh-faq__title {
  margin: 0 0 0.35rem;
  font-family: var(--vh-font-heading);
  letter-spacing: 0.01em;
}

.woocommerce div.product .woocommerce-tabs .vh-faq__subtitle {
  margin: 0 0 1rem;
  color: #3a3646;
}

.woocommerce div.product .woocommerce-tabs .vh-faq__items {
  display: grid;
  gap: 0.65rem;
}

.woocommerce div.product .woocommerce-tabs .vh-faq__item {
  border: 1px solid #e1d8cb;
  border-radius: 10px;
  background: #f6f2ea;
  overflow: hidden;
}

.woocommerce div.product .woocommerce-tabs .vh-faq__summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--vh-dark);
}

.woocommerce div.product .woocommerce-tabs .vh-faq__summary::-webkit-details-marker {
  display: none;
}

.woocommerce div.product .woocommerce-tabs .vh-faq__summary::after {
  content: "▾";
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.2s ease;
  opacity: 0.75;
}

.woocommerce div.product .woocommerce-tabs details[open] > .vh-faq__summary::after {
  transform: rotate(-180deg);
}

.woocommerce div.product .woocommerce-tabs .vh-faq__answer {
  padding: 0 0.9rem 0.9rem;
  border-top: 1px solid #e1d8cb;
  color: #3a3646;
}

.woocommerce div.product .woocommerce-tabs .table_div {
  border: 1px solid #e1d8cb;
  border-radius: 12px;
  background: #fbf8f2;
  padding: 0.95rem;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.04);
}

.woocommerce div.product .woocommerce-tabs .table_div + .table_div {
  margin-top: 1rem;
}

.woocommerce div.product .woocommerce-tabs .table_div h2,
.woocommerce div.product .woocommerce-tabs .table_div h3,
.woocommerce div.product .woocommerce-tabs .table_div h4,
.woocommerce div.product .woocommerce-tabs .table_div h5,
.woocommerce div.product .woocommerce-tabs .table_div h6 {
  margin: 0 0 0.45rem;
  font-family: var(--vh-font-heading);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.woocommerce div.product .woocommerce-tabs .table_div p:last-child {
  margin-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs .additional-information-table {
  width: 100%;
  margin: 0.65rem 0 0;
  border-radius: 12px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.04);
}

.woocommerce div.product .woocommerce-tabs .additional-information-table + .additional-information-table {
  margin-top: 0.85rem;
}

.woocommerce div.product .woocommerce-tabs .additional-information-table .additional-information-table-cell {
  padding: 0.8rem 0.85rem;
  vertical-align: top;
  word-break: break-word;
  border-bottom: 1px solid #e1d8cb;
  border-right: 1px solid #e1d8cb;
  background: #ffffff;
}

.woocommerce div.product .woocommerce-tabs .additional-information-table .additional-information-table-row:last-child .additional-information-table-cell {
  border-bottom: none;
}

.woocommerce div.product .woocommerce-tabs .additional-information-table .additional-information-table-cell:last-child {
  border-right: none;
}

.woocommerce div.product .woocommerce-tabs .additional-information-table .additional-information-table-cell.left-cell {
  width: 36%;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: #f6f2ea;
  color: var(--vh-dark);
}

.woocommerce div.product .woocommerce-tabs #reviews .woocommerce-Reviews-title,
.woocommerce div.product .woocommerce-tabs #reviews h2,
.woocommerce div.product .woocommerce-tabs #reviews h3 {
  margin-top: 0;
  font-family: var(--vh-font-heading);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.woocommerce div.product .woocommerce-tabs #reviews #comments ol.commentlist {
  list-style: none;
  padding: 0;
  margin: 0.85rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.woocommerce div.product .woocommerce-tabs #reviews #comments ol.commentlist li {
  border: 1px solid #e1d8cb;
  border-radius: 14px;
  background: #fbf8f2;
  padding: 0.9rem;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.05);
}

.woocommerce div.product .woocommerce-tabs #reviews #comments ol.commentlist li .comment_container {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.woocommerce div.product .woocommerce-tabs #reviews #comments ol.commentlist li img.avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #e1d8cb;
  padding: 3px;
  background: #ffffff;
  flex: none;
}

.woocommerce div.product .woocommerce-tabs #reviews #comments ol.commentlist li .comment-text {
  flex: 1;
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs #reviews #comments ol.commentlist li .comment-text p.meta {
  margin: 0 0 0.25rem;
  font-weight: 800;
}

.woocommerce div.product .woocommerce-tabs #reviews #comments ol.commentlist li .comment-text p.meta time {
  font-weight: 700;
  color: #77757e;
}

.woocommerce div.product .woocommerce-tabs #reviews #comments ol.commentlist li .star-rating {
  color: var(--vh-gold);
  margin: 0 0 0.35rem;
}

.woocommerce div.product .woocommerce-tabs #review_form_wrapper {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e1d8cb;
}

.woocommerce div.product .woocommerce-tabs #review_form #respond {
  background: #ffffff;
  border: 1px solid #e1d8cb;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.05);
}

.woocommerce div.product .woocommerce-tabs #review_form .comment-reply-title {
  display: block;
  margin: 0 0 0.75rem;
  font-family: var(--vh-font-heading);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.woocommerce div.product .woocommerce-tabs #review_form .comment-form-rating label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.woocommerce div.product .woocommerce-tabs #review_form .comment-form textarea {
  min-height: 120px;
}

.woocommerce div.product .woocommerce-product-gallery {
  border: 1px solid #e1d8cb;
  border-radius: 12px;
  padding: 0.75rem;
  background: #fbf8f2;
  box-shadow: inset 0 0 0 1px #f6f2ea;
  opacity: 1 !important;
  visibility: visible;
}


.woocommerce div.product .woocommerce-product-gallery__wrapper,
.woocommerce div.product .woocommerce-product-gallery .flex-viewport {
  display: block;
  width: 100%;
  overflow: hidden;
}


.woocommerce div.product .woocommerce-product-gallery__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  background: transparent;
}

.woocommerce div.product .woocommerce-product-gallery__wrapper img {
  background: #ffffff;
  border-radius: 10px;
  padding: 6px;
  border: 1px solid #e1d8c7;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
}

.woocommerce div.product .flex-control-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
  gap: 0.45rem;
  margin-top: 0.85rem;
}

@media (min-width: 901px) {

}

.woocommerce div.product .flex-control-nav li {
  width: 100% !important;
}

.woocommerce div.product .flex-control-nav img {
  border: 1px solid #e1d8cb;
  border-radius: 8px;
  padding: 4px;
  background: #f6f2ea;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  display: block;
  height: auto;
  width: 100%;
}

.woocommerce div.product .flex-control-nav img:hover {
  border-color: var(--vh-gold);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.08);
}

.woocommerce div.product .woocommerce-product-gallery .flex-viewport {
  border-radius: 12px;
  overflow: hidden;
}

.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  top: 12px;
  right: 12px;
  background: rgba(27, 26, 40, 0.82);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  line-height: 36px;
}

.woocommerce table.shop_table {
  background: #ffffff;
  border: 1px solid #e1d8cb;
  border-radius: 12px;
  border-collapse: collapse;
}

.woocommerce table.shop_table th {
  background: #f6f2ea;
  color: var(--vh-dark);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  border-bottom: 1px solid #e1d8cb;
}

.woocommerce table.shop_table td {
  border-color: #e1d8cb;
  padding: 0.85rem;
  vertical-align: middle;
}

.woocommerce table.shop_table tr:nth-child(even) td {
  background: #f9f4ec;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  text-align: left;
}

.vh-cart .cart-collaterals .cart_totals,
.vh-checkout #order_review {
  background: #ffffff;
  border: 1px solid #e1d8cb;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  border-top: 3px solid #1b1a28;
}

.vh-card {
  background: var(--vh-color-bg-surface, #ffffff);
  border: 1px solid var(--vh-color-border-subtle, #e1d8cb);
  border-radius: var(--vh-radius-lg, 14px);
  padding: var(--vh-space-20, 1rem);
  box-shadow: var(--vh-shadow-soft, 0 10px 20px rgba(0, 0, 0, 0.06));
}

.vh-card--raised {
  box-shadow: var(--vh-shadow-elevated, 0 16px 30px rgba(0, 0, 0, 0.08));
}

body.woocommerce-cart .vh-page--cart,
body.woocommerce-checkout .vh-page--checkout {
  background: radial-gradient(circle at 10% 10%, rgba(254, 173, 82, 0.08), transparent 35%), radial-gradient(circle at 90% 20%, rgba(108, 93, 211, 0.06), transparent 36%), var(--vh-sand);
}

.vh-cart-header{
  margin: 1.25rem 0 0.75rem;
  padding: 0.5rem 0.25rem;
}

.vh-cart-header h1{
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  margin: 0;
}

.vh-cart-layout {
  gap: 1.5rem;
}

.vh-cart-card,
.vh-cart-totals {
  background: linear-gradient(180deg, #fff, #f7f1e9);
  border: 1px solid #e6dccd;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.vh-cart-item {
  border: 1px solid var(--vh-color-border-subtle, #e4d8c7);
  border-radius: var(--vh-radius-lg, 18px);
  padding: 0.85rem;
  background: var(--vh-color-bg-surface, #fff);
  box-shadow: none;
}

.vh-cart-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.35rem;
}

.vh-cart-actions a,
.vh-cart-actions button {
  font-weight: 700;
}

.vh-cart-cross-sell h2 {
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}

.vh-cart-cross-sell {
  margin-top: 1.25rem;
}

/* Cart polish */
.vh-cart table.shop_table td.actions {
  background: #f9f4ec;
}

.vh-cart table.shop_table td.actions .coupon {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: center;
  width: min(480px, 100%);
}

.vh-cart table.shop_table td.actions .input-text {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d9cec0;
  padding: 0.75rem 0.9rem;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.vh-cart table.shop_table td.actions button.button {
  min-width: 160px;
  border-color: var(--vh-cart-secondary-cta-border, var(--vh-cta-border, #1b1a28));
  background: var(--vh-cart-secondary-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28)));
  color: var(--vh-cart-secondary-cta-color, var(--vh-cta-color, #ffffff));
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.vh-cart table.shop_table td.actions button.button:hover {
  background: var(--vh-cart-secondary-cta-hover-bg, var(--vh-cart-secondary-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28))));
  border-color: var(--vh-cart-secondary-cta-hover-border, var(--vh-cart-secondary-cta-border, var(--vh-cta-border, #1b1a28)));
  color: var(--vh-cart-secondary-cta-hover-color, var(--vh-cart-secondary-cta-color, var(--vh-cta-color, #ffffff)));
}

.vh-cart .cart_totals .shop_table {
  width: 100%;
  border-collapse: collapse;
}

.vh-cart .cart_totals .shop_table tr {
  border-bottom: 1px solid #e8decd;
}

.vh-cart .cart_totals .shop_table tr.order-total {
  background: #fff8ee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.vh-cart .cart_totals .shop_table td,
.vh-cart .cart_totals .shop_table th {
  padding: 0.5rem 0;
}

.vh-cart .cart_totals .shop_table tr.order-total td,
.vh-cart .cart_totals .shop_table tr.order-total th {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1b1a28;
}

.vh-cart .checkout-button {
  width: 100%;
  text-align: center;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  letter-spacing: 0.05em;
  border-color: var(--vh-cart-primary-cta-border, var(--vh-cta-border, #1b1a28));
  background: var(--vh-cart-primary-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28)));
  color: var(--vh-cart-primary-cta-color, var(--vh-cta-color, #ffffff));
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.vh-cart .checkout-button:hover {
  background: var(--vh-cart-primary-cta-hover-bg, var(--vh-cart-primary-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28))));
  border-color: var(--vh-cart-primary-cta-hover-border, var(--vh-cart-primary-cta-border, var(--vh-cta-border, #1b1a28)));
  color: var(--vh-cart-primary-cta-hover-color, var(--vh-cart-primary-cta-color, var(--vh-cta-color, #ffffff)));
}

.vh-account__nav .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.vh-account__nav .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 0.65rem 0.8rem;
  border: 1px solid #e1d8cb;
  border-radius: 10px;
  font-weight: 700;
  color: var(--vh-dark);
  background: #f7f1e9;
}

.vh-account__nav .woocommerce-MyAccount-navigation ul li.is-active a,
.vh-account__nav .woocommerce-MyAccount-navigation ul li a:hover {
  border-color: var(--vh-gold);
  background: #fff;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border-radius: 10px;
  border: 1px solid #d9cec0;
  padding: 0.65rem 0.75rem;
  background: #f7f1e9;
}

.woocommerce form .form-row label {
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media (max-width: 980px) {
  
  
  
  
  
}

.vh-checkout #payment {
  background: #f6f2ea;
  border-radius: 10px;
  padding: 0.75rem;
  border: 1px solid #e1d8cb;
}

.vh-checkout form .form-row {
  margin-bottom: 0.75rem;
}

.vh-checkout form .form-row label {
  font-weight: 800;
  margin-bottom: 0.2rem;
  display: inline-block;
}

.vh-checkout #order_review_heading {
  margin: 0 0 0.65rem;
}

.vh-checkout #payment {
  background: #f6f2ea;
  border-radius: 14px;
  padding: 0.9rem;
  border: 1px solid #e1d8cb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.vh-checkout #payment ul.payment_methods {
  list-style: none;
  margin: 0 0 0.65rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.vh-checkout #payment ul.payment_methods li {
  background: #fff;
  border: 1px solid #e1d8cb;
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  display: grid;
  gap: 0.25rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.04);
}

.vh-checkout #payment div.payment_box {
  background: #f9f4ec;
  border: 1px solid #e1d8cb;
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  margin: 0.35rem 0 0;
}

.vh-checkout #payment .place-order {
  margin: 0;
  padding-top: 0.4rem;
}

.vh-checkout #payment .place-order .button {
  width: 100%;
  text-align: center;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  letter-spacing: 0.05em;
  border-color: var(--vh-checkout-primary-cta-border, var(--vh-cta-border, #1b1a28));
  background: var(--vh-checkout-primary-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28)));
  color: var(--vh-checkout-primary-cta-color, var(--vh-cta-color, #ffffff));
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.vh-checkout #payment .place-order .button:hover {
  background: var(--vh-checkout-primary-cta-hover-bg, var(--vh-checkout-primary-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28))));
  border-color: var(--vh-checkout-primary-cta-hover-border, var(--vh-checkout-primary-cta-border, var(--vh-cta-border, #1b1a28)));
  color: var(--vh-checkout-primary-cta-hover-color, var(--vh-checkout-primary-cta-color, var(--vh-cta-color, #ffffff)));
}

.woocommerce a.button,
.woocommerce button.button {
  border-radius: 10px;
  padding: 0.65rem 1rem;
  background: linear-gradient(135deg, #fead52, #8c9e6d);
  border: 1px solid #e1d8cb;
  color: #0f0f17;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt {
  background: linear-gradient(#1b1a28, #0f0f17);
  color: #ffffff;
  border: 1px solid #2a2535;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  background: #ffffff;
  border: 1px solid #e1d8cb;
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 0.6rem 0.75rem;
  background: #f6f2ea;
  border: 1px solid #e1d8cb;
  border-radius: 8px;
  color: var(--vh-dark);
  font-weight: 700;
}

.woocommerce-account .woocommerce-MyAccount-content {
  background: #ffffff;
  border: 1px solid #e1d8cb;
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background: #f6f2ea;
  border-radius: 10px;
  border: 1px solid #d8d1c7;
  color: var(--vh-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  width: 100%;
  padding: 0.75rem;
}

.woocommerce form .form-row textarea {
  min-height: 120px;
}

.woocommerce form .form-row label {
  color: var(--vh-dark);
  font-weight: 700;
}

.woocommerce form .form-row .required {
  color: var(--vh-gold);
}

.vh-cart table.shop_table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e1d8cb;
}

.vh-cart table.shop_table th {
  background: #f0e9df;
  padding: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.vh-cart table.shop_table td {
  padding: 0.65rem;
  vertical-align: middle;
}

.vh-cart table.shop_table .cart_item:nth-child(odd) td {
  background: #fbf8f2;
}

.vh-cart table.shop_table .product-thumbnail img {
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.vh-cart table.shop_table .product-name {
  font-weight: 800;
  color: #1b1a28;
}

.vh-cart table.shop_table .product-name a {
  color: inherit;
}

.vh-cart table.shop_table .product-name dl {
  margin: 0.2rem 0 0;
}

.vh-cart table.shop_table .product-quantity input.qty {
  max-width: 80px;
  text-align: center;
}

.vh-checkout .vh-header,
.vh-checkout .site-footer,
.vh-checkout .vh-fab {
  display: none;
}

.vh-auth {
  min-height: 80vh;
  background: radial-gradient(circle at 10% 20%, rgba(255, 199, 134, 0.18), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(27, 26, 40, 0.32), transparent 35%),
    #0f0f17;
  color: #fff;
  padding: 2rem 1rem 3rem;
  display: flex;
  align-items: center;
}

.vh-auth__shell {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.vh-auth__welcome {
  background: linear-gradient(145deg, rgba(30, 28, 44, 0.9), rgba(27, 26, 40, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
  display: grid;
  gap: 0.75rem;
}

.vh-auth__welcome h1 {
  margin: 0;
  color: #fff;
  letter-spacing: 0.02em;
}

.vh-auth__welcome p {
  margin: 0;
  color: #dcd7f3;
  line-height: 1.6;
}

.vh-auth__bullets {
  margin: 0.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  color: #f3ede0;
}

.vh-auth__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.vh-auth__forms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.vh-auth__card {
  background: #ffffff;
  color: #1b1a28;
  border: 1px solid #e4d8c7;
  border-radius: 16px;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.vh-auth__card--muted {
  background: #f9f4ec;
}

.vh-auth__card h2 {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.vh-auth__card .form-row {
  margin: 0 0 0.7rem;
}

.vh-auth__card label {
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.vh-auth__card input.input-text {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d9cec0;
  padding: 0.7rem 0.85rem;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.vh-auth__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.vh-auth__link {
  color: #6c5dd3;
  font-weight: 700;
  text-decoration: none;
}

.vh-auth__button {
  width: 100%;
  background: linear-gradient(120deg, #f2b35c, #1b1a28);
  color: #fff;
  border: 1px solid #1b1a28;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

@media (max-width: 960px) {
  .vh-auth__shell {
    grid-template-columns: 1fr;
  }
}

.vh-page--account {
  background: var(--vh-color-bg-body, #f6f0e6);
  padding: 2.4rem 0 3rem;
}

.vh-page--account .vh-container {
  width: min(1100px, 94vw);
}

.vh-account__header {
  margin-bottom: 1rem;
}

.vh-account__header .vh-title {
  margin: 0.2rem 0 0;
}

.vh-eyebrow--light {
  color: rgba(246, 244, 255, 0.78);
}

.vh-account__hero {
  margin-bottom: 1.5rem;
}

.vh-account__hero .vh-card-hero {
  grid-template-columns: 1fr;
}

@media (min-width: 980px) {
  .vh-account__hero .vh-card-hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}

.vh-card-hero__title {
  color: var(--vh-color-text-invert, #fff);
}

.vh-card-hero__subtitle {
  color: rgba(246, 244, 255, 0.84);
  max-width: 640px;
}

.vh-card-hero__cta .vh-button {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.vh-account__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1rem;
  align-items: start;
}

@media (max-width: 960px) {
  .vh-account__layout {
    grid-template-columns: 1fr;
  }
}

.vh-account__nav .vh-tabs {
  flex-direction: column;
  gap: var(--vh-space-8, 8px);
}

@media (max-width: 960px) {
  .vh-account__nav .vh-tabs {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}

.vh-account__nav .vh-tab {
  width: 100%;
  justify-content: space-between;
}

.vh-account__nav .vh-tab .count {
  margin-left: auto;
}

@media (max-width: 960px) {
  .vh-account__nav .vh-tab {
    width: auto;
  }
}

.vh-account__main {
  display: grid;
  gap: 1rem;
}

.vh-account__actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.vh-account__panel {
  padding: var(--vh-space-20, 1.2rem);
}

.vh-account__panel table {
  width: 100%;
}

.vh-account__panel > p:first-of-type {
  color: #5c5450;
}

.vh-account__features {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
}

.vh-account__stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: var(--vh-space-12, 12px);
}

.vh-account__actions .vh-card-action__icon {
  background: #fff;
}


/* Woo Blocks (cart/checkout) */
.wc-block-cart,
.wc-block-checkout {
  --vh-block-card: #ffffff;
  --vh-block-border: #e4d8c7;
  --vh-block-bg: #fbf8f2;
  --vh-block-text: #1b1a28;
  color: var(--vh-block-text);
}

.wc-block-cart .wc-block-components-totals-wrapper,
.wc-block-checkout .wc-block-components-main {
  background: var(--vh-block-card);
  border: 1px solid var(--vh-block-border);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  padding: 1rem;
}

.wc-block-components-panel,
.wc-block-components-order-summary {
  border: 1px solid var(--vh-block-border);
  border-radius: 12px;
  background: var(--vh-block-card);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.wc-block-cart-items__header,
.wc-block-components-title {
  font-family: var(--vh-font-heading);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--vh-block-text);
}

.wc-block-cart-item__image img,
.wc-block-components-product-image img {
  border-radius: 12px;
  border: 1px solid var(--vh-block-border);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button,
.wc-block-cart-item__remove-link {
  border-radius: 12px;
  font-weight: 800;
}

.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
  background: linear-gradient(120deg, #f2b35c, #1b1a28);
  color: #fff;
  border: 1px solid #1b1a28;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.wc-block-components-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
  filter: brightness(1.05);
}

body.woocommerce-cart .wc-block-cart__submit-button {
  background: var(--vh-cart-primary-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28)));
  border-color: var(--vh-cart-primary-cta-border, var(--vh-cta-border, #1b1a28));
  color: var(--vh-cart-primary-cta-color, var(--vh-cta-color, #ffffff));
}

body.woocommerce-cart .wc-block-cart__submit-button:hover {
  background: var(--vh-cart-primary-cta-hover-bg, var(--vh-cart-primary-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28))));
  border-color: var(--vh-cart-primary-cta-hover-border, var(--vh-cart-primary-cta-border, var(--vh-cta-border, #1b1a28)));
  color: var(--vh-cart-primary-cta-hover-color, var(--vh-cart-primary-cta-color, var(--vh-cta-color, #ffffff)));
}

body.woocommerce-cart .wc-block-components-button:not(.wc-block-cart__submit-button) {
  background: var(--vh-cart-secondary-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28)));
  border-color: var(--vh-cart-secondary-cta-border, var(--vh-cta-border, #1b1a28));
  color: var(--vh-cart-secondary-cta-color, var(--vh-cta-color, #ffffff));
}

body.woocommerce-cart .wc-block-components-button:not(.wc-block-cart__submit-button):hover {
  background: var(--vh-cart-secondary-cta-hover-bg, var(--vh-cart-secondary-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28))));
  border-color: var(--vh-cart-secondary-cta-hover-border, var(--vh-cart-secondary-cta-border, var(--vh-cta-border, #1b1a28)));
  color: var(--vh-cart-secondary-cta-hover-color, var(--vh-cart-secondary-cta-color, var(--vh-cta-color, #ffffff)));
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background: var(--vh-checkout-primary-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28)));
  border-color: var(--vh-checkout-primary-cta-border, var(--vh-cta-border, #1b1a28));
  color: var(--vh-checkout-primary-cta-color, var(--vh-cta-color, #ffffff));
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
  background: var(--vh-checkout-primary-cta-hover-bg, var(--vh-checkout-primary-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28))));
  border-color: var(--vh-checkout-primary-cta-hover-border, var(--vh-checkout-primary-cta-border, var(--vh-cta-border, #1b1a28)));
  color: var(--vh-checkout-primary-cta-hover-color, var(--vh-checkout-primary-cta-color, var(--vh-cta-color, #ffffff)));
}

.wc-block-components-text-input input,
.wc-block-components-textarea textarea,
.wc-block-components-select select {
  border-radius: 10px;
  border: 1px solid var(--vh-block-border);
  padding: 0.65rem 0.8rem;
  background: #fff;
}

.wc-block-components-notice {
  border-radius: 12px;
  padding: 0.8rem 1rem;
}

.wc-block-cart__submit-container,
.wc-block-components-totals-wrapper {
  background: var(--vh-block-bg);
  border-radius: 12px;
  border: 1px solid var(--vh-block-border);
}

.wc-block-components-order-summary-item__quantity {
  border-radius: 10px;
  background: #f6f2ea;
  padding: 0.3rem 0.5rem;
}

.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
  border-top: 1px solid #e1d8cb;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background: #fff8ee;
  border-color: #f1d2a8;
  color: var(--vh-dark);
}

.woocommerce-cart table.cart td.product-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.woocommerce ul.products li.product .button {
  width: 100%;
  text-align: center;
  margin-top: 0.35rem;
}

.related,
.upsells {
  margin-top: 2rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}

.related h2,
.upsells h2 {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-family: var(--vh-font-heading);
  text-align: left;
}

.vh-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.vh-carousel-viewport {
  overflow: hidden;
}

.vh-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  scroll-behavior: smooth;
  padding: 6px 2px;
}

.vh-carousel-track.products {
  list-style: none;
  margin: 0;
  padding: 6px 2px;
  grid-template-columns: none;
}

.vh-carousel-track.products > li.product {
  margin: 0 !important;
  float: none !important;
  width: auto !important;
  height: 100%;
}

@media (max-width: 960px) {
  .vh-carousel-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }
}

@media (max-width: 640px) {
  .vh-carousel-track {
    grid-auto-columns: 100%;
  }
}

.vh-carousel-nav,
.vh-related-nav {
  border: 1px solid #d8cfc0;
  background: #fff;
  color: #1b1a28;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.vh-carousel-nav:hover,
.vh-related-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.vh-related-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.vh-related-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.vh-related-viewport::-webkit-scrollbar {
  display: none;
}

.single-product ul.vh-related-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 96px) / 5);
  gap: 24px !important;
  column-gap: 24px !important;
  row-gap: 24px !important;
  padding: 12px 10px;
  margin: 0;
  list-style: none;
  scroll-behavior: smooth;
  grid-template-columns: none;
}

.single-product .vh-related-track .vh-product-card__thumb {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
}

.single-product .vh-related-track .vh-product-card__thumb-link {
  border-radius: inherit;
  overflow: hidden;
}

.vh-related-track li.product {
  min-width: 0;
  margin: 0 !important;
  padding: 18px;
  float: none !important;
  width: auto !important;
  height: 100%;
  display: flex;
}

.vh-related-track li.product .vh-product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .single-product ul.vh-related-track {
    grid-auto-columns: calc((100% - 48px) / 3);
  }
}

@media (max-width: 768px) {
  .single-product ul.vh-related-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }
}

@media (max-width: 480px) {
  .single-product ul.vh-related-track {
    grid-auto-columns: 100%;
  }
}

.vh-related {
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 1.25rem 16px;
  background: #ffffff;
  border: 1px solid #e1d8cb;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.vh-related__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.vh-related__head h2 {
  margin: 0;
  font-family: var(--vh-font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 900;
  color: var(--vh-dark);
}

@media (max-width: 600px) {
  .vh-related {
    padding: 1rem 16px;
  }
}
.related .products,
.upsells .products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
  width: 100%;
  justify-items: stretch;
  align-items: start;
  grid-column: 1 / -1;
}

.related .products .product,
.upsells .products .product {
  float: none;
  width: auto;
  margin: 0;
}

@media (max-width: 900px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-nav .menu {
    justify-content: center;
  }

  .site-actions {
    justify-content: center;
    width: 100%;
  }

  .vh-container > .site-actions{
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }


  .vh-product-summary {
    position: static;
  }

}

/* Mega menu */


/* Homepage */


/* Toasts */
.vh-toast-tray {
  position: fixed;
  bottom: 18px;
  right: 18px;
  display: grid;
  gap: 0.35rem;
  z-index: 300;
}

.vh-toast {
  background: #0f0f17;
  color: #fff;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 1px solid var(--vh-gold);
}

.vh-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Wishlist page */
.vh-wishlist {
  padding: 1.5rem 0 2rem;
}

.vh-wishlist__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.vh-wishlist__status {
  min-height: 1.2em;
  color: #4b4657;
  margin-bottom: 0.5rem;
}

.vh-wishlist__grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.vh-wishlist__item {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid #e4d8c7;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.vh-wishlist__item.is-in-cart {
  border-color: var(--vh-gold);
  box-shadow: 0 10px 20px rgba(254, 173, 82, 0.22);
}

.vh-wishlist__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e4d8c7;
}

.vh-wishlist__body h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.vh-wishlist__meta {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.4rem;
}

.vh-wishlist__actions {
  display: inline-flex;
  gap: 0.4rem;
}

.vh-wishlist__remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #e4d8c7;
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.vh-wishlist__add-all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.vh-wishlist__loading {
  text-align: center;
  padding: 1rem 0;
}

.vh-wishlist__empty {
  text-align: center;
  color: #4b4657;
}

@media (max-width: 640px) {
  .vh-wishlist__item {
    grid-template-columns: 1fr;
  }
  .vh-wishlist__thumb {
    max-width: 200px;
  }
}

/* Footer */
.site-footer {
  background: radial-gradient(circle at 20% 30%, rgba(242, 179, 92, 0.08), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(140, 158, 109, 0.08), transparent 28%),
    #15101f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem min(4vw, 24px) 2.4rem;
  color: #f6f2ea;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-flow: row dense;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}

.site-footer__grid > div {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);
  order: 4;
}

.site-footer__brand {
  display: grid;
  gap: 0.4rem;
  order: 1;
}

.site-footer__reviews {
  order: 2;
}

.site-footer__newsletter {
  order: 3;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.08);
}

.site-footer .widget-title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.vh-footer-list {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0;
  display: grid;
  gap: 0.35rem;
}

.vh-footer-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #f6f2ea;
}

.vh-footer-list a:hover {
  color: var(--vh-gold);
}

.vh-footer-list a::before {
  content: "›";
  color: var(--vh-gold);
  font-weight: 900;
  opacity: 0.8;
}

.vh-footer-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.55rem;
}

.vh-footer-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.6rem 0.75rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.vh-footer-form button {
  border-radius: 10px;
  border: 1px solid #1b1a28;
  background: linear-gradient(120deg, #f2b35c, #1b1a28);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.2rem;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16);
}

.vh-social-list {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.vh-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

.vh-social-icon svg {
  width: 20px;
  height: 20px;
}

.vh-faq__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  letter-spacing: 0.01em;
}

.vh-faq__item {
  border: 1px solid #e1d8cb;
  border-radius: 12px;
  background: #f9f4ec;
  padding: 0.35rem 0.75rem;
}

.vh-faq__item[open] {
  background: #fff;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
}

.vh-faq__answer {
  margin: 0.4rem 0 0.3rem;
  color: #3a3646;
}

.vh-footer-review {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vh-footer-stars {
  color: var(--vh-gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.vh-footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.vh-footer-payments {
  color: #dcd7f3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.vh-payment-badges {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.vh-payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
}


.vh-footer-muted {
  color: rgba(246, 242, 234, 0.7);
}

@media (min-width: 1000px) {
  .site-footer__grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }
}

/* Floating CTA */
.vh-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #0f0f17;
  color: #fff;
  border: 1px solid var(--vh-gold);
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  z-index: 250;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

body.tax-product_cat .vh-main.vh-cat {
  padding-bottom: 96px;
}

.vh-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
}

/* Blog & Search */
.vh-page--blog,
.vh-page--post,
.vh-page--search {
  background: var(--vh-color-bg-body, #f6f0e6);
  padding: 2.4rem 0 3rem;
}
.vh-page--contact {
  background: var(--vh-color-bg-body, #f6f0e6);
  padding: 2.4rem 0 3rem;
}

.vh-blog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.vh-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.vh-post-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
}

.vh-post-card__thumb {
  display: block;
  border-radius: var(--vh-radius-lg, 18px);
  overflow: hidden;
  min-height: 180px;
}

.vh-post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vh-post-card__body {
  display: grid;
  gap: 0.35rem;
  padding: var(--vh-space-16, 16px);
}

.vh-post-card__meta {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: center;
  color: var(--vh-color-text-muted, #5b5450);
  font-size: var(--vh-font-sm, 14px);
}

.vh-post-card__date {
  font-size: var(--vh-font-xs, 12px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vh-post-card__title {
  margin: 0;
  font-size: var(--vh-font-lg, 18px);
  line-height: 1.35;
}

.vh-post-card__title a {
  color: var(--vh-color-text-main, #1b1a28);
  text-decoration: none;
}

.vh-post-card__excerpt {
  margin: 0;
  color: var(--vh-color-text-muted, #5b5450);
  line-height: 1.5;
}

.vh-post-card__price {
  font-weight: var(--vh-weight-bold, 700);
  color: var(--vh-color-accent, #fead52);
}

.vh-post-card__cta {
  margin-top: 0.35rem;
}

.vh-blog-hero {
  background: linear-gradient(135deg, #0f0f17, #1b1a28 55%, #0f0f17);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--vh-radius-lg, 18px);
  padding: 1.8rem;
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  margin-bottom: 1.25rem;
}

.vh-blog-hero__copy h1,
.vh-blog-hero__copy .vh-subtitle {
  color: #fff;
}

.vh-blog-search--hero input[type="search"] {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.vh-blog-search--hero input[type="search"]::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.vh-blog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.vh-featured-post {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1fr;
  gap: 1.2rem;
  align-items: stretch;
  margin-bottom: 1.2rem;
}

.vh-featured-post__media a,
.vh-featured-post__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.vh-featured-post__media img,
.vh-featured-post__media .vh-post-card__placeholder {
  border-radius: var(--vh-radius-lg, 18px);
  object-fit: cover;
  height: 100%;
  min-height: 280px;
}

.vh-featured-post__body {
  background: var(--vh-color-bg-surface, #ffffff);
  border: 1px solid var(--vh-color-border-subtle, #e4d8c7);
  border-radius: var(--vh-radius-lg, 18px);
  padding: 1.25rem;
  box-shadow: var(--vh-shadow-soft, 0 12px 22px rgba(0, 0, 0, 0.08));
  display: grid;
  gap: 0.5rem;
}

.vh-featured-post__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: 1.6rem;
  line-height: 1.3;
}

.vh-featured-post__title a {
  text-decoration: none;
  color: var(--vh-color-text-main, #1b1a28);
}

.vh-featured-post__excerpt {
  margin: 0;
  color: var(--vh-color-text-muted, #5b5450);
  line-height: 1.6;
}

.vh-featured-post__cta {
  margin-top: 0.35rem;
}

@media (max-width: 900px) {
  .vh-featured-post {
    grid-template-columns: 1fr;
  }
}

.vh-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 1.2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .vh-blog-layout {
    grid-template-columns: 1fr;
  }
}

.vh-blog-sidebar {
  display: grid;
  gap: 0.85rem;
}

.vh-blog-widget {
  padding: 0.85rem 1rem;
  border: 1px solid var(--vh-color-border-subtle, #e4d8c7);
  border-radius: var(--vh-radius-lg, 18px);
  background: var(--vh-color-bg-surface, #fff);
  box-shadow: var(--vh-shadow-soft, 0 12px 22px rgba(0, 0, 0, 0.08));
}

.vh-blog-widget__title {
  margin: 0 0 0.4rem;
  font-family: var(--vh-font-heading);
  font-size: var(--vh-font-lg, 18px);
}

.vh-blog-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.vh-blog-search input[type="search"] {
  width: 100%;
  border: 1px solid var(--vh-color-border-subtle, #e4d8c7);
  border-radius: var(--vh-radius-md, 12px);
  padding: 0.65rem 0.75rem;
}

.vh-blog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.vh-blog-list a {
  color: var(--vh-color-text-main, #1b1a28);
  text-decoration: none;
}

.vh-blog-recent {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.vh-blog-recent__item a {
  display: grid;
  gap: 2px;
  color: var(--vh-color-text-main, #1b1a28);
  text-decoration: none;
}

.vh-blog-recent__title {
  font-weight: var(--vh-weight-semibold, 600);
}

.vh-blog-recent__date {
  font-size: var(--vh-font-xs, 12px);
  color: var(--vh-color-text-muted, #5b5450);
}

.vh-blog-tags a {
  display: inline-block;
  margin: 0 6px 6px 0;
  padding: 0.35rem 0.55rem;
  border-radius: var(--vh-radius-md, 12px);
  border: 1px solid var(--vh-color-border-subtle, #e4d8c7);
  text-decoration: none;
  color: var(--vh-color-text-main, #1b1a28);
  font-weight: var(--vh-weight-semibold, 600);
}

.vh-blog-promo__text {
  margin: 0 0 0.5rem;
  color: var(--vh-color-text-muted, #5b5450);
}

.vh-blog-promo__form {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
}

.vh-blog-promo__form input[type="email"] {
  width: 100%;
  border: 1px solid var(--vh-color-border-subtle, #e4d8c7);
  border-radius: var(--vh-radius-md, 12px);
  padding: 0.65rem 0.75rem;
}


.vh-contact__card {
  max-width: 720px;
}
.vh-contact__form {
  display: grid;
  gap: 0.75rem;
}

.vh-contact-hero {
  background: linear-gradient(135deg, #0f0f17, #1b1a28 52%, #0f0f17);
  color: #fff;
  border-radius: var(--vh-radius-lg, 18px);
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
  margin-bottom: 1rem;
}
.vh-contact-hero .vh-title,
.vh-contact-hero .vh-subtitle {
  color: #fff;
}
.vh-contact__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}
.vh-contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.9fr);
  gap: 1rem;
  align-items: start;
}
@media (max-width: 900px) {
  .vh-contact__layout {
    grid-template-columns: 1fr;
  }
}
.vh-contact__aside {
  display: grid;
  gap: 0.6rem;
}
.vh-contact__aside-title {
  margin: 0;
}
.vh-contact__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--vh-color-text-muted, #5b5450);
  display: grid;
  gap: 0.25rem;
}
.vh-contact__note {
  background: var(--vh-color-bg-chip, #f8f2e7);
  border: 1px solid var(--vh-color-border-subtle, #e4d8c7);
  border-radius: var(--vh-radius-md, 12px);
  padding: 0.75rem 0.85rem;
}

.vh-post-card__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--vh-color-bg-chip, #f8f2e7);
  border-radius: var(--vh-radius-lg, 18px);
}

.vh-blog-sidebar {
  position: sticky;
  top: 90px;
}

.comment-respond {
  margin-top: 1rem;
  border: 1px solid var(--vh-color-border-subtle, #e4d8c7);
  border-radius: var(--vh-radius-lg, 18px);
  padding: 1rem;
  background: var(--vh-color-bg-surface, #fff);
  box-shadow: var(--vh-shadow-soft, 0 12px 22px rgba(0, 0, 0, 0.08));
}

.comment-form {
  display: grid;
  gap: 0.75rem;
}

.comment-form p {
  margin: 0;
}

.comment-form input[type=\"text\"],
.comment-form input[type=\"email\"],
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--vh-color-border-subtle, #e4d8c7);
  border-radius: var(--vh-radius-md, 12px);
  padding: 0.65rem 0.75rem;
  background: var(--vh-color-bg-surface-alt, #f3eadc);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.comment-form input[type=\"text\"]:focus,
.comment-form input[type=\"email\"]:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--vh-color-accent, #fead52);
  box-shadow: 0 0 0 3px rgba(254, 173, 82, 0.2);
  background: #fff;
}

.form-submit input[type=\"submit\"] {
  border-radius: var(--vh-radius-md, 12px);
  border: 1px solid #1b1a28;
  padding: 0.75rem 0.9rem;
  background: linear-gradient(120deg, #f2b35c, #1b1a28);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.15s ease;
}

.form-submit input[type=\"submit\"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.vh-comments .comment-awaiting-moderation {
  color: var(--vh-color-accent, #fead52);
  font-weight: var(--vh-weight-semibold, 600);
}

.vh-post-hero {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.vh-post-hero__meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  color: var(--vh-color-text-muted, #5b5450);
}

.vh-post-hero__thumb {
  border-radius: var(--vh-radius-lg, 18px);
  overflow: hidden;
}

.vh-post-hero__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.vh-post-content {
  padding: var(--vh-space-20, 20px);
  gap: 0.75rem;
}

.vh-pagination {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.vh-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: var(--vh-radius-md, 12px);
  border: 1px solid var(--vh-color-border-subtle, #e4d8c7);
  background: #ffffff;
  color: var(--vh-color-text-main, #1b1a28);
  text-decoration: none;
  font-weight: var(--vh-weight-semibold, 600);
  transition: transform 0.12s ease, box-shadow 0.15s ease, border-color 0.12s ease;
}

.vh-pagination .page-numbers.current {
  background: linear-gradient(120deg, #f2b35c, #1b1a28);
  color: #ffffff;
  border-color: #1b1a28;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.vh-pagination .page-numbers:hover {
  transform: translateY(-1px);
  border-color: var(--vh-color-accent, #fead52);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

/* Homepage (plugin-driven) */

.vh-home-marquee {
  background: var(--vh-home-announcement-bg, #1b1a28);
  color: var(--vh-home-announcement-color, #fead52);
  font-family: var(--vh-home-announcement-font-family, var(--vh-font-heading));
  font-size: var(--vh-home-announcement-font-size, 12px);
  font-weight: var(--vh-home-announcement-font-weight, 500);
  text-transform: var(--vh-home-announcement-text-transform, uppercase);
  letter-spacing: var(--vh-home-announcement-letter-spacing, 0.12em);
  line-height: var(--vh-home-announcement-line-height, 1.15);
  text-decoration: var(--vh-home-announcement-text-decoration, none);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vh-home-marquee__track {
  display: flex;
  width: max-content;
  animation: vh-home-marquee-scroll var(--vh-home-announcement-duration, 45s) linear infinite;
  will-change: transform;
}

.vh-home-marquee__content {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.4rem 0;
  padding-right: 2rem;
}

.vh-home-marquee__item,
.vh-home-marquee__sep {
  padding: 0 0.35rem;
}

@keyframes vh-home-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vh-home-marquee__track {
    animation: none;
    transform: none;
  }

  .vh-home-marquee__content[aria-hidden="true"] {
    display: none;
  }
}

.vh-home-iconstrip {
  background: var(--vh-home-icon-strip-bg, #1b1a28);
  color: var(--vh-home-icon-strip-text, var(--vh-home-icon-strip-color, #ffffff));
  font-family: var(--vh-home-icon-strip-font-family, var(--vh-font-heading));
  font-size: var(--vh-home-icon-strip-font-size, 12px);
  font-weight: var(--vh-home-icon-strip-font-weight, 500);
  text-transform: var(--vh-home-icon-strip-text-transform, uppercase);
  letter-spacing: var(--vh-home-icon-strip-letter-spacing, 0.08em);
  line-height: var(--vh-home-icon-strip-line-height, 1.15);
  text-decoration: var(--vh-home-icon-strip-text-decoration, none);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vh-home-iconstrip__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5rem;
  padding: 0.45rem 0;
  align-items: center;
}

.vh-home-iconstrip__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.25rem 0.35rem;
  color: inherit;
}

.vh-home-iconstrip__label {
  white-space: nowrap;
}

.vh-home-iconstrip .vh-container {
  width: min(1440px, 98vw);
}

@media (min-width: 1024px) {
  .vh-home-iconstrip__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }

  .vh-home-iconstrip__item {
    flex: 0 1 auto;
  }
}

@media (max-width: 640px) {
  .vh-home-iconstrip__label {
    white-space: normal;
  }
}

.vh-home-iconstrip__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: var(--vh-home-icon-strip-icon, #fead52);
  mask-image: var(--vh-mask-image);
  -webkit-mask-image: var(--vh-mask-image);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.vh-home-search .vh-search__cats,
.vh-home-search .vh-search__input {
  font-family: var(--vh-home-search-text-font-family, var(--vh-font-body));
  font-size: var(--vh-home-search-text-font-size, 14px);
  font-weight: var(--vh-home-search-text-font-weight, 500);
  text-transform: var(--vh-home-search-text-text-transform, none);
  letter-spacing: var(--vh-home-search-text-letter-spacing, 0);
  line-height: var(--vh-home-search-text-line-height, 1.2);
  text-decoration: var(--vh-home-search-text-text-decoration, none);
  color: var(--vh-home-search-text-color, #ffffff);
}

.vh-home-search .vh-search__button {
  font-family: var(--vh-home-search-button-font-family, var(--vh-font-cta));
  font-size: var(--vh-home-search-button-font-size, 14px);
  font-weight: var(--vh-home-search-button-font-weight, 700);
  text-transform: var(--vh-home-search-button-text-transform, uppercase);
  letter-spacing: var(--vh-home-search-button-letter-spacing, 0.08em);
  line-height: var(--vh-home-search-button-line-height, 1.15);
  text-decoration: var(--vh-home-search-button-text-decoration, none);
  background: var(--vh-home-search-button-bg, linear-gradient(120deg, #f2b35c, #1b1a28));
  border-color: var(--vh-home-search-button-border, #1b1a28);
  color: var(--vh-home-search-button-color, #ffffff);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.vh-home-search .vh-search__button:hover {
  background: var(--vh-home-search-button-hover-bg, linear-gradient(120deg, var(--vh-color-accent-gold, #fead52) 0%, #1b1a28 100%));
  border-color: var(--vh-home-search-button-hover-border, var(--vh-gold, #fead52));
  color: var(--vh-home-search-button-hover-color, var(--vh-home-search-button-color, #ffffff));
}

.vh-home-search .vh-search__meta {
  margin-top: 0.35rem;
  text-align: right;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.vh-home-hero {
  position: relative;
  background-color: var(--vh-home-hero-bg-color, #0f0f17);
  background-image: var(--vh-home-hero-bg-image, none);
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 2.75rem 0 2.25rem;
}

.vh-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 15, 23, 0.92) 0%, rgba(15, 15, 23, 0.72) 48%, rgba(15, 15, 23, 0.38) 100%);
  pointer-events: none;
}

.vh-home-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .vh-home-hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 2.25rem;
  }
}

.vh-home-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: var(--vh-radius-pill, 999px);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--vh-home-hero-badge-font-family, var(--vh-font-heading));
  font-size: var(--vh-home-hero-badge-font-size, 12px);
  font-weight: var(--vh-home-hero-badge-font-weight, 500);
  text-transform: var(--vh-home-hero-badge-text-transform, uppercase);
  letter-spacing: var(--vh-home-hero-badge-letter-spacing, 0.12em);
  line-height: var(--vh-home-hero-badge-line-height, 1.15);
  text-decoration: var(--vh-home-hero-badge-text-decoration, none);
  color: var(--vh-home-hero-badge-color, #fead52);
}

.vh-home-hero__title {
  margin: 0.9rem 0 0;
  font-family: var(--vh-home-hero-title-font-family, var(--vh-font-heading));
  font-size: clamp(2rem, 5.2vw, 3.25rem);
  font-weight: var(--vh-home-hero-title-font-weight, 800);
  text-transform: var(--vh-home-hero-title-text-transform, uppercase);
  letter-spacing: var(--vh-home-hero-title-letter-spacing, 0.02em);
  line-height: var(--vh-home-hero-title-line-height, 1.05);
  text-decoration: var(--vh-home-hero-title-text-decoration, none);
  color: var(--vh-home-hero-title-color, #ffffff);
}

.vh-home-hero__subtitle {
  margin: 0.9rem 0 0;
  max-width: 60ch;
  font-family: var(--vh-home-hero-subtitle-font-family, var(--vh-font-body));
  font-size: var(--vh-home-hero-subtitle-font-size, 16px);
  font-weight: var(--vh-home-hero-subtitle-font-weight, 400);
  text-transform: var(--vh-home-hero-subtitle-text-transform, none);
  letter-spacing: var(--vh-home-hero-subtitle-letter-spacing, 0);
  line-height: var(--vh-home-hero-subtitle-line-height, 1.45);
  text-decoration: var(--vh-home-hero-subtitle-text-decoration, none);
  color: var(--vh-home-hero-subtitle-color, rgba(255, 255, 255, 0.9));
}

.vh-home-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.vh-home-hero__cta {
  font-family: var(--vh-home-hero-cta-font-family, var(--vh-font-cta));
  font-size: var(--vh-home-hero-cta-font-size, 14px);
  font-weight: var(--vh-home-hero-cta-font-weight, 700);
  text-transform: var(--vh-home-hero-cta-text-transform, uppercase);
  letter-spacing: var(--vh-home-hero-cta-letter-spacing, 0.08em);
  line-height: var(--vh-home-hero-cta-line-height, 1.15);
  text-decoration: var(--vh-home-hero-cta-text-decoration, none);
}

.vh-home-hero__cta--primary {
  background: var(--vh-home-hero-primary-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28)));
  border-color: var(--vh-home-hero-primary-cta-border, var(--vh-cta-border, rgba(254, 173, 82, 0.72)));
  color: var(--vh-home-hero-primary-cta-color, var(--vh-cta-color, #ffffff));
}

.vh-home-hero__cta--primary:hover {
  background: var(--vh-home-hero-primary-cta-hover-bg, var(--vh-home-hero-primary-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28))));
  border-color: var(--vh-home-hero-primary-cta-hover-border, var(--vh-cta-hover-border, var(--vh-gold, #fead52)));
  color: var(--vh-home-hero-primary-cta-hover-color, var(--vh-home-hero-primary-cta-color, var(--vh-cta-color, #ffffff)));
}

.vh-home-hero__cta--secondary {
  background: var(--vh-home-hero-secondary-cta-bg, var(--vh-cta-bg, #ffffff));
  border-color: var(--vh-home-hero-secondary-cta-border, var(--vh-cta-border, #ffffff));
  color: var(--vh-home-hero-secondary-cta-color, var(--vh-cta-color, #1b1a28));
}

.vh-home-hero__cta--secondary:hover {
  background: var(--vh-home-hero-secondary-cta-hover-bg, var(--vh-home-hero-secondary-cta-bg, var(--vh-cta-bg, #ffffff)));
  border-color: var(--vh-home-hero-secondary-cta-hover-border, var(--vh-cta-hover-border, var(--vh-gold, #fead52)));
  color: var(--vh-home-hero-secondary-cta-hover-color, var(--vh-home-hero-secondary-cta-color, var(--vh-cta-color, #1b1a28)));
}

.vh-home-hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.vh-home-hero-usps__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--vh-radius-pill, 999px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--vh-home-hero-usp-font-family, var(--vh-font-body));
  font-size: var(--vh-home-hero-usp-font-size, 13px);
  font-weight: var(--vh-home-hero-usp-font-weight, 500);
  text-transform: var(--vh-home-hero-usp-text-transform, none);
  letter-spacing: var(--vh-home-hero-usp-letter-spacing, 0);
  line-height: var(--vh-home-hero-usp-line-height, 1.15);
  text-decoration: var(--vh-home-hero-usp-text-decoration, none);
  color: var(--vh-home-hero-usp-color, #ffffff);
}

.vh-home-hero-usps__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: #8c9e6d;
}

.vh-home-featured-product {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  border-radius: var(--vh-radius-xl, 19px);
  background: rgba(var(--vh-home-featured-product-bg-rgb, 15, 15, 23), var(--vh-home-featured-product-bg-opacity, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--vh-shadow-contrast, 0 14px 34px rgba(0, 0, 0, 0.32));
  overflow: hidden;
  padding: 1.25rem;
}

@media (max-width: 899px) {
  .vh-home-featured-product {
    margin: 0;
  }
}

.vh-home-featured-product__thumb {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--vh-radius-lg, 16px);
  padding: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.vh-home-featured-product__thumb img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
}

.vh-home-featured-product__label {
  margin: 0 0 0.35rem;
  font-family: var(--vh-home-featured-product-font-family, var(--vh-font-heading));
  font-size: var(--vh-home-featured-product-font-size, 13px);
  font-weight: var(--vh-home-featured-product-font-weight, 600);
  text-transform: var(--vh-home-featured-product-text-transform, uppercase);
  letter-spacing: var(--vh-home-featured-product-letter-spacing, 0.06em);
  line-height: var(--vh-home-featured-product-line-height, 1.15);
  text-decoration: var(--vh-home-featured-product-text-decoration, none);
  color: var(--vh-home-featured-product-color, #ffffff);
  opacity: 0.85;
}

.vh-home-featured-product__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}

.vh-home-featured-product__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.7rem;
  margin-bottom: 1rem;
}

.vh-home-featured-product__price,
.vh-home-featured-product__rating {
  color: rgba(255, 255, 255, 0.92);
}

.vh-home-featured-product__cta {
  width: 100%;
  justify-content: center;
  border-color: var(--vh-home-featured-product-cta-border, var(--vh-cta-border, rgba(254, 173, 82, 0.72)));
  background: var(--vh-home-featured-product-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #a5acb9, #1b1a28)));
  font-family: var(--vh-home-featured-product-font-family, var(--vh-font-cta));
  font-size: var(--vh-home-featured-product-font-size, 13px);
  font-weight: var(--vh-home-featured-product-font-weight, 600);
  text-transform: var(--vh-home-featured-product-text-transform, uppercase);
  letter-spacing: var(--vh-home-featured-product-letter-spacing, 0.06em);
  color: var(--vh-home-featured-product-cta-color, var(--vh-cta-color, #ffffff));
}

.vh-home-featured-product__cta:hover {
  background: var(--vh-home-featured-product-cta-hover-bg, var(--vh-cta-hover-bg, linear-gradient(120deg, var(--vh-color-accent-gold, #fead52) 0%, #1b1a28 100%)));
  border-color: var(--vh-home-featured-product-cta-hover-border, var(--vh-cta-hover-border, var(--vh-gold, #fead52)));
  color: var(--vh-home-featured-product-cta-hover-color, var(--vh-home-featured-product-cta-color, var(--vh-cta-color, #ffffff)));
}

.vh-home-badges {
  background: var(--vh-home-badges-bg, #e9e3e0);
  padding: 1.25rem 0;
}

.vh-home-badges__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 560px) {
  .vh-home-badges__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .vh-home-badges__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.vh-home-badge {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--vh-radius-lg, 16px);
  padding: 0.9rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  justify-content: flex-start;
  width: 100%;
  min-height: 52px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.15s ease, border-color 0.12s ease;
  font-family: var(--vh-home-badges-font-family, var(--vh-font-heading));
  font-size: var(--vh-home-badges-font-size, 13px);
  font-weight: var(--vh-home-badges-font-weight, 600);
  text-transform: var(--vh-home-badges-text-transform, none);
  letter-spacing: var(--vh-home-badges-letter-spacing, 0.02em);
  line-height: var(--vh-home-badges-line-height, 1.15);
  text-decoration: var(--vh-home-badges-text-decoration, none);
  color: var(--vh-home-badges-color, #ffffff);
}

.vh-home-badge--green {
  background: var(--vh-home-badges-green-bg, #697652);
}

.vh-home-badge--dark {
  background: var(--vh-home-badges-dark-bg, #1b1a28);
}

.vh-home-badge__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
  mask-image: var(--vh-mask-image);
  -webkit-mask-image: var(--vh-mask-image);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.vh-home-badge:hover,
.vh-home-badge.is-active {
  transform: translateY(-1px);
  border-color: rgba(254, 173, 82, 0.7);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.vh-home-badge:focus-visible {
  outline: 2px solid rgba(254, 173, 82, 0.85);
  outline-offset: 2px;
}

.vh-home-lower-blocks {
  padding: 1.35rem 0 2.5rem;
}

.vh-home-lower-blocks__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 900px) {
  .vh-home-lower-blocks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.vh-home-lower-block {
  position: relative;
  display: block;
  min-height: 190px;
  border-radius: var(--vh-radius-xl, 19px);
  overflow: hidden;
  background-color: var(--vh-lower-bg, #e9e3e0);
  background-image: linear-gradient(135deg, rgba(15, 15, 23, 0.08), rgba(15, 15, 23, 0.42)), var(--vh-lower-image, none);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--vh-shadow-soft, 0 10px 24px rgba(27, 26, 40, 0.12));
  padding: 1.35rem;
  transition: transform 0.12s ease, box-shadow 0.15s ease, border-color 0.12s ease;
}

.vh-home-lower-block:hover {
  transform: translateY(-2px);
  box-shadow: var(--vh-shadow-elevated, 0 18px 42px rgba(27, 26, 40, 0.18));
  border-color: rgba(254, 173, 82, 0.55);
}

.vh-home-lower-block__content {
  max-width: 46ch;
  color: var(--vh-color-text-main, #1b1a28);
}

.vh-home-lower-block__title {
  margin: 0;
  font-family: var(--vh-home-lower-block-title-font-family, var(--vh-font-heading));
  font-size: var(--vh-home-lower-block-title-font-size, 22px);
  font-weight: var(--vh-home-lower-block-title-font-weight, 700);
  text-transform: var(--vh-home-lower-block-title-text-transform, uppercase);
  letter-spacing: var(--vh-home-lower-block-title-letter-spacing, 0.08em);
  line-height: var(--vh-home-lower-block-title-line-height, 1.05);
  text-decoration: var(--vh-home-lower-block-title-text-decoration, none);
  color: var(--vh-home-lower-block-title-color, #1b1a28);
}

.vh-home-lower-block__subtitle {
  margin: 0.6rem 0 0;
  font-family: var(--vh-home-lower-block-subtitle-font-family, var(--vh-font-body));
  font-size: var(--vh-home-lower-block-subtitle-font-size, 14px);
  font-weight: var(--vh-home-lower-block-subtitle-font-weight, 500);
  text-transform: var(--vh-home-lower-block-subtitle-text-transform, none);
  letter-spacing: var(--vh-home-lower-block-subtitle-letter-spacing, 0);
  line-height: var(--vh-home-lower-block-subtitle-line-height, 1.4);
  text-decoration: var(--vh-home-lower-block-subtitle-text-decoration, none);
  color: var(--vh-home-lower-block-subtitle-color, #77757e);
}

.vh-home-lower-block__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.95rem;
  font-family: var(--vh-home-lower-block-cta-font-family, var(--vh-font-heading));
  font-size: var(--vh-home-lower-block-cta-font-size, 13px);
  font-weight: var(--vh-home-lower-block-cta-font-weight, 600);
  text-transform: var(--vh-home-lower-block-cta-text-transform, uppercase);
  letter-spacing: var(--vh-home-lower-block-cta-letter-spacing, 0.08em);
  line-height: var(--vh-home-lower-block-cta-line-height, 1.15);
  text-decoration: var(--vh-home-lower-block-cta-text-decoration, none);
  color: var(--vh-home-lower-block-cta-color, #fead52);
}

.vh-realm-map {
  padding: 1.35rem 0 2.75rem;
  background: var(--vh-home-realm-map-section-bg, var(--vh-color-bg-body, #e9e3e0));
}

.vh-realm-map__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .vh-realm-map__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.vh-realm-map__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  border-radius: var(--vh-radius-lg, 16px);
  border: 1px solid var(--vh-color-border-subtle, #e4d8c7);
  background: #ffffff;
  color: var(--vh-home-realm-map-color, #1b1a28);
  font-family: var(--vh-home-realm-map-font-family, var(--vh-font-heading));
  font-size: var(--vh-home-realm-map-font-size, 14px);
  font-weight: var(--vh-home-realm-map-font-weight, 600);
  text-transform: var(--vh-home-realm-map-text-transform, uppercase);
  letter-spacing: var(--vh-home-realm-map-letter-spacing, 0.06em);
  line-height: var(--vh-home-realm-map-line-height, 1.15);
  text-decoration: var(--vh-home-realm-map-text-decoration, none);
  box-shadow: var(--vh-shadow-soft, 0 10px 24px rgba(27, 26, 40, 0.12));
  transition: transform 0.12s ease, box-shadow 0.15s ease, border-color 0.12s ease;
}

.vh-realm-map__item:hover {
  transform: translateY(-1px);
  border-color: rgba(254, 173, 82, 0.55);
  box-shadow: var(--vh-shadow-elevated, 0 18px 42px rgba(27, 26, 40, 0.18));
}

.vh-realm-map__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  background: var(--vh-color-accent, #fead52);
  mask-image: var(--vh-mask-image);
  -webkit-mask-image: var(--vh-mask-image);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

/* ==========================================================================
   Homepage (Mockup-Driven Additions)
   ========================================================================== */

.vh-home-section-head {
  display: grid;
  gap: 0.35rem;
  text-align: center;
  margin-bottom: 1.25rem;
}

.vh-home-bento {
  padding: var(--vh-home-bento-pad-y, 24px) 0;
}

.vh-home-bento__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 900px) {
  .vh-home-bento__grid {
    grid-template-columns: 1.55fr 1fr 1fr;
    grid-template-rows: minmax(190px, 1fr) minmax(190px, 1fr);
    grid-template-areas:
      "left middle right_top"
      "left middle right_bottom";
    gap: 18px;
  }
  .vh-home-bento-card--left {
    grid-area: left;
  }
  .vh-home-bento-card--middle {
    grid-area: middle;
  }
  .vh-home-bento-card--right_top {
    grid-area: right_top;
  }
  .vh-home-bento-card--right_bottom {
    grid-area: right_bottom;
  }
}

.vh-home-bento-card {
  position: relative;
  border-radius: var(--vh-radius-xl, 19px);
  overflow: hidden;
  min-height: 180px;
  padding: 1.1rem 1.15rem;
  background: var(--vh-bento-bg, #1b1a28);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--vh-shadow-soft, 0 10px 24px rgba(27, 26, 40, 0.12));
  display: flex;
  align-items: flex-end;
  color: #ffffff;
}

.vh-home-bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--vh-bento-image, none) center/cover no-repeat;
  opacity: 0.95;
  pointer-events: none;
}

.vh-home-bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.vh-home-bento-card--light {
  color: #1b1a28;
}

.vh-home-bento-card--light::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.74));
}

.vh-home-bento-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vh-home-bento-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  max-width: 52ch;
}

.vh-home-bento-card__title {
  margin: 0;
  font-family: var(--vh-home-bento-title-font-family, var(--vh-font-heading));
  font-size: var(--vh-home-bento-title-font-size, 18px);
  font-weight: var(--vh-home-bento-title-font-weight, 800);
  text-transform: var(--vh-home-bento-title-text-transform, uppercase);
  letter-spacing: var(--vh-home-bento-title-letter-spacing, 0.02em);
  line-height: var(--vh-home-bento-title-line-height, 1.05);
  text-decoration: var(--vh-home-bento-title-text-decoration, none);
  color: var(--vh-home-bento-title-color, #ffffff);
}

.vh-home-bento-card__body {
  margin: 0;
  font-family: var(--vh-home-bento-body-font-family, var(--vh-font-body));
  font-size: var(--vh-home-bento-body-font-size, 13px);
  font-weight: var(--vh-home-bento-body-font-weight, 500);
  text-transform: var(--vh-home-bento-body-text-transform, none);
  letter-spacing: var(--vh-home-bento-body-letter-spacing, 0);
  line-height: var(--vh-home-bento-body-line-height, 1.4);
  text-decoration: var(--vh-home-bento-body-text-decoration, none);
  color: var(--vh-home-bento-body-color, rgba(255, 255, 255, 0.9));
}

.vh-home-bento-card--light .vh-home-bento-card__title,
.vh-home-bento-card--light .vh-home-bento-card__body {
  color: #1b1a28;
}

.vh-home-bento-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 2px solid var(--vh-home-bento-cta-border, var(--vh-cta-border, rgba(254, 173, 82, 0.92)));
  background: var(--vh-home-bento-cta-bg, var(--vh-cta-bg, rgba(0, 0, 0, 0.18)));
  color: var(--vh-home-bento-cta-color, var(--vh-cta-color, #ffffff));
  font-family: var(--vh-font-cta, var(--vh-font-heading));
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.86rem;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.vh-home-bento-card__cta:hover {
  transform: translateY(-1px);
  background: var(--vh-home-bento-cta-hover-bg, var(--vh-cta-hover-bg, rgba(0, 0, 0, 0.3)));
  border-color: var(--vh-home-bento-cta-hover-border, var(--vh-home-bento-cta-border, var(--vh-cta-border, rgba(254, 173, 82, 0.92))));
  color: var(--vh-home-bento-cta-hover-color, var(--vh-home-bento-cta-color, var(--vh-cta-color, #ffffff)));
}

.vh-home-bento-card--light .vh-home-bento-card__cta {
  background: var(--vh-home-bento-light-cta-bg, var(--vh-cta-bg, rgba(255, 255, 255, 0.72)));
  border-color: var(--vh-home-bento-light-cta-border, var(--vh-cta-border, rgba(254, 173, 82, 0.92)));
  color: var(--vh-home-bento-light-cta-color, var(--vh-cta-color, #1b1a28));
}

.vh-home-bento-card--light .vh-home-bento-card__cta:hover {
  background: var(--vh-home-bento-light-cta-hover-bg, var(--vh-home-bento-light-cta-bg, var(--vh-cta-bg, rgba(255, 255, 255, 0.72))));
  border-color: var(--vh-home-bento-light-cta-hover-border, var(--vh-home-bento-light-cta-border, var(--vh-cta-border, rgba(254, 173, 82, 0.92))));
  color: var(--vh-home-bento-light-cta-hover-color, var(--vh-home-bento-light-cta-color, var(--vh-cta-color, #1b1a28)));
}

.vh-home-forge,
.vh-home-deals__left {
  --vh-product-card-cta-bg: var(--vh-home-product-card-cta-bg, var(--vh-shop-product-card-cta-bg, var(--vh-cta-bg, linear-gradient(120deg, #f2b35c, #1b1a28))));
  --vh-product-card-cta-color: var(--vh-home-product-card-cta-color, var(--vh-shop-product-card-cta-color, var(--vh-cta-color, #ffffff)));
  --vh-product-card-cta-border: var(--vh-home-product-card-cta-border, var(--vh-shop-product-card-cta-border, var(--vh-cta-border, #1b1a28)));
  --vh-product-card-cta-hover-bg: var(--vh-home-product-card-cta-hover-bg, var(--vh-shop-product-card-cta-hover-bg, var(--vh-cta-hover-bg, linear-gradient(120deg, var(--vh-color-accent-gold, #fead52) 0%, #1b1a28 100%))));
  --vh-product-card-cta-hover-color: var(--vh-home-product-card-cta-hover-color, var(--vh-shop-product-card-cta-hover-color, var(--vh-cta-hover-color, #ffffff)));
  --vh-product-card-cta-hover-border: var(--vh-home-product-card-cta-hover-border, var(--vh-shop-product-card-cta-hover-border, var(--vh-cta-hover-border, #1b1a28)));
}

.vh-home-forge {
  padding: 2.75rem 0;
  background: var(--vh-home-forge-bg, #e9e3e0);
}

.vh-home-forge__title {
  margin: 0;
  font-family: var(--vh-home-forge-title-font-family, var(--vh-font-heading));
  font-size: var(--vh-home-forge-title-font-size, 22px);
  font-weight: var(--vh-home-forge-title-font-weight, 800);
  text-transform: var(--vh-home-forge-title-text-transform, uppercase);
  letter-spacing: var(--vh-home-forge-title-letter-spacing, 0.04em);
  line-height: var(--vh-home-forge-title-line-height, 1.05);
  text-decoration: var(--vh-home-forge-title-text-decoration, none);
  color: var(--vh-home-forge-title-color, #1b1a28);
}

.vh-home-forge__subtitle {
  margin: 0;
  font-family: var(--vh-home-forge-subtitle-font-family, var(--vh-font-body));
  font-size: var(--vh-home-forge-subtitle-font-size, 14px);
  font-weight: var(--vh-home-forge-subtitle-font-weight, 500);
  text-transform: var(--vh-home-forge-subtitle-text-transform, none);
  letter-spacing: var(--vh-home-forge-subtitle-letter-spacing, 0);
  line-height: var(--vh-home-forge-subtitle-line-height, 1.4);
  text-decoration: var(--vh-home-forge-subtitle-text-decoration, none);
  color: var(--vh-home-forge-subtitle-color, #605f68);
}

.vh-home-feature {
  padding: var(--vh-home-feature-pad-y, 24px) 0;
}

.vh-home-feature__track {
  grid-auto-columns: 100%;
}

.vh-home-feature-slide {
  position: relative;
  min-height: 240px;
  border-radius: var(--vh-radius-xl, 19px);
  overflow: hidden;
  background: var(--vh-feature-image, none) center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  box-shadow: var(--vh-shadow-elevated, 0 18px 42px rgba(27, 26, 40, 0.18));
}

@media (min-width: 900px) {
  .vh-home-feature-slide {
    min-height: 320px;
  }
}

.vh-home-feature-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(var(--vh-home-feature-overlay-rgb, 0, 0, 0), calc(var(--vh-home-feature-overlay-opacity, 0.35) + 0.25)) 0%,
    rgba(var(--vh-home-feature-overlay-rgb, 0, 0, 0), var(--vh-home-feature-overlay-opacity, 0.35)) 48%,
    rgba(var(--vh-home-feature-overlay-rgb, 0, 0, 0), calc(var(--vh-home-feature-overlay-opacity, 0.35) - 0.1)) 100%
  );
  pointer-events: none;
}

.vh-home-feature-slide__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  background: rgba(162, 97, 214, 0.92);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-family: var(--vh-home-feature-badge-font-family, var(--vh-font-heading));
  font-size: var(--vh-home-feature-badge-font-size, 12px);
  font-weight: var(--vh-home-feature-badge-font-weight, 700);
  text-transform: var(--vh-home-feature-badge-text-transform, uppercase);
  letter-spacing: var(--vh-home-feature-badge-letter-spacing, 0.08em);
  line-height: var(--vh-home-feature-badge-line-height, 1.1);
  text-decoration: var(--vh-home-feature-badge-text-decoration, none);
  color: var(--vh-home-feature-badge-color, #ffffff);
}

.vh-home-feature-slide__content {
  position: relative;
  z-index: 1;
  padding: 1.35rem 1.45rem;
  max-width: 62ch;
  display: grid;
  gap: 0.55rem;
}

.vh-home-feature-slide__title {
  margin: 0;
  font-family: var(--vh-home-feature-title-font-family, var(--vh-font-heading));
  font-size: var(--vh-home-feature-title-font-size, 26px);
  font-weight: var(--vh-home-feature-title-font-weight, 900);
  text-transform: var(--vh-home-feature-title-text-transform, uppercase);
  letter-spacing: var(--vh-home-feature-title-letter-spacing, 0.02em);
  line-height: var(--vh-home-feature-title-line-height, 1.05);
  text-decoration: var(--vh-home-feature-title-text-decoration, none);
  color: var(--vh-home-feature-title-color, #ffffff);
}

.vh-home-feature-slide__body {
  margin: 0;
  font-family: var(--vh-home-feature-body-font-family, var(--vh-font-body));
  font-size: var(--vh-home-feature-body-font-size, 14px);
  font-weight: var(--vh-home-feature-body-font-weight, 500);
  text-transform: var(--vh-home-feature-body-text-transform, none);
  letter-spacing: var(--vh-home-feature-body-letter-spacing, 0);
  line-height: var(--vh-home-feature-body-line-height, 1.4);
  text-decoration: var(--vh-home-feature-body-text-decoration, none);
  color: var(--vh-home-feature-body-color, #ffffff);
}

.vh-home-feature-slide__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 2px solid var(--vh-home-feature-cta-border, var(--vh-cta-border, rgba(254, 173, 82, 0.92)));
  background: var(--vh-home-feature-cta-bg, var(--vh-cta-bg, rgba(0, 0, 0, 0.18)));
  font-family: var(--vh-home-feature-cta-font-family, var(--vh-font-cta));
  font-size: var(--vh-home-feature-cta-font-size, 13px);
  font-weight: var(--vh-home-feature-cta-font-weight, 700);
  text-transform: var(--vh-home-feature-cta-text-transform, uppercase);
  letter-spacing: var(--vh-home-feature-cta-letter-spacing, 0.08em);
  line-height: var(--vh-home-feature-cta-line-height, 1.15);
  text-decoration: var(--vh-home-feature-cta-text-decoration, none);
  color: var(--vh-home-feature-cta-color, var(--vh-cta-color, #ffffff));
  width: fit-content;
}

.vh-home-feature-slide__cta:hover {
  background: var(--vh-home-feature-cta-hover-bg, var(--vh-cta-hover-bg, rgba(0, 0, 0, 0.3)));
  border-color: var(--vh-home-feature-cta-hover-border, var(--vh-home-feature-cta-border, var(--vh-cta-border, rgba(254, 173, 82, 0.92))));
  color: var(--vh-home-feature-cta-hover-color, var(--vh-home-feature-cta-color, var(--vh-cta-color, #ffffff)));
}

.vh-home-deals {
  background: var(--vh-home-deals-bg, #e9e3e0);
  padding: 2.75rem 0;
}

.vh-home-deals__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .vh-home-deals__grid {
    grid-template-columns: 2fr 1fr;
    gap: 1.25rem;
  }
}

.vh-home-deals__left {
  background: #ffffff;
  border-radius: var(--vh-radius-xl, 19px);
  border: 2px solid rgba(27, 26, 40, 0.9);
  padding: 1.35rem;
  box-shadow: var(--vh-shadow-soft, 0 10px 24px rgba(27, 26, 40, 0.12));
}

.vh-home-deals__title {
  margin: 0 0 1rem;
  text-align: center;
  font-family: var(--vh-home-deals-title-font-family, var(--vh-font-heading));
  font-size: var(--vh-home-deals-title-font-size, 22px);
  font-weight: var(--vh-home-deals-title-font-weight, 900);
  text-transform: var(--vh-home-deals-title-text-transform, uppercase);
  letter-spacing: var(--vh-home-deals-title-letter-spacing, 0.04em);
  line-height: var(--vh-home-deals-title-line-height, 1.05);
  text-decoration: var(--vh-home-deals-title-text-decoration, none);
  color: var(--vh-home-deals-title-color, #1b1a28);
}

.vh-home-deals__left .vh-product-card__footer {
  display: none;
}

.vh-home-deals__promo {
  position: relative;
  border-radius: var(--vh-radius-xl, 19px);
  overflow: hidden;
  background: var(--vh-deals-promo-image, none) center/cover no-repeat;
  min-height: 260px;
  border: 2px solid rgba(27, 26, 40, 0.9);
  display: flex;
  align-items: flex-end;
  box-shadow: var(--vh-shadow-elevated, 0 18px 42px rgba(27, 26, 40, 0.18));
}

.vh-home-deals__promo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(15, 15, 23, 0.92));
}

.vh-home-deals__promo-inner {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.35rem;
  color: #ffffff;
  display: grid;
  gap: 0.55rem;
}

.vh-home-deals__promo-badge {
  width: fit-content;
  background: rgba(162, 97, 214, 0.92);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-family: var(--vh-home-deals-promo-badge-font-family, var(--vh-font-heading));
  font-size: var(--vh-home-deals-promo-badge-font-size, 12px);
  font-weight: var(--vh-home-deals-promo-badge-font-weight, 800);
  text-transform: var(--vh-home-deals-promo-badge-text-transform, uppercase);
  letter-spacing: var(--vh-home-deals-promo-badge-letter-spacing, 0.06em);
  line-height: var(--vh-home-deals-promo-badge-line-height, 1.1);
  text-decoration: var(--vh-home-deals-promo-badge-text-decoration, none);
  color: var(--vh-home-deals-promo-badge-color, #ffffff);
}

.vh-home-deals__promo-title {
  margin: 0;
  font-family: var(--vh-home-deals-promo-title-font-family, var(--vh-font-heading));
  font-size: var(--vh-home-deals-promo-title-font-size, 20px);
  font-weight: var(--vh-home-deals-promo-title-font-weight, 900);
  text-transform: var(--vh-home-deals-promo-title-text-transform, uppercase);
  letter-spacing: var(--vh-home-deals-promo-title-letter-spacing, 0.02em);
  line-height: var(--vh-home-deals-promo-title-line-height, 1.05);
  text-decoration: var(--vh-home-deals-promo-title-text-decoration, none);
  color: var(--vh-home-deals-promo-title-color, #ffffff);
}

.vh-home-deals__promo-body {
  margin: 0;
  font-family: var(--vh-home-deals-promo-body-font-family, var(--vh-font-body));
  font-size: var(--vh-home-deals-promo-body-font-size, 14px);
  font-weight: var(--vh-home-deals-promo-body-font-weight, 500);
  text-transform: var(--vh-home-deals-promo-body-text-transform, none);
  letter-spacing: var(--vh-home-deals-promo-body-letter-spacing, 0);
  line-height: var(--vh-home-deals-promo-body-line-height, 1.4);
  text-decoration: var(--vh-home-deals-promo-body-text-decoration, none);
  color: var(--vh-home-deals-promo-body-color, #ffffff);
}

.vh-home-deals__promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 2px solid var(--vh-home-deals-promo-cta-border, var(--vh-cta-border, rgba(254, 173, 82, 0.92)));
  background: var(--vh-home-deals-promo-cta-bg, var(--vh-cta-bg, rgba(0, 0, 0, 0.18)));
  font-family: var(--vh-home-deals-promo-cta-font-family, var(--vh-font-cta));
  font-size: var(--vh-home-deals-promo-cta-font-size, 13px);
  font-weight: var(--vh-home-deals-promo-cta-font-weight, 700);
  text-transform: var(--vh-home-deals-promo-cta-text-transform, uppercase);
  letter-spacing: var(--vh-home-deals-promo-cta-letter-spacing, 0.08em);
  line-height: var(--vh-home-deals-promo-cta-line-height, 1.15);
  text-decoration: var(--vh-home-deals-promo-cta-text-decoration, none);
  color: var(--vh-home-deals-promo-cta-color, var(--vh-cta-color, #ffffff));
  width: fit-content;
}

.vh-home-deals__promo-cta:hover {
  background: var(--vh-home-deals-promo-cta-hover-bg, var(--vh-cta-hover-bg, rgba(0, 0, 0, 0.3)));
  border-color: var(--vh-home-deals-promo-cta-hover-border, var(--vh-home-deals-promo-cta-border, var(--vh-cta-border, rgba(254, 173, 82, 0.92))));
  color: var(--vh-home-deals-promo-cta-hover-color, var(--vh-home-deals-promo-cta-color, var(--vh-cta-color, #ffffff)));
}

.vh-deals-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 0.7rem;
}

.vh-deals-countdown__item {
  background: rgba(233, 227, 224, 0.92);
  border-radius: 8px;
  border: 1px solid rgba(27, 26, 40, 0.14);
  padding: 0.45rem 0.3rem;
  text-align: center;
  color: #1b1a28;
}

.vh-deals-countdown__item strong {
  display: block;
  font-weight: 900;
  font-family: var(--vh-font-heading);
  line-height: 1.05;
}

.vh-deals-countdown__item span {
  display: block;
  font-size: 0.72rem;
  opacity: 0.8;
}

.vh-home-value {
  background: var(--vh-home-value-bg, #1b1a28);
  padding: 2.75rem 0;
}

.vh-home-value__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .vh-home-value__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .vh-home-value__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.vh-home-value__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: #ffffff;
}

.vh-home-value__icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: brightness(1.15);
}

.vh-home-value__title {
  margin: 0;
  font-family: var(--vh-home-value-title-font-family, var(--vh-font-heading));
  font-size: var(--vh-home-value-title-font-size, 13px);
  font-weight: var(--vh-home-value-title-font-weight, 900);
  text-transform: var(--vh-home-value-title-text-transform, uppercase);
  letter-spacing: var(--vh-home-value-title-letter-spacing, 0.06em);
  line-height: var(--vh-home-value-title-line-height, 1.1);
  text-decoration: var(--vh-home-value-title-text-decoration, none);
  color: var(--vh-home-value-title-color, #ffffff);
}

.vh-home-value__body {
  margin: 0.45rem 0 0;
  font-family: var(--vh-home-value-body-font-family, var(--vh-font-body));
  font-size: var(--vh-home-value-body-font-size, 13px);
  font-weight: var(--vh-home-value-body-font-weight, 500);
  text-transform: var(--vh-home-value-body-text-transform, none);
  letter-spacing: var(--vh-home-value-body-letter-spacing, 0);
  line-height: var(--vh-home-value-body-line-height, 1.45);
  text-decoration: var(--vh-home-value-body-text-decoration, none);
  color: var(--vh-home-value-body-color, #e9e3e0);
}

.vh-home-testimonials {
  background: var(--vh-home-testimonials-bg, #e9e3e0);
  padding: 2.75rem 0;
  text-align: center;
}

.vh-home-testimonials__title {
  margin: 0 0 1.4rem;
  font-family: var(--vh-home-testimonials-title-font-family, var(--vh-font-heading));
  font-size: var(--vh-home-testimonials-title-font-size, 26px);
  font-weight: var(--vh-home-testimonials-title-font-weight, 900);
  text-transform: var(--vh-home-testimonials-title-text-transform, uppercase);
  letter-spacing: var(--vh-home-testimonials-title-letter-spacing, 0.04em);
  line-height: var(--vh-home-testimonials-title-line-height, 1.05);
  text-decoration: var(--vh-home-testimonials-title-text-decoration, none);
  color: var(--vh-home-testimonials-title-color, #1b1a28);
}

.vh-home-testimonials__track {
  grid-auto-columns: 100%;
}

.vh-home-testimonial {
  display: grid;
  place-items: center;
  padding: 1rem;
}

.vh-home-testimonial__icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 0.85rem;
}

.vh-home-testimonial__stars {
  color: var(--vh-color-accent, #fead52);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.vh-home-testimonial__quote {
  max-width: 65ch;
  margin: 0;
  font-family: var(--vh-home-testimonials-quote-font-family, var(--vh-font-body));
  font-size: var(--vh-home-testimonials-quote-font-size, 16px);
  font-weight: var(--vh-home-testimonials-quote-font-weight, 500);
  text-transform: var(--vh-home-testimonials-quote-text-transform, none);
  letter-spacing: var(--vh-home-testimonials-quote-letter-spacing, 0);
  line-height: var(--vh-home-testimonials-quote-line-height, 1.5);
  text-decoration: var(--vh-home-testimonials-quote-text-decoration, none);
  color: var(--vh-home-testimonials-quote-color, #1b1a28);
}

.vh-home-testimonial__meta {
  margin-top: 1rem;
  display: grid;
  gap: 0.25rem;
}

.vh-home-testimonial__name {
  font-family: var(--vh-home-testimonials-name-font-family, var(--vh-font-heading));
  font-size: var(--vh-home-testimonials-name-font-size, 16px);
  font-weight: var(--vh-home-testimonials-name-font-weight, 800);
  text-transform: var(--vh-home-testimonials-name-text-transform, none);
  letter-spacing: var(--vh-home-testimonials-name-letter-spacing, 0);
  line-height: var(--vh-home-testimonials-name-line-height, 1.2);
  text-decoration: var(--vh-home-testimonials-name-text-decoration, none);
  color: var(--vh-home-testimonials-name-color, #1b1a28);
}

.vh-home-testimonial__country {
  font-family: var(--vh-home-testimonials-country-font-family, var(--vh-font-body));
  font-size: var(--vh-home-testimonials-country-font-size, 12px);
  font-weight: var(--vh-home-testimonials-country-font-weight, 500);
  text-transform: var(--vh-home-testimonials-country-text-transform, none);
  letter-spacing: var(--vh-home-testimonials-country-letter-spacing, 0);
  line-height: var(--vh-home-testimonials-country-line-height, 1.2);
  text-decoration: var(--vh-home-testimonials-country-text-decoration, none);
  color: var(--vh-home-testimonials-country-color, #605f68);
}

.vh-home-testimonials__cta-wrap {
  margin-top: 1.35rem;
}

.vh-home-testimonials__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 2px solid var(--vh-home-testimonials-cta-border, var(--vh-cta-border, rgba(254, 173, 82, 0.92)));
  background: var(--vh-home-testimonials-cta-bg, var(--vh-cta-bg, #1b1a28));
  font-family: var(--vh-home-testimonials-cta-font-family, var(--vh-font-cta));
  font-size: var(--vh-home-testimonials-cta-font-size, 14px);
  font-weight: var(--vh-home-testimonials-cta-font-weight, 800);
  text-transform: var(--vh-home-testimonials-cta-text-transform, none);
  letter-spacing: var(--vh-home-testimonials-cta-letter-spacing, 0);
  line-height: var(--vh-home-testimonials-cta-line-height, 1.1);
  text-decoration: var(--vh-home-testimonials-cta-text-decoration, none);
  color: var(--vh-home-testimonials-cta-color, var(--vh-cta-color, #ffffff));
}

.vh-home-testimonials__cta:hover {
  background: var(--vh-home-testimonials-cta-hover-bg, var(--vh-home-testimonials-cta-bg, var(--vh-cta-bg, #1b1a28)));
  border-color: var(--vh-home-testimonials-cta-hover-border, var(--vh-home-testimonials-cta-border, var(--vh-cta-border, rgba(254, 173, 82, 0.92))));
  color: var(--vh-home-testimonials-cta-hover-color, var(--vh-home-testimonials-cta-color, var(--vh-cta-color, #ffffff)));
}

.vh-home-newsletter {
  background: var(--vh-home-newsletter-bg, #e9e3e0);
  padding: 2.75rem 0;
}

.vh-home-newsletter__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .vh-home-newsletter__grid {
    grid-template-columns: 1fr 1.25fr;
    gap: 1.35rem;
  }
}

.vh-home-newsletter__media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--vh-radius-xl, 19px);
  border: 2px solid rgba(27, 26, 40, 0.12);
  box-shadow: var(--vh-shadow-soft, 0 10px 24px rgba(27, 26, 40, 0.12));
}

.vh-home-newsletter__card {
  background: var(--vh-home-newsletter-card-bg, #1b1a28);
  border: 2px solid rgba(254, 173, 82, 0.92);
  border-radius: var(--vh-radius-xl, 19px);
  padding: 1.35rem;
  color: #ffffff;
  box-shadow: var(--vh-shadow-elevated, 0 18px 42px rgba(27, 26, 40, 0.18));
}

.vh-home-newsletter__notice {
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  margin-bottom: 1rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.vh-home-newsletter__notice.is-success {
  border-color: rgba(140, 158, 109, 0.75);
}

.vh-home-newsletter__notice.is-error {
  border-color: rgba(255, 77, 77, 0.75);
}

.vh-home-newsletter__title {
  margin: 0;
  font-family: var(--vh-home-newsletter-title-font-family, var(--vh-font-heading));
  font-size: var(--vh-home-newsletter-title-font-size, 28px);
  font-weight: var(--vh-home-newsletter-title-font-weight, 900);
  text-transform: var(--vh-home-newsletter-title-text-transform, uppercase);
  letter-spacing: var(--vh-home-newsletter-title-letter-spacing, 0.02em);
  line-height: var(--vh-home-newsletter-title-line-height, 1.05);
  text-decoration: var(--vh-home-newsletter-title-text-decoration, none);
  color: var(--vh-home-newsletter-title-color, #ffffff);
}

.vh-home-newsletter__subtitle {
  margin: 0.65rem 0 0;
  font-family: var(--vh-home-newsletter-subtitle-font-family, var(--vh-font-body));
  font-size: var(--vh-home-newsletter-subtitle-font-size, 14px);
  font-weight: var(--vh-home-newsletter-subtitle-font-weight, 500);
  text-transform: var(--vh-home-newsletter-subtitle-text-transform, none);
  letter-spacing: var(--vh-home-newsletter-subtitle-letter-spacing, 0);
  line-height: var(--vh-home-newsletter-subtitle-line-height, 1.4);
  text-decoration: var(--vh-home-newsletter-subtitle-text-decoration, none);
  color: var(--vh-home-newsletter-subtitle-color, #e9e3e0);
}

.vh-home-newsletter__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

@media (min-width: 560px) {
  .vh-home-newsletter__form {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
  .vh-home-newsletter__prefs {
    grid-column: 1 / -1;
  }
}

.vh-home-newsletter__field input[type="email"] {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(254, 173, 82, 0.7);
  background: var(--vh-home-newsletter-input-bg, #697652);
  color: #ffffff;
}

.vh-home-newsletter__button {
  min-height: 44px;
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  border: 2px solid var(--vh-home-newsletter-button-border, var(--vh-cta-border, rgba(254, 173, 82, 0.92)));
  background: var(--vh-home-newsletter-button-bg, var(--vh-cta-bg, #1b1a28));
  cursor: pointer;
  font-family: var(--vh-home-newsletter-button-font-family, var(--vh-font-cta));
  font-size: var(--vh-home-newsletter-button-font-size, 13px);
  font-weight: var(--vh-home-newsletter-button-font-weight, 800);
  text-transform: var(--vh-home-newsletter-button-text-transform, none);
  letter-spacing: var(--vh-home-newsletter-button-letter-spacing, 0);
  line-height: var(--vh-home-newsletter-button-line-height, 1.15);
  text-decoration: var(--vh-home-newsletter-button-text-decoration, none);
  color: var(--vh-home-newsletter-button-color, var(--vh-cta-color, #ffffff));
}

.vh-home-newsletter__button:hover {
  background: var(--vh-home-newsletter-button-hover-bg, var(--vh-cta-hover-bg, rgba(254, 173, 82, 0.92)));
  border-color: var(--vh-home-newsletter-button-hover-border, var(--vh-home-newsletter-button-border, var(--vh-cta-border, rgba(254, 173, 82, 0.92))));
  color: var(--vh-home-newsletter-button-hover-color, var(--vh-cta-hover-color, #1b1a28));
}

.vh-home-newsletter__prefs {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.vh-home-newsletter__pref {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  font-family: var(--vh-home-newsletter-label-font-family, var(--vh-font-body));
  font-size: var(--vh-home-newsletter-label-font-size, 12px);
  font-weight: var(--vh-home-newsletter-label-font-weight, 500);
  text-transform: var(--vh-home-newsletter-label-text-transform, none);
  letter-spacing: var(--vh-home-newsletter-label-letter-spacing, 0);
  line-height: var(--vh-home-newsletter-label-line-height, 1.35);
  text-decoration: var(--vh-home-newsletter-label-text-decoration, none);
  color: var(--vh-home-newsletter-label-color, #e9e3e0);
}

.vh-home-newsletter__pref input[type="checkbox"] {
  margin-top: 0.15rem;
  width: 18px;
  height: 18px;
  accent-color: var(--vh-dot, rgba(254, 173, 82, 0.92));
}

/* ==========================================================================
   Category Pages (Mockup Blocks)
   ========================================================================== */

.vh-cat-hero {
  position: relative;
  background: #1b1a28;
  background-image: var(--vh-cat-hero-image, none);
  background-size: cover;
  background-position: center;
  padding: 2.35rem 0 2.15rem;
  color: #ffffff;
}

.vh-cat-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 15, 23, 0.72) 0%, rgba(15, 15, 23, 0.45) 52%, rgba(15, 15, 23, 0.16) 100%);
  pointer-events: none;
}

.vh-cat-hero__title {
  position: relative;
  margin: 0;
  font-family: var(--vh-cat-hero-title-font-family, var(--vh-font-heading));
  font-size: clamp(2rem, 6vw, 3.3rem);
  font-weight: var(--vh-cat-hero-title-font-weight, 800);
  text-transform: var(--vh-cat-hero-title-text-transform, uppercase);
  letter-spacing: var(--vh-cat-hero-title-letter-spacing, 0.02em);
  line-height: var(--vh-cat-hero-title-line-height, 1);
  text-decoration: var(--vh-cat-hero-title-text-decoration, none);
  color: var(--vh-cat-hero-title-color, #ffffff);
}

.vh-cat-desc {
  padding: 1.25rem 0;
  background: #e9e3e0;
}

.vh-cat-desc__content {
  font-family: var(--vh-font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--vh-color-text-main, #1b1a28);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.vh-cat-desc__content > :first-child {
  margin-top: 0;
}

.vh-cat-desc__content > :last-child {
  margin-bottom: 0;
}

.vh-cat-desc__content p {
  margin: 0.75rem 0;
}

.vh-cat-loop__head {
  margin-bottom: 1rem;
  text-align: center;
  display: grid;
  gap: 0.35rem;
}

.vh-cat-loop__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--vh-color-text-main, #1b1a28);
}

.vh-cat-longtext {
  margin-top: 1.5rem;
}

.vh-cat-longtext__details {
  border-radius: 14px;
  border: 1px solid #e4d8c7;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.vh-cat-longtext__summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-family: var(--vh-font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.vh-cat-longtext__summary::-webkit-details-marker {
  display: none;
}

.vh-cat-longtext__summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f7f1e9;
  border: 1px solid #e4d8c7;
  flex: 0 0 auto;
  font-size: 1.25rem;
  line-height: 1;
}

.vh-cat-longtext__details[open] .vh-cat-longtext__summary::after {
  content: "–";
}

.vh-cat-longtext__panel {
  padding: 0 1.1rem 1.1rem;
}

.vh-cat-disclaimer {
  margin-top: 1rem;
}

.vh-cat-disclaimer__card {
  padding: 1rem 1.1rem;
}

.vh-cat-disclaimer__title {
  margin: 0 0 0.65rem;
  font-family: var(--vh-font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--vh-color-text-main, #1b1a28);
}

.vh-cat-disclaimer__content {
  font-family: var(--vh-font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--vh-color-text-main, #1b1a28);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.vh-cat-disclaimer__content > :first-child {
  margin-top: 0;
}

.vh-cat-disclaimer__content > :last-child {
  margin-bottom: 0;
}

.vh-cat-acf {
  padding: 0 0 1.25rem;
  background: #e9e3e0;
}

.vh-cat-acf__stack {
  display: grid;
  gap: 1rem;
}

.vh-cat-acf-banner {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.vh-cat-acf-banner__img {
  display: block;
  width: 100%;
  height: auto;
}

.vh-cat-acf-banner__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(15, 15, 23, 0.92) 92%);
}

.vh-cat-acf-banner__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.vh-cat-acf-buttons__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.vh-cat-acf-button {
  justify-content: center;
  width: 100%;
  min-height: 44px;
}

.vh-cat-acf-button.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.vh-cat-acf-button__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}

.vh-cat-acf-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  min-width: 0;
}

.vh-cat-acf-info__grid > * {
  min-width: 0;
}

@media (min-width: 900px) {
  .vh-cat-acf-info__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
  }
}

.vh-cat-acf-info__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--vh-radius-lg, 14px);
  border: 1px solid rgba(27, 26, 40, 0.12);
}

.vh-cat-acf-info__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--vh-color-text-main, #1b1a28);
  text-transform: uppercase;
}

.vh-cat-acf-info__text {
  margin-top: 0.75rem;
  font-family: var(--vh-font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--vh-color-text-main, #1b1a28);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.vh-cat-acf-info__text > :first-child {
  margin-top: 0;
}

.vh-cat-acf-info__text > :last-child {
  margin-bottom: 0;
}

.vh-cat-acf-info__link {
  display: inline-flex;
  margin-top: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: underline;
  color: #1b1a28;
}

.vh-cat-chips {
  padding: 1.1rem 0;
  background: #e9e3e0;
}

.vh-cat-chips__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.vh-cat-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: var(--vh-cat-chip-green, #8c9e6d);
  border: 2px solid rgba(27, 26, 40, 0.14);
  font-family: var(--vh-cat-chip-font-family, var(--vh-font-heading));
  font-size: var(--vh-cat-chip-font-size, 13px);
  font-weight: var(--vh-cat-chip-font-weight, 700);
  text-transform: var(--vh-cat-chip-text-transform, none);
  letter-spacing: var(--vh-cat-chip-letter-spacing, 0.02em);
  line-height: var(--vh-cat-chip-line-height, 1.15);
  text-decoration: var(--vh-cat-chip-text-decoration, none);
  color: var(--vh-cat-chip-color, #1b1a28);
  min-height: 44px;
}

.vh-cat-chip.is-active {
  background: #e9e3e0;
  border-color: rgba(27, 26, 40, 0.48);
}

.vh-cat-chip:hover:not(.is-active) {
  background: var(--vh-cat-chip-dark, #1b1a28);
  color: #ffffff;
  border-color: rgba(27, 26, 40, 0.72);
}

.vh-cat-chip__icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  background: currentColor;
  mask-image: var(--vh-mask-image);
  -webkit-mask-image: var(--vh-mask-image);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.vh-cat-features {
  padding: 1.75rem 0;
  background: #e9e3e0;
}

.vh-cat-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 900px) {
  .vh-cat-features__grid {
    grid-template-columns: 0.9fr 1.6fr;
    gap: 1.35rem;
  }
}

.vh-cat-feature {
  position: relative;
  border-radius: var(--vh-radius-xl, 19px);
  overflow: hidden;
  min-height: 260px;
  background: var(--vh-cat-feature-image, none) center/cover no-repeat;
  border: 2px solid rgba(27, 26, 40, 0.14);
  box-shadow: var(--vh-shadow-soft, 0 10px 24px rgba(27, 26, 40, 0.12));
  display: flex;
  align-items: flex-end;
}

.vh-cat-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(15, 15, 23, 0.88));
  pointer-events: none;
}

.vh-cat-feature__inner {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  color: #ffffff;
  display: grid;
  gap: 0.65rem;
}

.vh-cat-feature__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.vh-cat-feature__body {
  margin: 0;
  opacity: 0.92;
  max-width: 55ch;
}

.vh-cat-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.vh-cat-feature__btn,
.vh-cat-feature__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 2px solid var(--vh-cat-feature-primary-cta-border, rgba(254, 173, 82, 0.92));
  background: var(--vh-cat-feature-primary-cta-bg, rgba(0, 0, 0, 0.18));
  color: var(--vh-cat-feature-primary-cta-color, #ffffff);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--vh-font-cta, var(--vh-font-heading));
  font-size: 0.86rem;
  width: fit-content;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.vh-cat-feature__btn.is-alt {
  background: var(--vh-cat-feature-secondary-cta-bg, rgba(255, 255, 255, 0.14));
  border-color: var(--vh-cat-feature-secondary-cta-border, rgba(254, 173, 82, 0.92));
  color: var(--vh-cat-feature-secondary-cta-color, #ffffff);
}

.vh-cat-feature__btn:hover,
.vh-cat-feature__cta:hover {
  background: var(--vh-cat-feature-primary-cta-hover-bg, rgba(0, 0, 0, 0.3));
  border-color: var(--vh-cat-feature-primary-cta-hover-border, var(--vh-cat-feature-primary-cta-border, rgba(254, 173, 82, 0.92)));
  color: var(--vh-cat-feature-primary-cta-hover-color, var(--vh-cat-feature-primary-cta-color, #ffffff));
}

.vh-cat-feature__btn.is-alt:hover {
  background: var(--vh-cat-feature-secondary-cta-hover-bg, var(--vh-cat-feature-secondary-cta-bg, rgba(255, 255, 255, 0.14)));
  border-color: var(--vh-cat-feature-secondary-cta-hover-border, var(--vh-cat-feature-secondary-cta-border, rgba(254, 173, 82, 0.92)));
  color: var(--vh-cat-feature-secondary-cta-hover-color, var(--vh-cat-feature-secondary-cta-color, #ffffff));
}

.vh-cat-why {
  background: var(--vh-cat-why-bg, #8c9e6d);
  padding: 2.75rem 0;
}

.vh-cat-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .vh-cat-why__grid {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 2rem;
  }
}

.vh-cat-why__icon {
  text-align: center;
}

.vh-cat-why__icon img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  opacity: 0.9;
}

.vh-cat-why__link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: underline;
  color: #1b1a28;
}

.vh-cat-why__title {
  margin: 0;
  font-family: var(--vh-cat-why-title-font-family, var(--vh-font-heading));
  font-size: var(--vh-cat-why-title-font-size, 28px);
  font-weight: var(--vh-cat-why-title-font-weight, 800);
  text-transform: var(--vh-cat-why-title-text-transform, uppercase);
  letter-spacing: var(--vh-cat-why-title-letter-spacing, 0.02em);
  line-height: var(--vh-cat-why-title-line-height, 1.05);
  text-decoration: var(--vh-cat-why-title-text-decoration, none);
  color: var(--vh-cat-why-title-color, #1b1a28);
}

.vh-cat-why__body {
  margin: 0.85rem 0 0;
  font-family: var(--vh-cat-why-body-font-family, var(--vh-font-body));
  font-size: var(--vh-cat-why-body-font-size, 14px);
  font-weight: var(--vh-cat-why-body-font-weight, 500);
  text-transform: var(--vh-cat-why-body-text-transform, none);
  letter-spacing: var(--vh-cat-why-body-letter-spacing, 0);
  line-height: var(--vh-cat-why-body-line-height, 1.5);
  text-decoration: var(--vh-cat-why-body-text-decoration, none);
  color: var(--vh-cat-why-body-color, #1b1a28);
}

.vh-cat-most {
  padding: 2.75rem 0;
  background: #ffffff;
}

.vh-cat-most__head {
  text-align: center;
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.vh-cat-most__title {
  margin: 0;
  font-family: var(--vh-cat-most-title-font-family, var(--vh-font-heading));
  font-size: var(--vh-cat-most-title-font-size, 26px);
  font-weight: var(--vh-cat-most-title-font-weight, 800);
  text-transform: var(--vh-cat-most-title-text-transform, uppercase);
  letter-spacing: var(--vh-cat-most-title-letter-spacing, 0.02em);
  line-height: var(--vh-cat-most-title-line-height, 1.05);
  text-decoration: var(--vh-cat-most-title-text-decoration, none);
  color: var(--vh-cat-most-title-color, #1b1a28);
}

.vh-cat-most__subtitle {
  margin: 0;
  font-family: var(--vh-cat-most-subtitle-font-family, var(--vh-font-body));
  font-size: var(--vh-cat-most-subtitle-font-size, 14px);
  font-weight: var(--vh-cat-most-subtitle-font-weight, 500);
  text-transform: var(--vh-cat-most-subtitle-text-transform, none);
  letter-spacing: var(--vh-cat-most-subtitle-letter-spacing, 0);
  line-height: var(--vh-cat-most-subtitle-line-height, 1.4);
  text-decoration: var(--vh-cat-most-subtitle-text-decoration, none);
  color: var(--vh-cat-most-subtitle-color, #77757e);
}

.vh-cat-loop {
  padding: 2.75rem 0;
  background: #e9e3e0;
}

.vh-cat-loop ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 22px !important;
  padding: 10px 4px;
  margin: 0;
}

.vh-cat-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.15rem;
}

/* ==========================================================================
   About Page (Mockup Blocks)
   ========================================================================== */

.vh-about section[id],
.vh-about header[id] {
  scroll-margin-top: 120px;
}

.vh-about-hero {
  position: relative;
  background: #1b1a28;
  background-image: var(--vh-about-hero-image, none);
  background-size: cover;
  background-position: center;
  padding: 2.35rem 0 2.15rem;
  color: #ffffff;
}

.vh-about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 15, 23, 0.72) 0%, rgba(15, 15, 23, 0.45) 52%, rgba(15, 15, 23, 0.16) 100%);
  pointer-events: none;
}

.vh-about-hero > .vh-container {
  position: relative;
  z-index: 1;
}

.vh-about-hero__title {
  margin: 0;
  font-family: var(--vh-about-hero-title-font-family, var(--vh-font-heading));
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: var(--vh-about-hero-title-font-weight, 800);
  text-transform: var(--vh-about-hero-title-text-transform, uppercase);
  letter-spacing: var(--vh-about-hero-title-letter-spacing, 0.02em);
  line-height: var(--vh-about-hero-title-line-height, 1.05);
  text-decoration: var(--vh-about-hero-title-text-decoration, none);
  color: var(--vh-about-hero-title-color, #ffffff);
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.vh-about-hero__highlight {
  color: var(--vh-about-hero-highlight, #fead52);
}

.vh-about-hero__subtitle {
  margin: 0.75rem 0 0;
  max-width: 70ch;
  font-family: var(--vh-about-body-font-family, var(--vh-font-body));
  font-size: var(--vh-about-body-font-size, 14px);
  font-weight: var(--vh-about-body-font-weight, 500);
  line-height: var(--vh-about-body-line-height, 1.5);
  color: rgba(255, 255, 255, 0.92);
}

.vh-about-tabs {
  background: #e9e3e0;
  padding: 1rem 0;
}

.vh-about-tabs__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.vh-about-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.15rem;
  border-radius: 14px;
  min-height: 44px;
  border: 2px solid rgba(27, 26, 40, 0.14);
  font-family: var(--vh-font-heading);
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.02em;
}

.vh-about-tab--green {
  background: #8c9e6d;
  color: #1b1a28;
}

.vh-about-tab--dark {
  background: #1b1a28;
  color: #ffffff;
}

.vh-about-tab__icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  background: currentColor;
  mask-image: var(--vh-mask-image);
  -webkit-mask-image: var(--vh-mask-image);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.vh-about-video {
  background: var(--vh-about-dark-bg, #1b1a28);
  padding: 2.75rem 0;
}

.vh-about-video__card {
  position: relative;
  border-radius: var(--vh-radius-xl, 19px);
  overflow: hidden;
  min-height: 260px;
  background: var(--vh-about-video-image, none) center/cover no-repeat;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--vh-shadow-elevated, 0 18px 42px rgba(27, 26, 40, 0.18));
  display: grid;
  place-items: center;
}

.vh-about-video__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.vh-about-video__link {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.vh-about-video__play {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.92);
  position: relative;
  display: inline-block;
  background: rgba(27, 26, 40, 0.25);
}

.vh-about-video__play::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 22px solid rgba(255, 255, 255, 0.92);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  transform: translateX(5px);
}

.vh-about-olive {
  background: var(--vh-about-olive-bg, #8c9e6d);
  padding: 2.75rem 0;
  color: #1b1a28;
}

.vh-about-olive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .vh-about-olive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem;
  }
}

.vh-about-olive__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vh-about-olive__body {
  font-family: var(--vh-about-body-font-family, var(--vh-font-body));
  font-size: var(--vh-about-body-font-size, 14px);
  font-weight: var(--vh-about-body-font-weight, 500);
  line-height: var(--vh-about-body-line-height, 1.5);
}

.vh-about-olive__quote {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.vh-about-cards {
  background: #e9e3e0;
  padding: 2.75rem 0;
}

.vh-about-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 900px) {
  .vh-about-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

.vh-about-card {
  position: relative;
  border-radius: var(--vh-radius-xl, 19px);
  overflow: hidden;
  border: 2px solid rgba(27, 26, 40, 0.14);
  box-shadow: var(--vh-shadow-soft, 0 10px 24px rgba(27, 26, 40, 0.12));
  min-height: 210px;
}

.vh-about-card--image_quote {
  background: var(--vh-about-card-image, none) center/cover no-repeat;
  color: #ffffff;
}

.vh-about-card--image_quote::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(15, 15, 23, 0.92));
}

.vh-about-card--text {
  background: #ffffff;
  color: #1b1a28;
}

.vh-about-card__inner {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.vh-about-card__quote {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}

.vh-about-card__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.vh-about-realms {
  background: var(--vh-about-dark-bg, #1b1a28);
  color: #ffffff;
  padding: 2.75rem 0;
}

.vh-about-realms__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .vh-about-realms__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

.vh-about-realms__title {
  margin: 0 0 0.75rem;
  font-family: var(--vh-font-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.vh-about-realms__body {
  font-family: var(--vh-about-body-font-family, var(--vh-font-body));
  font-size: var(--vh-about-body-font-size, 14px);
  font-weight: var(--vh-about-body-font-weight, 500);
  line-height: var(--vh-about-body-line-height, 1.5);
  color: rgba(255, 255, 255, 0.88);
}

.vh-about-realms__body strong {
  color: var(--vh-about-hero-highlight, #fead52);
}

.vh-about-guardians {
  background: #e9e3e0;
  padding: 2.75rem 0;
}

.vh-about-guardians__head {
  text-align: center;
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.vh-about-guardians__track {
  grid-auto-columns: 100%;
}

.vh-about-guardian {
  position: relative;
  border-radius: var(--vh-radius-xl, 19px);
  overflow: hidden;
  min-height: 320px;
  background: var(--vh-about-guardian-image, none) center/cover no-repeat;
  border: 2px solid rgba(27, 26, 40, 0.14);
  box-shadow: var(--vh-shadow-elevated, 0 18px 42px rgba(27, 26, 40, 0.18));
  display: flex;
  align-items: flex-end;
  color: #ffffff;
}

.vh-about-guardian::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(15, 15, 23, 0.92));
}

.vh-about-guardian__content {
  position: relative;
  z-index: 1;
  padding: 1.35rem;
  display: grid;
  gap: 0.5rem;
  max-width: 70ch;
}

.vh-about-guardian__title {
  margin: 0;
  font-family: var(--vh-font-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.vh-about-guardian__subtitle {
  color: var(--vh-about-hero-highlight, #fead52);
  font-weight: 800;
}

.vh-about-guardian__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 2px solid var(--vh-about-guardian-cta-border, rgba(254, 173, 82, 0.92));
  background: var(--vh-about-guardian-cta-bg, rgba(0, 0, 0, 0.18));
  color: var(--vh-about-guardian-cta-color, #ffffff);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--vh-font-cta, var(--vh-font-heading));
  font-size: 0.86rem;
  width: fit-content;
  margin-top: 0.35rem;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.vh-about-guardian__cta:hover {
  background: var(--vh-about-guardian-cta-hover-bg, rgba(0, 0, 0, 0.3));
  border-color: var(--vh-about-guardian-cta-hover-border, var(--vh-about-guardian-cta-border, rgba(254, 173, 82, 0.92)));
  color: var(--vh-about-guardian-cta-hover-color, var(--vh-about-guardian-cta-color, #ffffff));
}

.vh-about-two {
  background: #e9e3e0;
  padding: 2.75rem 0 3.5rem;
}

.vh-about-two__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 900px) {
  .vh-about-two__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

.vh-about-two-card {
  background: var(--vh-about-olive-bg, #8c9e6d);
  border-radius: var(--vh-radius-xl, 19px);
  padding: 1.35rem;
  border: 2px solid rgba(27, 26, 40, 0.14);
  box-shadow: var(--vh-shadow-soft, 0 10px 24px rgba(27, 26, 40, 0.12));
  position: relative;
}

.vh-about-two-card__quote {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #1b1a28;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 900;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid rgba(255, 255, 255, 0.22);
}

.vh-about-two-card__title {
  margin: 0.85rem 0 0;
  font-family: var(--vh-font-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.vh-about-two-card__body {
  margin-top: 0.75rem;
  font-family: var(--vh-about-body-font-family, var(--vh-font-body));
  font-size: var(--vh-about-body-font-size, 14px);
  font-weight: var(--vh-about-body-font-weight, 500);
  line-height: var(--vh-about-body-line-height, 1.5);
  color: #1b1a28;
}

/* Accessibility: ensure adequate text contrast on Cookie Notice buttons. */
#cn-accept-cookie,
#cn-refuse-cookie {
  color: #1b1a28 !important;
}

/* Vault (Info & Support) */
body.vh-vault .vh-main {
  padding-top: clamp(1.5rem, 3vw, 2.5rem) !important;
  padding-bottom: clamp(2.75rem, 6vw, 3.75rem) !important;
}

body.vh-vault .vh-page {
  background: radial-gradient(circle at 12% 18%, rgba(254, 173, 82, 0.12), transparent 42%), radial-gradient(circle at 88% 0%, rgba(140, 158, 109, 0.12), transparent 38%), var(--vh-color-bg-surface, #ffffff);
  border: 1px solid var(--vh-color-border-subtle, #e4d8c7);
  border-radius: var(--vh-radius-xl, 19px);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--vh-shadow-soft, 0 10px 24px rgba(27, 26, 40, 0.12));
  position: relative;
  overflow: hidden;
}

body.vh-vault .vh-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/pattern.webp");
  background-size: 520px auto;
  background-repeat: repeat;
  opacity: 0.06;
  pointer-events: none;
}

body.vh-vault .vh-page::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -160px;
  width: 520px;
  height: 520px;
  background-image: url("../images/hero-dark-vault.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.16;
  pointer-events: none;
  transform: rotate(-8deg);
}

@media (max-width: 680px) {
  body.vh-vault .vh-page::after {
    top: -160px;
    right: -240px;
    opacity: 0.12;
  }
}

body.vh-vault .vh-page > * {
  position: relative;
  z-index: 1;
}

body.vh-vault .vh-section-header {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(27, 26, 40, 0.12);
  position: relative;
}

body.vh-vault .vh-section-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: min(180px, 55vw);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--vh-gold), var(--vh-olive));
}

body.vh-vault .vh-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.02rem;
}

body.vh-vault .vh-content h2,
body.vh-vault .vh-content h3 {
  scroll-margin-top: 120px;
}

body.vh-vault .vh-content h2 {
  margin: 2.35rem 0 1rem;
  padding: 0.75rem 1rem;
  background: rgba(27, 26, 40, 0.04);
  border: 1px solid rgba(27, 26, 40, 0.12);
  border-left: 5px solid var(--vh-gold);
  border-radius: var(--vh-radius-md, 12px);
  font-family: var(--vh-font-heading);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 1.25rem;
}

body.vh-vault .vh-content h2:first-child {
  margin-top: 0;
}

body.vh-vault .vh-content h3 {
  margin: 1.35rem 0 0.85rem;
  padding: 0.9rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(27, 26, 40, 0.12);
  border-radius: var(--vh-radius-md, 12px);
  box-shadow: 0 8px 18px rgba(27, 26, 40, 0.06);
  font-family: var(--vh-font-heading);
  font-weight: 900;
  letter-spacing: 0.01em;
  font-size: 1.06rem;
}

body.vh-vault .vh-content p {
  margin: 0.9rem 0;
  max-width: 75ch;
}

body.vh-vault .vh-content p:first-child {
  margin-top: 0;
}

body.vh-vault .vh-content > :first-child {
  margin-top: 0;
}

/* Vault toolbar (pills + tiles) */
body.vh-vault .vh-vault-toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.35rem;
}

body.vh-vault .vh-vault-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

body.vh-vault .vh-vault-pills--sub {
  gap: 0.45rem;
}

body.vh-vault .vh-vault-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--vh-radius-pill, 999px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(27, 26, 40, 0.14);
  box-shadow: 0 10px 24px rgba(27, 26, 40, 0.12);
  font-family: var(--vh-font-heading);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--vh-dark);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

body.vh-vault .vh-vault-pill:hover {
  transform: translateY(-1px);
  border-color: var(--vh-gold);
  box-shadow: var(--vh-shadow-elevated, 0 18px 42px rgba(27, 26, 40, 0.18));
  background: #ffffff;
  color: var(--vh-dark);
}

body.vh-vault .vh-vault-pill.is-active {
  background: linear-gradient(90deg, rgba(254, 173, 82, 0.92), rgba(140, 158, 109, 0.92));
  border-color: rgba(27, 26, 40, 0.22);
  color: var(--vh-ink);
}

body.vh-vault .vh-vault-pill.is-active .vh-vault-icon {
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.2));
}

body.vh-vault .vh-vault-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background-image: url("../icons/view-more-icon-black-transparent.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.92;
}

/* Icon mapping (Vault nav + FAQ categories) */
body.vh-vault .vh-vault-icon--vault {
  background-image: url("../icons/raven-logo-icon-black-transparent.svg");
}

/* Vault Home card icons (SVG) */
body.vh-vault .vh-vault-tiles--vault .vh-vault-icon--halls-of-valhalla {
  background-image: url("../icons/vault/vault-halls.svg?v=0.6.82");
}

body.vh-vault .vh-vault-tiles--vault .vh-vault-icon--guardians {
  background-image: url("../icons/vault/vault-guardians.svg?v=0.6.82");
}

body.vh-vault .vh-vault-tiles--vault .vh-vault-icon--ritual-code {
  background-image: url("../icons/vault/vault-ritual.svg?v=0.6.82");
}

body.vh-vault .vh-vault-tiles--vault .vh-vault-icon--faq {
  background-image: url("../icons/vault/vault-faq.svg?v=0.6.82");
}

body.vh-vault .vh-vault-tiles--vault .vh-vault-icon--support {
  background-image: url("../icons/vault/vault-support.svg?v=0.6.82");
}

body.vh-vault .vh-vault-tiles--vault .vh-vault-icon--policies {
  background-image: url("../icons/vault/vault-policies.svg?v=0.6.82");
}

/* FAQ Hub card icons (SVG) */
body.vh-vault .vh-vault-tiles--faq-hub .vh-vault-icon--shipping {
  background-image: url("../icons/vault/faq/shipping.svg?v=0.6.82");
}

body.vh-vault .vh-vault-tiles--faq-hub .vh-vault-icon--place-an-order {
  background-image: url("../icons/vault/faq/place-an-order.svg?v=0.6.82");
}

body.vh-vault .vh-vault-tiles--faq-hub .vh-vault-icon--payments {
  background-image: url("../icons/vault/faq/payments.svg?v=0.6.82");
}

body.vh-vault .vh-vault-tiles--faq-hub .vh-vault-icon--order-issues {
  background-image: url("../icons/vault/faq/order-issues.svg?v=0.6.82");
}

body.vh-vault .vh-vault-tiles--faq-hub .vh-vault-icon--general-support {
  background-image: url("../icons/vault/faq/general-support.svg?v=0.6.82");
}

body.vh-vault .vh-vault-tiles--faq-hub .vh-vault-icon--my-account {
  background-image: url("../icons/vault/faq/my-account.svg?v=0.6.82");
}

body.vh-vault .vh-vault-tiles--faq-hub .vh-vault-icon--wholesale {
  background-image: url("../icons/vault/faq/wholesale.svg?v=0.6.82");
}

body.vh-vault .vh-vault-tiles--faq-hub .vh-vault-icon--community {
  background-image: url("../icons/vault/faq/community.svg?v=0.6.82");
}

/* Policies Hub card icons (SVG) */
body.vh-vault .vh-vault-tiles--policies-hub .vh-vault-icon {
  background-image: url("../icons/vault/vault-policies.svg?v=0.6.82");
}

body.vh-vault .vh-vault-icon--halls {
  background-image: url("../icons/realm-icon-black-transparent.svg");
}

body.vh-vault .vh-vault-icon--guardians {
  background-image: url("../icons/guardians-icon-black-transparent.svg");
}

body.vh-vault .vh-vault-icon--ritual {
  background-image: url("../icons/alchemy-icon-black-transparent.svg");
}

body.vh-vault .vh-vault-icon--faq {
  background-image: url("../icons/view-more-icon-black-transparent.svg");
}

body.vh-vault .vh-vault-icon--support {
  background-image: url("../icons/quest-icon-black-transparent.svg");
}

body.vh-vault .vh-vault-icon--policies {
  background-image: url("../icons/legends-icon-black-transparent.svg");
}

body.vh-vault .vh-vault-icon--shipping {
  background-image: url("../images/icon-shield.svg");
}

body.vh-vault .vh-vault-icon--place-an-order {
  background-image: url("../icons/store-icon-black-transparent.svg");
}

body.vh-vault .vh-vault-icon--payments {
  background-image: url("../icons/currency-icon-black-transparant.svg");
}

body.vh-vault .vh-vault-icon--order-issues {
  background-image: url("../images/icon-bolt.svg");
}

body.vh-vault .vh-vault-icon--general-support {
  background-image: url("../images/icon-flask.svg");
}

body.vh-vault .vh-vault-icon--my-account {
  background-image: url("../icons/my-account-icon-black-transparent.svg");
}

body.vh-vault .vh-vault-icon--wholesale {
  background-image: url("../icons/legends-icon-black-transparent.svg");
}

body.vh-vault .vh-vault-icon--community {
  background-image: url("../icons/tribe-icon-black-transparent.svg");
}

/* Vault tiles */
body.vh-vault .vh-vault-tiles {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
}

@media (min-width: 720px) {
  body.vh-vault .vh-vault-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  body.vh-vault .vh-vault-tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

body.vh-vault .vh-vault-tile {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.05rem 1.1rem;
  border-radius: var(--vh-radius-lg, 16px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(27, 26, 40, 0.14);
  box-shadow: 0 14px 30px rgba(27, 26, 40, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  color: var(--vh-dark);
}

body.vh-vault .vh-vault-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/pattern.webp");
  background-size: 520px auto;
  background-repeat: repeat;
  opacity: 0.05;
  pointer-events: none;
}

body.vh-vault .vh-vault-tile > * {
  position: relative;
  z-index: 1;
}

body.vh-vault .vh-vault-tile:hover {
  transform: translateY(-2px);
  border-color: var(--vh-gold);
  box-shadow: var(--vh-shadow-elevated, 0 18px 42px rgba(27, 26, 40, 0.18));
}

body.vh-vault .vh-vault-tile__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

body.vh-vault .vh-vault-tile__title {
  font-family: var(--vh-font-heading);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.98rem;
  line-height: 1.2;
}

body.vh-vault .vh-vault-tile__excerpt {
  font-family: var(--vh-font-body);
  color: rgba(27, 26, 40, 0.74);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.45;
}

body.vh-vault .vh-vault-tile__arrow {
  margin-left: auto;
  align-self: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(27, 26, 40, 0.08);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--vh-olive);
}

body.vh-vault .vh-vault-tile__icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(27, 26, 40, 0.05);
  border: 1px solid rgba(27, 26, 40, 0.12);
}

/* TOC */
body.vh-vault .vh-vault-toc {
  margin: 0 0 1.15rem;
  padding: 1rem 1.1rem;
  border-radius: var(--vh-radius-lg, 16px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(27, 26, 40, 0.14);
  box-shadow: 0 12px 26px rgba(27, 26, 40, 0.12);
}

body.vh-vault .vh-vault-toc__label {
  color: rgba(27, 26, 40, 0.65);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

body.vh-vault .vh-vault-toc__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.65rem;
}

body.vh-vault .vh-vault-pill--toc {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--vh-font-body);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.55rem 0.8rem;
}

/* Emoji lists */
body.vh-vault .vh-emoji-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: 0.6rem;
}

body.vh-vault .vh-emoji-list li {
  background: rgba(27, 26, 40, 0.04);
  border: 1px solid rgba(27, 26, 40, 0.12);
  border-radius: var(--vh-radius-md, 12px);
  padding: 0.75rem 0.85rem;
  font-weight: 650;
  color: var(--vh-dark);
}

/* Vault accordions (FAQ + Guardians) */
body.vh-vault-faq .vh-accordion,
body.vh-vault-guardian .vh-accordion {
  border-radius: var(--vh-radius-lg, 16px);
  border: 1px solid rgba(27, 26, 40, 0.14);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 26px rgba(27, 26, 40, 0.12);
  overflow: hidden;
  margin: 0.85rem 0;
}

body.vh-vault-faq .vh-accordion__summary,
body.vh-vault-guardian .vh-accordion__summary {
  cursor: pointer;
  padding: 1rem 1.05rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--vh-font-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  list-style: none;
}

body.vh-vault-faq .vh-accordion__summary::-webkit-details-marker,
body.vh-vault-guardian .vh-accordion__summary::-webkit-details-marker {
  display: none;
}

body.vh-vault-faq .vh-accordion__summary::after,
body.vh-vault-guardian .vh-accordion__summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(27, 26, 40, 0.08);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--vh-olive);
  flex: 0 0 auto;
}

body.vh-vault-faq .vh-accordion[open] .vh-accordion__summary,
body.vh-vault-guardian .vh-accordion[open] .vh-accordion__summary {
  background: linear-gradient(90deg, rgba(254, 173, 82, 0.16), rgba(140, 158, 109, 0.12));
  border-bottom: 1px solid rgba(27, 26, 40, 0.12);
}

body.vh-vault-faq .vh-accordion[open] .vh-accordion__summary::after,
body.vh-vault-guardian .vh-accordion[open] .vh-accordion__summary::after {
  content: "−";
}

body.vh-vault-faq .vh-accordion__body,
body.vh-vault-guardian .vh-accordion__body {
  padding: 0.15rem 1.05rem 1.05rem;
}

body.vh-vault-faq .vh-accordion__body > :first-child,
body.vh-vault-guardian .vh-accordion__body > :first-child {
  margin-top: 0;
}

body.vh-vault-faq .vh-accordion__body > :last-child,
body.vh-vault-guardian .vh-accordion__body > :last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  body.vh-vault .vh-vault-pill,
  body.vh-vault .vh-vault-tile {
    transition: none;
  }
}

body.vh-vault .vh-content a {
  color: var(--vh-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

body.vh-vault .vh-content a:hover {
  color: var(--vh-gold);
}

body.vh-vault .vh-content ul,
body.vh-vault .vh-content ol {
  margin: 1rem 0;
  padding-left: 1.25rem;
}

body.vh-vault .vh-content li {
  margin: 0.55rem 0;
}

/* Vault FAQ Hub: tiles are rendered by the template. */
body.vh-vault-faq-hub .vh-content {
  max-width: 1120px;
}

body.vh-vault-faq-hub .vh-content ul {
  display: none;
}

/* Vault Guardians */
body.vh-vault-guardians-hub .vh-content {
  max-width: 1120px;
}

body.vh-vault-guardians-hub .vh-guardians-strip {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

body.vh-vault-guardians-hub .vh-guardians-strip__sub {
  display: block;
  font-family: var(--vh-font-body);
  font-weight: 650;
  font-size: 0.98rem;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(27, 26, 40, 0.72);
  line-height: 1.35;
}

body.vh-vault-guardians-hub .vh-vault-tiles--guardians {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.vh-vault-guardians-hub .vh-vault-tile {
  padding: 0;
  overflow: hidden;
  position: relative;
}

body.vh-vault-guardians-hub .vh-vault-tile__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: rgba(27, 26, 40, 0.8);
}

body.vh-vault-guardians-hub .vh-vault-tile__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
}

body.vh-vault-guardians-hub .vh-vault-tile__body {
  padding: 0.95rem 1.05rem 1.15rem;
}

body.vh-vault-guardians-hub .vh-vault-tile__arrow {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}

@media (max-width: 980px) {
  body.vh-vault-guardians-hub .vh-vault-tiles--guardians {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  body.vh-vault-guardians-hub .vh-vault-tiles--guardians {
    grid-template-columns: minmax(0, 1fr);
  }
}

body.vh-vault-guardian .vh-content {
  max-width: 1120px;
}

body.vh-vault-guardian .vh-guardian-profile {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.2rem;
  align-items: start;
  margin-bottom: 1.5rem;
  position: relative;
  --vh-guardian-accent-a: rgba(254, 173, 82, 0.22);
  --vh-guardian-accent-b: rgba(140, 158, 109, 0.18);
  --vh-guardian-quote-a: rgba(254, 173, 82, 0.16);
  --vh-guardian-quote-b: rgba(140, 158, 109, 0.12);
}

body.vh-vault-guardian .vh-guardian-profile--eyra {
  --vh-guardian-accent-a: rgba(254, 173, 82, 0.24);
  --vh-guardian-accent-b: rgba(233, 96, 66, 0.16);
  --vh-guardian-quote-a: rgba(254, 173, 82, 0.16);
  --vh-guardian-quote-b: rgba(233, 96, 66, 0.12);
}

body.vh-vault-guardian .vh-guardian-profile--salka {
  --vh-guardian-accent-a: rgba(140, 158, 109, 0.22);
  --vh-guardian-accent-b: rgba(122, 0, 223, 0.14);
  --vh-guardian-quote-a: rgba(140, 158, 109, 0.14);
  --vh-guardian-quote-b: rgba(122, 0, 223, 0.1);
}

body.vh-vault-guardian .vh-guardian-profile--ulvar {
  --vh-guardian-accent-a: rgba(180, 72, 58, 0.18);
  --vh-guardian-accent-b: rgba(254, 173, 82, 0.14);
  --vh-guardian-quote-a: rgba(180, 72, 58, 0.12);
  --vh-guardian-quote-b: rgba(254, 173, 82, 0.12);
}

body.vh-vault-guardian .vh-guardian-profile__art {
  border-radius: var(--vh-radius-lg, 16px);
  border: 1px solid rgba(27, 26, 40, 0.16);
  overflow: hidden;
  background: radial-gradient(circle at 20% 25%, var(--vh-guardian-accent-a), transparent 60%), rgba(27, 26, 40, 0.12);
  box-shadow: 0 14px 34px rgba(27, 26, 40, 0.14);
  position: relative;
}

body.vh-vault-guardian .vh-guardian-profile__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 18%, rgba(255, 255, 255, 0.18), transparent 55%), linear-gradient(180deg, rgba(27, 26, 40, 0.02), rgba(27, 26, 40, 0.12));
  pointer-events: none;
  opacity: 0.9;
}

body.vh-vault-guardian .vh-guardian-profile__art img {
  width: 100%;
  height: auto;
  display: block;
}

body.vh-vault-guardian .vh-guardian-profile__copy {
  border-radius: var(--vh-radius-lg, 16px);
  border: 1px solid rgba(27, 26, 40, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(27, 26, 40, 0.12);
  padding: 1.05rem 1.1rem;
  position: relative;
  overflow: hidden;
}

body.vh-vault-guardian .vh-guardian-profile__copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(480px 220px at 0% 0%, var(--vh-guardian-accent-a), transparent 60%),
    radial-gradient(480px 220px at 100% 0%, var(--vh-guardian-accent-b), transparent 62%);
  opacity: 0.55;
  pointer-events: none;
}

body.vh-vault-guardian .vh-guardian-profile__copy > * {
  position: relative;
  z-index: 1;
}

body.vh-vault-guardian .vh-guardian-profile__kicker {
  margin: 0 0 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(27, 26, 40, 0.6);
}

body.vh-vault-guardian .vh-guardian-profile__quote {
  margin: 0.95rem 0 0;
  padding: 0.85rem 0.95rem;
  border-radius: var(--vh-radius-md, 12px);
  border: 1px solid rgba(27, 26, 40, 0.14);
  background: linear-gradient(90deg, var(--vh-guardian-quote-a), var(--vh-guardian-quote-b));
  font-family: var(--vh-font-heading);
  font-weight: 900;
  color: var(--vh-ink);
  position: relative;
}

body.vh-vault-guardian .vh-guardian-profile__quote::before {
  content: "“";
  position: absolute;
  left: 0.55rem;
  top: -0.65rem;
  font-family: var(--vh-font-heading);
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: rgba(27, 26, 40, 0.18);
}

body.vh-vault-guardian .vh-accordion__body ul {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0;
  display: grid;
  gap: 0.55rem;
}

body.vh-vault-guardian .vh-accordion__body li {
  position: relative;
  padding-left: 1.35rem;
}

body.vh-vault-guardian .vh-accordion__body li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--vh-olive);
  font-weight: 900;
}

@media (max-width: 900px) {
  body.vh-vault-guardian .vh-guardian-profile {
    grid-template-columns: minmax(0, 1fr);
  }
}
