/* ==========================================================================
   Vital Homoeos — Theme v2
   Design tokens + component classes layered on top of the existing
   Bootstrap 5 + style.css foundation. Namespaced with a `vh-` prefix so it
   never collides with existing selectors.
   ========================================================================== */

:root {
  --vh-bg: #FBFAF7;
  --vh-ink: #17231D;
  --vh-green: #2E5B45;
  --vh-green-dark: #1F4231;
  --vh-green-deep: #16281F;
  --vh-green-hero: #10201A;
  --vh-gold: #D6A85F;
  --vh-gold-light: #E4C68C;
  --vh-gold-text: #B07B3C;
  --vh-panel: #F2F0E8;
  --vh-border: #E4E0D6;
  --vh-muted: #5A665E;
  --vh-muted-light: #8A9188;
  --vh-white: #FFFFFF;

  --vh-font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --vh-font-head: "Newsreader", Georgia, serif;

  --vh-radius: 12px;
  --vh-radius-sm: 6px;
  --vh-shadow: 0 20px 44px rgba(22, 40, 31, 0.14);
  --vh-shadow-lg: 0 30px 70px rgba(4, 15, 10, 0.35);
}

/* ---- base ---------------------------------------------------------- */

body {
  font-family: var(--vh-font-body);
  color: var(--vh-ink);
  background: var(--vh-bg);
  -webkit-font-smoothing: antialiased;
}

.vh-section {
  padding: 104px 0;
}

.vh-section-tight {
  padding: 64px 0;
}

.vh-eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vh-gold);
  font-weight: 700;
}

.vh-heading {
  font-family: var(--vh-font-head);
  color: var(--vh-green-deep);
  line-height: 1.14;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-top: 14px;
}

.vh-heading em,
.vh-heading-em {
  font-style: italic;
  color: var(--vh-gold-light);
}

.vh-heading-xl { font-size: 46px; }
.vh-heading-lg { font-size: 40px; }
.vh-heading-md { font-size: 30px; }
.vh-heading-sm { font-size: 24px; }

.vh-lede {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.66;
  color: var(--vh-muted);
}

.vh-divider {
  width: 56px;
  height: 3px;
  background: var(--vh-gold);
  border-radius: 100px;
  margin-top: 20px;
}

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

.vh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15.5px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.vh-btn-primary {
  background: var(--vh-green);
  color: var(--vh-bg);
}
.vh-btn-primary:hover {
  background: var(--vh-green-dark);
  color: #fff;
}

.vh-btn-gold {
  background: var(--vh-gold);
  color: var(--vh-green-deep);
}
.vh-btn-gold:hover {
  background: #E7BE7A;
  color: var(--vh-green-deep);
}

.vh-btn-outline {
  background: transparent;
  border: 1px solid rgba(234, 240, 233, 0.5);
  color: #fff;
}
.vh-btn-outline:hover {
  background: rgba(234, 240, 233, 0.12);
  color: #fff;
}

.vh-btn-outline-dark {
  background: #fff;
  border: 1px solid var(--vh-border);
  color: var(--vh-green-deep);
  box-shadow: 0 2px 8px rgba(22, 40, 31, 0.06);
}
.vh-btn-outline-dark:hover {
  background: var(--vh-green);
  border-color: var(--vh-green);
  color: #fff;
}

.vh-btn-whatsapp {
  background: #25D366;
  color: #08331B;
}
.vh-btn-whatsapp:hover {
  background: #1FBE5B;
  color: #08331B;
}

.vh-btn-block { width: 100%; justify-content: center; }
.vh-btn-sm { padding: 11px 20px; font-size: 14.5px; }

/* ---- floating dock ----------------------------------------------------- */

.vh-dock {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.vh-dock-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px 13px 15px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
}

.vh-dock-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
}

.vh-dock-whatsapp {
  background: #25D366;
  color: #08331B;
  box-shadow: 0 12px 28px rgba(8, 51, 27, 0.28);
  animation: vhPulse 2.6s ease-in-out infinite;
}
.vh-dock-whatsapp .vh-dock-icon { background: #08331B; color: #25D366; }
.vh-dock-whatsapp:hover { background: #1FBE5B; color: #08331B; }

.vh-dock-call {
  background: var(--vh-green-deep);
  color: #F2EFE8;
  box-shadow: 0 12px 28px rgba(22, 40, 31, 0.3);
}
.vh-dock-call .vh-dock-icon { background: var(--vh-gold); color: var(--vh-green-deep); }
.vh-dock-call:hover { background: var(--vh-green); color: #fff; }

@keyframes vhPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ---- booking form card -------------------------------------------------- */

.vh-book-card {
  background: var(--vh-bg);
  color: var(--vh-ink);
  border-radius: var(--vh-radius);
  padding: 40px 38px;
  box-shadow: var(--vh-shadow-lg);
}

.vh-book-card h3,
.vh-book-card h4 {
  font-family: var(--vh-font-head);
  font-size: 28px;
  color: var(--vh-green-deep);
  font-weight: 400;
  margin: 0;
}

.vh-book-card .vh-book-hint {
  margin-top: 8px;
  font-size: 15px;
  color: var(--vh-muted);
}

.vh-field {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.vh-field label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #4A574F;
}

.vh-field .form-control,
.vh-field .form-select,
.vh-field input,
.vh-field select,
.vh-field textarea {
  border: 1px solid #DFDBD1;
  background: #FFFFFF;
  padding: 12px 14px;
  font-size: 15px;
  border-radius: var(--vh-radius-sm);
  outline: none;
  font-family: inherit;
  width: 100%;
}

.vh-field .form-control:focus,
.vh-field .form-select:focus,
.vh-field input:focus,
.vh-field select:focus,
.vh-field textarea:focus {
  border-color: var(--vh-green);
  box-shadow: none;
}

.vh-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vh-book-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: nowrap;
}

.vh-book-actions .vh-btn-primary {
  flex: 1 1 0;
  padding: 15px 16px;
  white-space: nowrap;
}

.vh-book-actions .vh-btn-whatsapp-outline {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #25D366;
  color: #14803D;
  background: transparent;
  padding: 14px 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
}
.vh-book-actions .vh-btn-whatsapp-outline:hover {
  background: #EAF9EF;
  color: #14803D;
}

@media (max-width: 380px) {
  .vh-book-actions { gap: 8px; }
  .vh-book-actions .vh-btn-primary,
  .vh-book-actions .vh-btn-whatsapp-outline {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13.5px;
  }
}

.error_from_val {
  font-size: 13px;
  margin-top: 4px;
}

/* ---- responsive ---------------------------------------------------------- */

@media (max-width: 640px) {
  .vh-field-row { grid-template-columns: 1fr; }
  .vh-book-card { padding: 28px 22px; }
  .vh-dock { right: 14px; bottom: 14px; }
  .vh-heading-xl { font-size: 32px !important; }
  .vh-heading-lg { font-size: 28px !important; }
  .vh-section { padding: 56px 0; }
}

@media (max-width: 1080px) {
  .vh-section { padding: 72px 0; }
}

/* ==========================================================================
   Header
   ========================================================================== */

header.vh-header.fixed-top {
  background: rgba(251, 250, 247, 0.95) !important;
  border-bottom: 1px solid var(--vh-border);
  box-shadow: none;
}

/* backdrop-filter (like transform/filter) creates a new containing
   block for position:fixed descendants — that trapped the mobile nav
   drawer/backdrop inside the header's own small box instead of the
   full viewport. Re-enable the blur only on desktop, where there is
   no fixed-position drawer nested inside the header. */
@media (min-width: 992px) {
  header.vh-header.fixed-top {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
}

.vh-topbar {
  background: var(--vh-green-deep);
  color: #C7D3CB;
  font-size: 13px;
}

.vh-social-link {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(199, 211, 203, 0.4);
  color: #C7D3CB;
  display: grid;
  place-items: center;
  font-size: 13px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.vh-social-link:hover {
  background: var(--vh-gold);
  border-color: var(--vh-gold);
  color: var(--vh-green-deep);
}

.vh-topbar-link {
  color: #F2EFE8;
  text-decoration: none;
  font-size: 13px;
}
.vh-topbar-link:hover { color: var(--vh-gold-light); }
.vh-topbar-muted { color: #9BB0A2; }

.vh-navbar {
  padding: 14px 0;
}
.vh-navbar .navbar-brand img {
  height: 66px;
  width: auto;
}

.vh-nav .nav-link {
  color: #3B4741 !important;
  font-weight: 500;
  font-size: 15px;
  padding: 6px 14px !important;
}
.vh-nav .nav-item:first-child .nav-link {
  color: var(--vh-ink) !important;
}
.vh-nav .nav-link:hover { color: var(--vh-green) !important; }

.vh-nav-cta {
  display: inline-block;
  background: var(--vh-green);
  color: var(--vh-bg) !important;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.vh-nav-cta:hover {
  background: var(--vh-green-dark);
  color: #fff !important;
}

/* mega-menu / dropdown: the legacy stylesheet makes all Bootstrap
   dropdowns black with a bright-green hover fill; override for the
   header's nav dropdowns specifically */
.vh-nav .dropdown-menu {
  background: #fff !important;
  border: 1px solid var(--vh-border) !important;
  border-radius: 8px !important;
  box-shadow: var(--vh-shadow);
  padding: 10px !important;
}
.vh-nav .dropdown-menu > li > a,
.vh-nav .dropdown-menu .dropdown-item {
  color: #3B4741 !important;
  font-size: 14.5px !important;
  border-radius: 4px !important;
  padding: 10px 14px !important;
  background: transparent !important;
}
.vh-nav .dropdown-menu > li:hover > a,
.vh-nav .dropdown-menu > li.active > a,
.vh-nav .dropdown-menu .dropdown-item:hover,
.vh-nav .dropdown-menu .dropdown-item.active {
  background-color: var(--vh-panel) !important;
  color: var(--vh-green) !important;
}
.vh-nav .nav_dropdown_full { max-height: none; overflow: visible; }
.vh-nav-dropdown-more { color: var(--vh-gold-text) !important; font-weight: 700 !important; }
.vh-nav .dropdown-menu > li:hover > .vh-nav-dropdown-more {
  background-color: transparent !important;
  color: var(--vh-gold-text) !important;
}

@media (max-width: 1080px) {
  .vh-topbar { display: none; }
}

@media (max-width: 991px) {
  .vh-nav-cta { margin-top: 10px; display: inline-flex; }
}

/* Mobile nav: app-style slide-in drawer. The legacy stylesheet paints
   the collapsed menu as a near-invisible black absolutely-positioned
   panel (.vital_topbar) that overlays the page, and the mega-menu
   keeps its desktop 840px / float:left;width:270px columns, overflowing
   the viewport. Rebuild the whole collapse as a fixed right-side panel
   with a backdrop, close button and full-width single-column dropdowns. */
@media (max-width: 991.98px) {
  body.vh-menu-open { overflow: hidden; }

  .vh-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(16, 32, 26, 0.55);
    z-index: 1045;
  }
  .vh-nav-backdrop.show { display: block; }

  #navbarSupportedContent {
    transition: none !important;
  }
  #navbarSupportedContent:not(.show) {
    display: none !important;
  }
  #navbarSupportedContent.show {
    display: flex !important;
    flex-direction: column;
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: #fff;
    z-index: 1050;
    padding: 20px 18px 30px;
    overflow-y: auto;
    box-shadow: -12px 0 32px rgba(0, 0, 0, 0.18);
  }

  .vh-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-left: auto;
    margin-bottom: 14px;
    border-radius: 50%;
    border: 1px solid var(--vh-border);
    background: var(--vh-panel);
    color: var(--vh-ink);
    flex-shrink: 0;
  }

  .vh-header .vital_topbar.vh-nav {
    position: static !important;
    top: auto !important;
    left: auto !important;
    background: transparent !important;
    width: 100% !important;
    box-shadow: none;
    border-radius: 0;
    padding: 0 !important;
    margin-top: 0;
  }
  .vh-nav .nav-item {
    border-bottom: 1px solid var(--vh-border);
  }
  .vh-nav .nav-item:last-child { border-bottom: 0; }
  .vh-nav .nav-link,
  header .navbar-expand-lg .navbar-nav .nav-link {
    color: var(--vh-ink) !important;
  }
  .vh-nav .dropdown-menu,
  .vh-nav .dropdown-menu.nav_dropdown_full {
    position: static !important;
    inset: auto !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    min-width: 100% !important;
    width: 100% !important;
    max-height: none !important;
    box-shadow: none !important;
    border: none !important;
    border-top: 1px solid var(--vh-border) !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }
  .vh-nav .dropdown-menu li {
    float: none !important;
    width: 100% !important;
  }
  .vh-nav .vh-nav-cta {
    width: 100%;
    justify-content: center;
    display: flex !important;
  }

  /* "Our Specializations" mega-menu lists 14 conditions — too tall for
     the drawer. Show the first 6 and rely on the existing
     "All N conditions" link (always the last item) to see the rest,
     rather than nesting a second scroll area inside the drawer. */
  .vh-nav .nav_dropdown_full li:nth-child(n + 7):not(:last-child) {
    display: none !important;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.vh-footer .footer-box {
  background: var(--vh-green-hero) !important;
  color: #B3C2B8;
  padding: 76px 0 40px;
}

.vh-footer .copright {
  background: var(--vh-green-hero) !important;
  border-top: 1px solid rgba(232, 237, 231, 0.16);
  padding: 22px 0 32px;
}

.vh-footer .copright p,
.vh-footer .copright a {
  color: #8A9A91 !important;
  font-size: 13.5px;
}

.vh-footer-logo {
  height: 64px;
  width: auto;
  background: var(--vh-bg);
  padding: 8px 12px;
  border-radius: 6px;
}

.vh-footer .widget h5 {
  font-family: var(--vh-font-body);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vh-gold);
  font-weight: 700;
}

.vh-footer .widget ul li,
.vh-footer .widget ul li p,
.vh-footer .widget ul li a {
  color: #B3C2B8;
  font-size: 15px;
}

.vh-footer .widget ul li a:hover { color: var(--vh-gold-light); }

.vh-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14.5px;
  padding: 5px 0;
}
.vh-hours-time { color: #E8EDE7; }

.vh-newsletter-input {
  background: rgba(251, 250, 247, 0.06) !important;
  border: 1px solid rgba(232, 237, 231, 0.28) !important;
  color: #F2EFE8 !important;
  border-radius: 100px !important;
  padding: 10px 14px !important;
}
.vh-newsletter-input::placeholder { color: #9DB0A4; }
.vh-newsletter-input:focus { border-color: var(--vh-gold) !important; box-shadow: none; }

.vh-social-link-lg {
  width: 38px;
  height: 38px;
  font-size: 15px;
  border-color: rgba(179, 194, 184, 0.4);
  color: #E8EDE7;
}

/* ==========================================================================
   Home page
   ========================================================================== */

/* neutralize legacy padding/background carried by classes kept only for
   existing carousel JS selectors (.case-study / .vita-testmon) */
.vh-panel-section.case-study { padding: 0; background-image: none; }
.vh-testimonial-section.vita-testmon { background-image: none; padding: 0; }

.vh-text-link {
  color: var(--vh-green);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
}
.vh-text-link:hover { color: var(--vh-gold-text); }

.vh-panel-section { background: var(--vh-panel); border-top: 1px solid var(--vh-border); border-bottom: 1px solid var(--vh-border); }

/* ---- hero ---- */

.vh-hero { position: relative; background: var(--vh-green-hero); color: #EAF0E9; overflow: hidden; }

.vh-hero-slide { position: relative; min-height: 560px; display: flex; align-items: center; }
.vh-hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vh-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #0C1A15 22%, rgba(12, 26, 21, 0.75) 50%, rgba(12, 26, 21, 0.3) 80%);
}
.vh-hero-content { position: relative; max-width: 620px; padding: 90px 0; z-index: 2; }

.vh-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(214, 168, 95, 0.5); border-radius: 100px;
  padding: 8px 18px; font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--vh-gold-light); font-weight: 700;
}
.vh-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--vh-gold); display: inline-block; }

.vh-hero-title {
  font-family: var(--vh-font-head);
  font-size: 58px; line-height: 1.06; letter-spacing: -0.02em;
  color: #fff; margin: 24px 0 0;
}
.vh-hero-lede { margin-top: 22px; font-size: 18px; line-height: 1.6; color: #BDCCC2; max-width: 46ch; }
.vh-hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.vh-hero-stats {
  position: relative; z-index: 2;
  display: flex; gap: 46px; flex-wrap: wrap;
  padding: 26px 0 76px;
  border-top: 1px solid rgba(234, 240, 233, 0.18);
  margin-top: -6px;
}
.vh-hero-stat-num { font-family: var(--vh-font-head); font-size: 30px; color: #fff; }
.vh-hero-stat-label { font-size: 13.5px; color: #9DB0A4; margin-top: 4px; }

/* ---- trust badges (overlap the hero's bottom edge) ---- */

.vh-badges-section { position: relative; z-index: 5; padding: 0; }

.vh-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -52px;
}

.vh-badge-card {
  background: #fff;
  border: 1px solid var(--vh-border);
  border-top: 3px solid var(--vh-green);
  border-radius: 8px;
  padding: 30px 28px;
  box-shadow: 0 18px 40px rgba(22, 40, 31, 0.08);
}
.vh-badge-card-gold { border-top-color: var(--vh-gold-text); }

.vh-badge-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
}
.vh-badge-icon-green { background: var(--vh-green); }
.vh-badge-icon-gold { background: var(--vh-gold-text); }

.vh-badge-title {
  font-family: var(--vh-font-head);
  font-size: 24px;
  color: var(--vh-green-deep);
  font-weight: 400;
  margin: 18px 0 0;
}
.vh-badge-text {
  margin-top: 10px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--vh-muted);
}
.vh-badge-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--vh-gold-text);
  text-decoration: none;
}
.vh-badge-link:hover { color: var(--vh-green); }

@media (max-width: 991px) {
  .vh-badges-grid { grid-template-columns: 1fr; margin-top: -40px; }
}

/* ---- video ---- */

.vh-video-frame { border-radius: var(--vh-radius); overflow: hidden; box-shadow: var(--vh-shadow); }

/* ---- process steps ---- */

.vh-step {
  background: var(--vh-bg);
  border: 1px solid var(--vh-border);
  border-radius: 8px;
  padding: 32px 26px;
  height: 100%;
}
.vh-step-head { display: flex; align-items: center; gap: 12px; }
.vh-step-num {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  background: var(--vh-green); color: var(--vh-bg);
  display: grid; place-items: center; font-size: 14px; font-weight: 700;
}
.vh-step-num-gold { background: var(--vh-gold); color: var(--vh-green-deep); }
.vh-step-rule { height: 1px; flex: 1; background: var(--vh-border); }
.vh-step h3 { font-family: var(--vh-font-body); font-size: 19.5px; font-weight: 700; color: var(--vh-green-deep); margin: 18px 0 0; }
.vh-step p { margin-top: 10px; font-size: 15px; line-height: 1.62; color: var(--vh-muted); }

/* ---- condition / product cards ---- */

.vh-condition-card {
  background: #fff; border: 1px solid var(--vh-border); border-radius: var(--vh-radius);
  padding: 30px 26px; height: 100%; transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.vh-condition-card:hover { box-shadow: var(--vh-shadow); transform: translateY(-3px); }
.vh-condition-card h3 { margin-top: 18px; }
.vh-condition-card p { margin-top: 8px; }
.vh-condition-card .vh-text-link { display: inline-block; margin-top: 12px; }

.vh-condition-badge {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--vh-font-body); font-weight: 700; font-size: 15px;
}
.vh-condition-badge-green { background: rgba(46, 91, 69, 0.1); color: var(--vh-green); }
.vh-condition-badge-gold { background: rgba(176, 123, 60, 0.12); color: var(--vh-gold-text); }

.vh-condition-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px;
}
.vh-condition-pill {
  display: inline-block;
  border: 1px solid var(--vh-border);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--vh-ink);
  text-decoration: none;
  background: #fff;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.vh-condition-pill:hover { border-color: var(--vh-green); color: var(--vh-green); }
.vh-condition-pill-more {
  border-color: var(--vh-gold);
  color: var(--vh-gold-text);
  font-weight: 700;
}
.vh-condition-pill-more:hover { background: var(--vh-gold); color: var(--vh-green-deep); }

.vh-product-card {
  background: #fff; border-radius: var(--vh-radius); padding: 24px; text-align: center; height: 100%;
  box-shadow: 0 12px 30px rgba(22, 40, 31, 0.08);
}
.vh-product-card img { width: 100%; max-height: 220px; object-fit: contain; margin-bottom: 16px; }
.vh-product-card p { margin: 10px 0 18px; color: var(--vh-muted); }

/* ---- doctor bio ---- */

.vh-doctor-img { border-radius: var(--vh-radius); box-shadow: var(--vh-shadow); }

.vh-doctor-media { position: relative; }
.vh-doctor-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--vh-radius);
  box-shadow: var(--vh-shadow);
  display: block;
}
.vh-doctor-badge {
  position: absolute;
  right: -14px;
  bottom: 24px;
  background: var(--vh-green-deep);
  color: #fff;
  padding: 14px 18px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 18px 38px rgba(22, 40, 31, 0.25);
}
.vh-doctor-badge-num { font-family: var(--vh-font-head); font-size: 26px; line-height: 1; }
.vh-doctor-badge-label {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vh-gold-light);
}

@media (max-width: 767px) {
  .vh-doctor-badge { right: 10px; bottom: 10px; }
}

/* ---- case studies ---- */

.vh-case-carousel .item { padding: 0; }
.vh-case-card {
  position: relative; display: block; border-radius: var(--vh-radius); overflow: hidden;
  aspect-ratio: 4 / 5; text-decoration: none;
}
.vh-case-card img { width: 100%; height: 100%; object-fit: cover; }
.vh-case-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(12, 26, 21, 0.85) 0%, rgba(12, 26, 21, 0.05) 55%);
  display: flex; align-items: flex-end; padding: 22px;
}
.vh-case-overlay h3 { font-family: var(--vh-font-head); color: #fff; font-size: 19px; line-height: 1.3; margin: 0; }

.case-study .owl-nav button {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff !important;
  border: 1px solid var(--vh-border) !important;
  color: var(--vh-green-deep) !important;
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(22, 40, 31, 0.12);
}
.case-study .owl-nav button:hover {
  background: var(--vh-green) !important;
  border-color: var(--vh-green) !important;
  color: #fff !important;
}
.case-study .owl-nav button span { font-size: 22px; line-height: 1; }
.case-study .owl-dots { text-align: center; margin-top: 20px; }
.case-study .owl-dots .owl-dot span { background: var(--vh-border); }
.case-study .owl-dots .owl-dot.active span { background: var(--vh-green); }

/* ---- testimonials ---- */

.vh-testi-top {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 22px;
}

.vh-testi-featured {
  background: var(--vh-green-hero);
  color: #EAF0E9;
  border-radius: var(--vh-radius);
  padding: 40px 38px;
  display: flex;
  flex-direction: column;
}
.vh-testi-quote-mark {
  font-family: var(--vh-font-head);
  font-size: 46px;
  line-height: 1;
  color: var(--vh-gold);
}
.vh-testi-featured-text {
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.55;
  color: #EAF0E9;
}

.vh-testi-stack { display: flex; flex-direction: column; gap: 22px; }

.vh-testi-card, .vh-testi-featured {
  height: 100%;
}
.vh-testi-card {
  background: #fff;
  border: 1px solid var(--vh-border);
  border-radius: var(--vh-radius);
  padding: 26px 28px;
}
.vh-testi-stars { color: var(--vh-gold); font-size: 14px; letter-spacing: 2px; }
.vh-testi-text {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--vh-muted);
}

.vh-testi-person { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.vh-testi-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
}
.vh-testi-avatar-green { background: rgba(46, 91, 69, 0.14); color: var(--vh-gold-light); }
.vh-testi-featured .vh-testi-avatar-gold { background: rgba(214, 168, 95, 0.2); color: var(--vh-gold-light); }
.vh-testi-avatar-gold { background: rgba(176, 123, 60, 0.14); color: var(--vh-gold-text); }
.vh-testi-avatar-green { background: rgba(46, 91, 69, 0.1); color: var(--vh-green); }
.vh-testi-person-name { font-weight: 700; color: var(--vh-green-deep); font-size: 15px; }
.vh-testi-featured .vh-testi-person-name { color: #fff; }

.vh-testi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}

@media (max-width: 900px) {
  .vh-testi-top { grid-template-columns: 1fr; }
  .vh-testi-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .vh-testi-row { grid-template-columns: 1fr; }
  .vh-testi-featured { padding: 30px 26px; }
}

/* ---- booking section ---- */

.vh-book-section { background: var(--vh-green-hero); color: #EAF0E9; padding: 96px 0; }
.vh-book-steps { margin-top: 30px; display: grid; gap: 14px; }
.vh-book-steps > div { display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; color: #CBD8CE; line-height: 1.5; }
.vh-book-steps span {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(214, 168, 95, 0.18); color: var(--vh-gold-light);
  display: grid; place-items: center; font-size: 12.5px; font-weight: 800; flex: none;
}
.vh-book-address {
  margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(234, 240, 233, 0.18);
  font-size: 15px; color: #BDCCC2; line-height: 1.7;
}
.vh-book-address a { color: #EAF0E9; }

/* ---- events ---- */

.vh-event-card { background: #fff; border-radius: var(--vh-radius); overflow: hidden; border: 1px solid var(--vh-border); height: 100%; }
.vh-event-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.vh-event-img img { width: 100%; height: 100%; object-fit: cover; }
.vh-event-date {
  position: absolute; top: 14px; left: 14px;
  background: var(--vh-green-deep);
  color: #fff;
  border-radius: 6px;
  padding: 8px 12px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(22, 40, 31, 0.25);
}
.vh-event-date-day { font-family: var(--vh-font-head); font-size: 20px; line-height: 1.1; }
.vh-event-date-month { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--vh-gold-light); margin-top: 2px; }
.vh-event-body { padding: 20px; }
.vh-event-venue { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--vh-gold-text); }
.vh-event-body h3 { margin-top: 8px; }
.vh-event-body h3 a { color: var(--vh-green-deep); }

/* ---- blog ---- */

.vh-blog-card { background: #fff; border-radius: var(--vh-radius); overflow: hidden; border: 1px solid var(--vh-border); height: 100%; }
.vh-blog-img { aspect-ratio: 16 / 10; overflow: hidden; }
.vh-blog-img img { width: 100%; height: 100%; object-fit: cover; }
.vh-blog-body { padding: 22px; }
.vh-blog-date { font-size: 13px; color: var(--vh-muted-light); }
.vh-blog-body h3 { margin: 8px 0; }
.vh-blog-body h3 a { color: var(--vh-green-deep); }

/* ---- service listing ---- */

.vh-service-card {
  background: #fff; border-radius: var(--vh-radius); overflow: hidden;
  border: 1px solid var(--vh-border); height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.vh-service-card:hover { box-shadow: var(--vh-shadow); transform: translateY(-3px); }
.vh-service-card-img { aspect-ratio: 16 / 11; overflow: hidden; }
.vh-service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.vh-service-card-body { padding: 24px; }
.vh-service-card-title {
  display: block;
  font-family: var(--vh-font-head);
  font-size: 21px;
  color: var(--vh-green-deep);
  text-decoration: none;
  line-height: 1.3;
}
.vh-service-card-title:hover { color: var(--vh-green); }
.vh-service-card-body p { margin-top: 10px; font-size: 15px; line-height: 1.6; color: var(--vh-muted); }
.vh-service-card-body .vh-badge-link { display: inline-block; margin-top: 14px; }

/* ---- service detail page ---- */

.vh-service-detail-img {
  border-radius: var(--vh-radius);
  overflow: hidden;
  box-shadow: var(--vh-shadow);
}
.vh-service-detail-img img { width: 100%; height: auto; display: block; }

.vh-prose { margin-top: 30px; color: var(--vh-ink); font-size: 16px; line-height: 1.75; }
.vh-prose h1, .vh-prose h2, .vh-prose h3, .vh-prose h4 { color: var(--vh-green-deep); margin-top: 30px; margin-bottom: 12px; }
.vh-prose h1:first-child, .vh-prose h2:first-child, .vh-prose h3:first-child { margin-top: 0; }
.vh-prose p { margin-bottom: 16px; }
.vh-prose ul, .vh-prose ol { margin: 0 0 16px; padding-left: 22px; }
.vh-prose li { margin-bottom: 6px; }
.vh-prose a { color: var(--vh-green); font-weight: 600; }
.vh-prose img { max-width: 100%; height: auto; border-radius: var(--vh-radius-sm); }
.vh-prose strong { color: var(--vh-green-deep); }

.vh-sidebar-widget {
  background: #fff;
  border: 1px solid var(--vh-border);
  border-radius: var(--vh-radius);
  padding: 30px 28px;
  margin-top: 26px;
}
.vh-sidebar-widget h3 {
  font-family: var(--vh-font-head);
  font-size: 22px;
  color: var(--vh-green-deep);
  font-weight: 400;
  margin: 0;
}
.vh-sidebar-list {
  margin-top: 16px;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 4px;
}
.vh-sidebar-list li { border-bottom: 1px solid var(--vh-border); }
.vh-sidebar-list li:last-child { border-bottom: 0; }
.vh-sidebar-list li a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 4px;
  color: var(--vh-ink);
  font-size: 15px;
  text-decoration: none;
}
.vh-sidebar-list li a:hover,
.vh-sidebar-list li.active a { color: var(--vh-green); font-weight: 600; }
.vh-sidebar-list li a i { font-size: 13px; color: var(--vh-muted-light); flex: none; }
.vh-sidebar-list li.active a i { color: var(--vh-green); }
.vh-sidebar-list::-webkit-scrollbar { width: 6px; }
.vh-sidebar-list::-webkit-scrollbar-thumb { background: var(--vh-border); border-radius: 100px; }

.vh-gender-group {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  padding: 0 4px;
}
.vh-gender-option {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  color: var(--vh-ink);
  cursor: pointer;
  margin: 0;
}
.vh-gender-option input { accent-color: var(--vh-green); width: 16px; height: 16px; }

/* ---- contact us ---- */

.vh-contact-list { margin-top: 30px; display: grid; gap: 22px; }
.vh-contact-row { display: flex; align-items: flex-start; gap: 16px; }
.vh-contact-icon {
  width: 48px; height: 48px; flex: none;
  border-radius: 14px;
  background: var(--vh-green);
  display: grid; place-items: center;
}
.vh-contact-row h4 {
  font-family: var(--vh-font-head);
  font-size: 18px;
  color: var(--vh-green-deep);
  font-weight: 400;
  margin: 0 0 4px;
}
.vh-contact-row p { font-size: 15px; color: var(--vh-muted); line-height: 1.6; margin: 0; }
.vh-contact-row p a { color: var(--vh-green); font-weight: 600; }

.vh-contact-form-card {
  background: #fff;
  border: 1px solid var(--vh-border);
  border-radius: var(--vh-radius);
  box-shadow: var(--vh-shadow);
  padding: 44px 44px;
}

.vh-map-section iframe { display: block; }

/* ---- product reviews tab ---- */

.vh-review-summary { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; flex-wrap: wrap; }
.vh-review-stars { color: var(--vh-gold); font-size: 15px; letter-spacing: 1px; }
.vh-review-avg { font-family: var(--vh-font-head); font-size: 18px; color: var(--vh-green-deep); font-weight: 700; }
.vh-review-count { color: var(--vh-muted-light); font-size: 14px; }

.vh-review-card {
  background: #fff;
  border: 1px solid var(--vh-border);
  border-radius: var(--vh-radius);
  padding: 22px 24px;
  height: 100%;
}
.vh-review-card h6 { font-family: var(--vh-font-head); font-size: 17px; color: var(--vh-green-deep); font-weight: 400; margin: 0; }
.vh-review-card small { color: var(--vh-muted-light); font-size: 12.5px; white-space: nowrap; }
.vh-review-title { margin-top: 4px; font-weight: 700; color: var(--vh-ink); font-size: 15px; }
.vh-review-comment { color: var(--vh-muted); font-size: 14.5px; line-height: 1.6; margin: 4px 0 0; }

/* ---- lab test reports ---- */

.vh-lab-filter {
  display: flex;
  gap: 10px;
}
.vh-lab-filter .form-select {
  flex: 1;
  border: 1px solid #DFDBD1;
  background: #fff;
  padding: 12px 14px;
  font-size: 15px;
  border-radius: var(--vh-radius-sm);
}
.vh-lab-filter .form-select:focus { border-color: var(--vh-green); box-shadow: none; outline: none; }

.vh-report-card {
  background: #fff;
  border: 1px solid var(--vh-border);
  border-radius: var(--vh-radius);
  padding: 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.vh-report-card:hover { box-shadow: var(--vh-shadow); transform: translateY(-3px); }
.vh-report-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(46, 91, 69, 0.1); color: var(--vh-green);
  display: grid; place-items: center;
}
.vh-report-badge {
  background: var(--vh-panel);
  color: var(--vh-green);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 100px;
  height: fit-content;
}
.vh-report-title { font-family: var(--vh-font-head); font-size: 19px; color: var(--vh-green-deep); font-weight: 400; margin: 14px 0 4px; }
.vh-report-batch { font-size: 14px; color: var(--vh-muted); margin: 0; }
.vh-report-batch strong { color: var(--vh-ink); }
.vh-report-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--vh-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.vh-report-date { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--vh-muted-light); }

/* ---- FAQ ---- */

.vh-faq-accordion .accordion-item { border: 1px solid var(--vh-border); border-radius: var(--vh-radius) !important; margin-bottom: 12px; overflow: hidden; }
.vh-faq-accordion .accordion-button {
  font-family: var(--vh-font-head); font-size: 18px; color: var(--vh-green-deep); font-weight: 400;
  padding: 20px 22px;
}
.vh-faq-accordion .accordion-button:not(.collapsed) { background: var(--vh-panel); color: var(--vh-green-deep); box-shadow: none; }
.vh-faq-accordion .accordion-button:focus { box-shadow: none; border-color: var(--vh-border); }
.vh-faq-accordion .accordion-body { color: var(--vh-muted); font-size: 15px; line-height: 1.7; }

/* ---- app download card ---- */

.vh-app-card {
  background: var(--vh-green-hero);
  border-radius: var(--vh-radius);
  padding: 48px 50px;
}
.vh-store-badge img { height: 48px; width: auto; }

.vh-app-qr {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.vh-app-qr-box {
  background: #fff;
  border-radius: var(--vh-radius-sm);
  padding: 14px;
  flex: none;
}
.vh-app-qr-box img { display: block; width: 130px; height: 130px; }
.vh-app-qr-text {
  color: #EAF0E9;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 767px) {
  .vh-app-card { padding: 34px 26px; }
  .vh-app-qr { justify-content: flex-start; margin-top: 8px; }
}

/* ---- responsive ---- */

@media (max-width: 991px) {
  .vh-hero-title { font-size: 42px; }
  .vh-hero-slide { min-height: 480px; }
}

@media (max-width: 640px) {
  .vh-hero-title { font-size: 32px; }
  .vh-hero-slide { min-height: 420px; padding: 40px 0; }
  .vh-hero-stats { gap: 26px; }
  .vh-book-section, .vh-app-band { padding: 56px 0; }
}

/* ==========================================================================
   Inner-page breadcrumb banner
   Every inner page shares the same .full.breadcrumbs / .Streamlining-page /
   .breadcrumb markup, so restyling it here updates every page at once —
   no per-page template changes needed.
   ========================================================================== */

.breadcrumbs {
  background: linear-gradient(120deg, #10201A 0%, #1B3327 100%) !important;
  position: relative;
  overflow: hidden;
}
.breadcrumbs::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 100% at 100% 0%, rgba(214, 168, 95, 0.14) 0%, rgba(214, 168, 95, 0) 60%);
  pointer-events: none;
}

.Streamlining-page { position: relative; z-index: 1; }

.Streamlining-page h1 {
  font-family: var(--vh-font-head) !important;
  font-weight: 400 !important;
  font-size: 42px !important;
  color: #fff !important;
  letter-spacing: -0.01em;
}

.breadcrumbs .breadcrumb { margin-top: 10px; }

.breadcrumbs .breadcrumb li,
.breadcrumbs .breadcrumb li a {
  color: #C7D3CB !important;
  font-weight: 500;
}

.breadcrumbs .analytic { color: var(--vh-gold) !important; font-weight: 600; }

.breadcrumbs .bi-house-door-fill { color: var(--vh-gold-light) !important; }

@media (max-width: 640px) {
  .Streamlining-page h1 { font-size: 28px !important; }
}

/* ==========================================================================
   Site-wide typography + legacy accent-color rebrand
   The existing stylesheet hardcodes the old teal (#519894) per-selector
   rather than through a variable, so it's overridden selector-by-selector
   here for every shared component that still carries it across inner
   pages — no per-page template edits required.
   ========================================================================== */

:root { --primary-color: var(--vh-green); }

body, h1, h2, h3, h4, h5, h6, p, a, span, li, td, th, input, textarea, select, button {
  font-family: var(--vh-font-body);
}

h1, h2, h3, h4 {
  font-family: var(--vh-font-head);
  color: var(--vh-green-deep);
  font-weight: 400;
}

/* pagination (blog / service / casestudie listings) */
.page-link { color: var(--vh-green); }
.page-link:hover { color: #fff !important; background-color: var(--vh-green) !important; border-color: var(--vh-green) !important; }
.page-item.active .page-link { background-color: var(--vh-green); border-color: var(--vh-green); }

/* event list/detail */
.event-date { color: var(--vh-green) !important; }
.event-text a:hover { color: var(--vh-gold) !important; }
.event-form { background: var(--vh-green-deep) !important; }
.sbmit-form button:hover { background: var(--vh-green-dark) !important; }

/* blog list/detail */
.blogtext a.bloghead:hover { color: var(--vh-gold) !important; }
.vitalhome-blog a { color: var(--vh-green) !important; }

/* service list/detail */
.servics-detail a { background: var(--vh-green) !important; }
.servics-detail a:hover { border-color: var(--vh-green) !important; color: var(--vh-green) !important; }
.vitahome-allserv a { background: var(--vh-green) !important; border-radius: 100px; }
.vitahome-allserv a:hover { border-color: var(--vh-green) !important; color: var(--vh-green) !important; }

/* case studies */
.viewproject a:hover span { color: var(--vh-gold) !important; }
.vita-protec a { color: var(--vh-green) !important; border-color: var(--vh-green) !important; }

/* about-us */
.about-right span { background: var(--vh-gold) !important; color: var(--vh-green-deep) !important; }

/* widgets / sidebars */
.widget ul li a:hover,
.widget.widget_categories ul li a:hover { color: var(--vh-gold) !important; }

/* testimonial page + any remaining .vita-testmon usage outside the home page */
.vita-testmon { background-image: none !important; background: var(--vh-green-hero) !important; }
.testo-vita { background: #fff; border-radius: var(--vh-radius); }
.testo-vita h5 { font-family: var(--vh-font-head); color: var(--vh-green-deep); }

.vh-footer .submit-btn button { background: var(--vh-gold) !important; color: var(--vh-green-deep) !important; }

/* ==========================================================================
   Hero carousel nav arrows
   ========================================================================== */

div#banner-slider .owl-nav button:first-child,
div#banner-slider .owl-nav button:last-child {
  background: rgba(16, 32, 26, 0.55) !important;
  border: 1px solid rgba(214, 168, 95, 0.5) !important;
  color: #fff !important;
  transition: background 0.2s ease, border-color 0.2s ease;
}
div#banner-slider .owl-nav button:hover {
  background: var(--vh-gold) !important;
  border-color: var(--vh-gold) !important;
  color: var(--vh-green-deep) !important;
}
div#banner-slider .owl-nav button span {
  font-size: 22px;
  line-height: 1;
}

/* ==========================================================================
   Product promo bar
   ========================================================================== */

.vh-promo-bar {
  display: block;
  background: var(--vh-gold);
  color: var(--vh-green-deep);
  text-decoration: none;
  /* header is position:fixed (removed from normal flow), so the first
     element after it needs its own top clearance or it renders hidden
     underneath the topbar+nav */
  margin-top: 132px;
}
@media (max-width: 1080px) {
  .vh-promo-bar { margin-top: 94px; }
}

/* fallback: if the promo bar doesn't render (no products at all), the
   hero itself needs the same header clearance since it'd then be the
   first element after the fixed header */
header + section.vh-hero { margin-top: 132px; }
@media (max-width: 1080px) {
  header + section.vh-hero { margin-top: 94px; }
}
.vh-promo-bar:hover { color: var(--vh-green-deep); background: #E4BB78; }

.vh-promo-bar-inner {
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  row-gap: 6px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.vh-promo-badge {
  background: var(--vh-green-deep);
  color: var(--vh-gold-light);
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.vh-promo-cta {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   Featured product (single-product showcase)
   ========================================================================== */

.vh-product-feature {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 50px;
  align-items: center;
  background: var(--vh-bg);
  border: 1px solid var(--vh-border);
  border-radius: 14px;
  padding: 44px 46px;
}

.vh-product-feature-media {
  position: relative;
}
.vh-product-feature-media img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  display: block;
}
.vh-product-weight {
  position: absolute;
  right: -14px;
  top: 24px;
  background: var(--vh-green);
  color: var(--vh-bg);
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--vh-font-head);
  font-size: 18px;
  line-height: 1;
  text-align: center;
  box-shadow: 0 18px 38px rgba(22, 40, 31, 0.2);
}

.vh-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #EDE3D0;
  color: var(--vh-gold-text);
  padding: 7px 15px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.vh-product-badge span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--vh-gold-text); display: inline-block;
}

.vh-product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}
.vh-product-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--vh-panel);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--vh-green-deep);
  line-height: 1.4;
}
.vh-product-feature-item svg { flex: none; margin-top: 1px; color: var(--vh-green); }

@media (max-width: 480px) {
  .vh-product-features { grid-template-columns: 1fr; }
}

.vh-product-price { margin-top: 18px; display: flex; align-items: baseline; gap: 10px; }
.vh-product-price-now { font-family: var(--vh-font-head); font-size: 28px; color: var(--vh-green-deep); }
.vh-product-price-was { font-size: 16px; color: var(--vh-muted-light); text-decoration: line-through; }

.vh-product-actions { display: flex; align-items: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .vh-product-feature { grid-template-columns: 1fr; padding: 30px; }
  .vh-product-feature-media img { aspect-ratio: 16 / 10; }
  .vh-product-weight { right: 10px; top: 10px; }
}

.vh-product-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 26px;
}
.vh-product-trust-card {
  background: var(--vh-bg);
  border: 1px solid var(--vh-border);
  border-radius: 10px;
  padding: 26px;
}
.vh-product-trust-card-dashed { border-style: dashed; border-color: #CFC9BA; }
.vh-product-trust-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
}
.vh-product-trust-icon-green { background: #EEF2EA; color: var(--vh-green); }
.vh-product-trust-icon-gold { background: #F6EEE1; color: var(--vh-gold-text); }
.vh-product-trust-icon-muted { background: #ECEAE0; color: var(--vh-muted-light); }
.vh-product-trust-card h4 { font-size: 18px; font-weight: 700; color: var(--vh-green-deep); margin: 16px 0 0; }
.vh-product-trust-card p { margin-top: 8px; font-size: 15px; line-height: 1.6; color: var(--vh-muted); }
.vh-product-trust-card p a { font-weight: 600; color: var(--vh-green); }

@media (max-width: 767px) {
  .vh-product-trust-grid { grid-template-columns: 1fr; }
}

/* ---- stats band ---- */

.vh-stats-band {
  background: var(--vh-green);
  padding: 64px 0;
}

.vh-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vh-stat-item {
  padding-left: 22px;
  border-left: 1px solid rgba(214, 168, 95, 0.5);
}
.vh-stat-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.vh-stat-num {
  font-family: var(--vh-font-head);
  font-size: 46px;
  color: #fff;
  line-height: 1;
}

.vh-stat-label {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767px) {
  .vh-stats-band { padding: 44px 0; }
  .vh-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .vh-stat-num { font-size: 34px; }
  .vh-stat-item:nth-child(2) { padding-left: 22px; border-left: 1px solid rgba(214, 168, 95, 0.5); }
}

@media (max-width: 420px) {
  .vh-stats-grid { grid-template-columns: 1fr; }
  .vh-stat-item:nth-child(2) { padding-left: 0; border-left: 0; }
}
