/* ==========================================================================
   VERDI HERD — Serene Minimalist Botanical Luxury Design System
   Natural Sand, Muted Forest & Pure Alabaster
   Plus Jakarta Sans (Display) + Inter (Body) + Cairo (Arabic)
   ========================================================================== */

/* ---------------------------------------------------------------------- */
/* 1. DESIGN TOKENS                                                        */
/* ---------------------------------------------------------------------- */
:root {
  /* Serene Botanical Palette */
  --primary-color: #1B3B2B;       /* Deep Serene Forest Green */
  --primary-dark: #101F17;        /* Obsidian Forest */
  --primary-light: #2D5842;       /* Mid Forest */
  --secondary-color: #3D6E54;     /* Muted Sage */
  --accent-color: #C3A36C;        /* Warm Earth Gold */
  --gold-color: #C3A36C;          /* Sand Gold Accent */
  --gold-light: #E0CEAC;          /* Soft Pale Gold */
  --gold-dim: #9E804B;            /* Deep Ochre */
  
  /* Neutral Surfaces & Text */
  --text-dark: #18221D;           /* Deep Forest Charcoal */
  --text-muted: #5E6D65;          /* Muted Sage Slate */
  --text-light: #88978F;          /* Subtle Slate */
  --text-on-dark: #FAF9F5;        /* Alabaster Paper */
  --text-on-dark-muted: rgba(250, 249, 245, 0.78);
  
  --background-light: #FAF9F5;    /* Alabaster Linen Base */
  --background-cream: #F3F1E9;    /* Soft Warm Sand */
  --background-dark: #101F17;     /* Pure Deep Pine */
  
  --surface-container: #FFFFFF;   /* Pure Card White */
  --surface-container-high: #EDEBE2; /* Soft Sand Accent */
  
  --border-color: #E6E4DA;        /* Whispering Hairline Border */
  --border-color-dark: rgba(250, 249, 245, 0.12);
  
  --error-color: #B9382F;
  --success-color: #2D6E4B;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-arabic: 'Cairo', 'Segoe UI', Tahoma, sans-serif;

  /* Spacing Scale (Airy, Generous, Calm & Compact) */
  --space-unit: 8px;
  --gutter: 24px;
  --section-gap: 64px;
  --section-gap-mobile: 40px;
  --margin-desktop: 40px;
  --margin-mobile: 18px;
  --container-max: 1240px;

  /* Geometry & Soft Elevation */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Refined Easing */
  --ease-serene: cubic-bezier(0.2, 0.9, 0.3, 1);
  --duration-fast: 160ms;
  --duration-base: 300ms;
  --duration-slow: 600ms;

  /* Bootstrap Variable Mappings */
  --bs-body-font-family: var(--font-body);
  --bs-body-color: var(--text-dark);
  --bs-body-bg: var(--background-light);
  --bs-link-color: var(--primary-color);
  --bs-link-hover-color: var(--secondary-color);
  --bs-border-color: var(--border-color);
  --bs-border-radius: var(--radius-md);
  --bs-primary: #1B3B2B;
  --bs-primary-rgb: 27, 59, 43;
}

/* ---------------------------------------------------------------------- */
/* 2. BASE / RESET                                                         */
/* ---------------------------------------------------------------------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--background-light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-serene);
}

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

::selection {
  background: var(--gold-light);
  color: var(--primary-dark);
}

:focus-visible {
  outline: 2px solid var(--gold-color);
  outline-offset: 3px;
}

.container-vh {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--margin-mobile);
}
@media (min-width: 992px) {
  .container-vh { padding-inline: var(--margin-desktop); }
}

section, .vh-section { position: relative; }

.vh-section-pad { padding-block: var(--section-gap-mobile); }
@media (min-width: 992px) {
  .vh-section-pad { padding-block: var(--section-gap); }
}
.vh-section-pad-sm { padding-block: 40px; }
@media (min-width: 992px) {
  .vh-section-pad-sm { padding-block: 60px; }
}

.bg-cream { background-color: var(--background-cream); color: var(--text-dark); }
.bg-dark-green, .bg-primary-dark { background-color: var(--background-dark); color: var(--text-on-dark); }
.bg-ivory, .bg-white { background-color: #FFFFFF; color: var(--text-dark); }

/* ---------------------------------------------------------------------- */
/* 3. TYPOGRAPHY                                                           */
/* ---------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, .font-display {
  font-family: var(--font-display);
  color: inherit;
  letter-spacing: -0.015em;
  font-weight: 600;
}

.display-hero {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .display-hero { font-size: 34px; line-height: 1.18; }
}
@media (min-width: 1200px) {
  .display-hero { font-size: 40px; line-height: 48px; }
}

.headline-lg {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
@media (min-width: 992px) {
  .headline-lg { font-size: 32px; line-height: 40px; }
}

.headline-md {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .headline-md { font-size: 26px; line-height: 34px; }
}

.body-lg {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}
@media (min-width: 992px) {
  .body-lg { font-size: 18px; line-height: 28px; }
}

.body-md {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

.label-caps {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-muted-vh { color: var(--text-muted); }
.text-gold { color: var(--gold-color); }
.text-on-dark-muted { color: var(--text-on-dark-muted); }
.text-primary-vh { color: var(--primary-color); }

/* Overline Badge */
.vh-overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bg-dark-green .vh-overline,
.bg-primary-dark .vh-overline { color: var(--gold-light); }

.vh-overline::before {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
}

.vh-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--background-cream);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-color);
}

.vh-glass-panel {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}

/* ---------------------------------------------------------------------- */
/* 4. BUTTONS & PILLS                                                      */
/* ---------------------------------------------------------------------- */
.btn-vh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: all var(--duration-fast) var(--ease-serene);
  white-space: nowrap;
  cursor: pointer;
}

.btn-vh-primary {
  background-color: var(--primary-color);
  color: #FFFFFF;
  border-color: var(--primary-color);
}
.btn-vh-primary:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(27, 59, 43, 0.16);
  transform: translateY(-1px);
}

.btn-vh-gold {
  background-color: var(--gold-color);
  color: #101F17;
  border-color: var(--gold-color);
}
.btn-vh-gold:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  color: #101F17;
  box-shadow: 0 6px 16px rgba(195, 163, 108, 0.22);
  transform: translateY(-1px);
}

.btn-vh-outline {
  background-color: transparent;
  color: var(--text-dark);
  border-color: var(--border-color);
}
.btn-vh-outline:hover {
  background-color: #FFFFFF;
  border-color: var(--text-dark);
  color: var(--text-dark);
  transform: translateY(-1px);
}

.btn-vh-outline-light {
  background-color: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.24);
}
.btn-vh-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn-vh-sm { padding: 6px 14px; font-size: 11.5px; }
.btn-vh-lg { padding: 10px 22px; font-size: 13px; }
.btn-vh-inline { width: auto; }
.btn-vh-block { width: 100%; }

/* ---------------------------------------------------------------------- */
/* 5. HEADER & NAVIGATION (Airy, Minimalist)                               */
/* ---------------------------------------------------------------------- */
.vh-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(250, 249, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: background-color var(--duration-base) var(--ease-serene), box-shadow var(--duration-base) var(--ease-serene);
}
.vh-header.is-scrolled {
  background: rgba(250, 249, 245, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.vh-header .navbar-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
}
.vh-header .navbar-brand .brand-mark {
  color: var(--secondary-color);
}

.vh-nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted) !important;
  padding: 6px 0 !important;
  margin-inline: 14px;
  position: relative;
  transition: color var(--duration-fast) var(--ease-serene);
}
.vh-nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--duration-base) var(--ease-serene);
}
.vh-nav-link:hover { color: var(--text-dark) !important; }
.vh-nav-link:hover::after, .vh-nav-link.active::after { transform: scaleX(1); }
.vh-nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.vh-lang-switcher { position: relative; }
.vh-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  line-height: 1;
}
.vh-lang-toggle:focus { border-color: var(--primary-color); outline: none; }
.vh-lang-toggle::after { margin-inline-start: 2px; }
.vh-lang-flag {
  display: inline-flex;
  width: 18px;
  height: 13px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.vh-lang-flag svg { width: 100%; height: 100%; display: block; }
.vh-lang-menu {
  min-width: 160px;
  padding: 6px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.vh-lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
}
.vh-lang-item.active,
.vh-lang-item:hover {
  background: var(--bg-cream, #f6f3ec);
  color: var(--primary-color);
}

.vh-header .navbar-toggler {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  color: var(--text-dark);
}

.vh-offcanvas {
  background: var(--background-light);
  color: var(--text-dark);
}

/* ---------------------------------------------------------------------- */
/* 6. HERO SECTION (Serene Editorial Split)                                */
/* ---------------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
/* 5b. CERTIFICATIONS TRUST STRIP (sits above the footer)                 */
/* ---------------------------------------------------------------------- */
.vh-certs-strip {
  background: var(--background-cream);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding-block: 28px;
  position: relative;
  z-index: 3;
}
.vh-certs-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 26px;
}
.vh-certs-strip-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.vh-certs-strip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.vh-certs-strip-badge {
  width: 60px;
  height: 60px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  box-shadow: 0 2px 8px rgba(16, 31, 23, 0.05);
  transition: transform var(--duration-fast) var(--ease-serene), box-shadow var(--duration-fast) var(--ease-serene);
  overflow: hidden;
}
.vh-certs-strip-badge img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.vh-certs-strip-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(16, 31, 23, 0.12);
}
@media (min-width: 768px) {
  .vh-certs-strip-badge { width: 72px; height: 72px; }
}

/* ---------------------------------------------------------------------- */
/* 6. FULL-SCREEN 100VH CINEMATIC BOTANICAL HERO                         */
/* ---------------------------------------------------------------------- */
.vh-hero-100vh {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
}

/* Background lives on its own layers (not the section itself) so each slide
   can be scaled/crossfaded without moving the text content. */
.vh-hero-bg-layer {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0;
  animation: vh-hero-zoom 18s ease-in-out infinite, vh-hero-crossfade 18s ease-in-out infinite;
}
.vh-hero-bg-layer:nth-child(1) { background-image: url('../assets/images/home/hero-nile-dawn-1.jpg'); animation-delay: 0s, 0s; }
.vh-hero-bg-layer:nth-child(2) { background-image: url('../assets/images/home/hero-nile-dawn-2.jpg'); animation-delay: -6s, -6s; }
.vh-hero-bg-layer:nth-child(3) { background-image: url('../assets/images/home/hero-nile-dawn-3.jpg'); animation-delay: -12s, -12s; }
@keyframes vh-hero-zoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
@keyframes vh-hero-crossfade {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  29%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .vh-hero-bg-layer { animation: none; }
  .vh-hero-bg-layer:nth-child(1) { opacity: 1; }
}

.vh-hero-100vh-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 33, 24, 0.52) 0%, rgba(16, 33, 24, 0.78) 100%);
  z-index: 1;
}

.vh-hero-100vh-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.vh-hero-100vh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.vh-hero-100vh-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .vh-hero-100vh-title { font-size: 38px; }
}
@media (min-width: 1200px) {
  .vh-hero-100vh-title { font-size: 46px; line-height: 1.18; }
}

.vh-hero-100vh-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin-inline: auto;
}

.vh-hero-trust-glass {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.vh-glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
}
.vh-glass-pill .bi {
  color: var(--gold-light);
}

.vh-hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-serene);
  animation: vh-bounce 2s infinite;
}
.vh-hero-scroll-indicator:hover {
  color: #FFFFFF;
}
@keyframes vh-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -8px); }
  60% { transform: translate(-50%, -4px); }
}

/* ---------------------------------------------------------------------- */
/* DISTINCT IMAGE BACKGROUND SUBPAGE HEROES                               */
/* ---------------------------------------------------------------------- */

/* 1. About Us Hero — Nile Dawn Harvest Background */
.vh-hero-about-luxury {
  background: linear-gradient(180deg, rgba(16, 35, 25, 0.68) 0%, rgba(16, 35, 25, 0.88) 100%), url('../assets/images/about/hero-about-bg.jpg') center center / cover no-repeat;
  color: #FFFFFF;
  padding-block: 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(195, 163, 108, 0.25);
}
@media (min-width: 992px) {
  .vh-hero-about-luxury { padding-block: 72px; }
}
.vh-hero-about-luxury .vh-badge-gold {
  background: rgba(195, 163, 108, 0.2);
  color: var(--gold-light);
  border: 1px solid rgba(195, 163, 108, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

/* 2. Packaging Hero — Logistics Facility Background */
.vh-hero-packaging-luxury {
  background: linear-gradient(180deg, rgba(14, 28, 20, 0.7) 0%, rgba(14, 28, 20, 0.9) 100%), url('../assets/images/packaging/hero-packaging-bg.jpg') center center / cover no-repeat;
  color: #FFFFFF;
  padding-block: 56px;
  position: relative;
  border-bottom: 1px solid rgba(195, 163, 108, 0.25);
}
@media (min-width: 992px) {
  .vh-hero-packaging-luxury { padding-block: 72px; }
}

/* 3. Contact Hero — Luxury B2B Trade Desk Background */
.vh-hero-contact-luxury {
  background: linear-gradient(180deg, rgba(12, 25, 18, 0.72) 0%, rgba(12, 25, 18, 0.92) 100%), url('../assets/images/contact/hero-contact-bg.jpg') center center / cover no-repeat;
  color: #FFFFFF;
  padding-block: 52px;
  position: relative;
  border-bottom: 1px solid rgba(195, 163, 108, 0.25);
}
@media (min-width: 992px) {
  .vh-hero-contact-luxury { padding-block: 64px; }
}

/* 4. Products Hero — Botanical Flatlay Background */
.vh-hero-products-luxury {
  background: linear-gradient(180deg, rgba(16, 33, 24, 0.65) 0%, rgba(16, 33, 24, 0.88) 100%), url('../assets/images/products/hero-products-bg.jpg') center center / cover no-repeat;
  color: #FFFFFF;
  padding-block: 52px;
  position: relative;
  border-bottom: 1px solid rgba(195, 163, 108, 0.25);
}
@media (min-width: 992px) {
  .vh-hero-products-luxury { padding-block: 64px; }
}

/* 5. Farms Hero — Real Field Photography Background */
.vh-hero-farms-luxury {
  background: linear-gradient(180deg, rgba(16, 35, 25, 0.65) 0%, rgba(16, 35, 25, 0.9) 100%), url('../assets/images/farms/parsley-field-harvest.jpg') center center / cover no-repeat;
  color: #FFFFFF;
  padding-block: 56px;
  position: relative;
  border-bottom: 1px solid rgba(195, 163, 108, 0.25);
}
@media (min-width: 992px) {
  .vh-hero-farms-luxury { padding-block: 72px; }
}

.vh-hero-serene {
  padding-top: 36px;
  padding-bottom: 56px;
  background: var(--background-light);
  position: relative;
}
@media (min-width: 992px) {
  .vh-hero-serene {
    padding-top: 56px;
    padding-bottom: 72px;
  }
}

.vh-hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 48px -12px rgba(27, 59, 43, 0.12);
  border: 1px solid var(--border-color);
}
.vh-hero-visual img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 1.2s var(--ease-serene);
}
.vh-hero-visual:hover img {
  transform: scale(1.04);
}

.vh-hero-live-card {
  position: absolute;
  bottom: 20px;
  inset-inline: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vh-hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.vh-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}
.vh-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
}
.vh-trust-item .bi {
  color: var(--secondary-color);
  font-size: 14px;
}

/* About Page Distinct Hero Collage */
.vh-about-hero-collage {
  position: relative;
  padding-bottom: 24px;
  padding-inline-end: 16px;
}
.vh-about-hero-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 48px -12px rgba(27, 59, 43, 0.12);
  border: 1px solid var(--border-color);
  aspect-ratio: 4 / 3;
  background: #F8F7F3;
}
.vh-about-hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-serene);
}
.vh-about-hero-main:hover img {
  transform: scale(1.05);
}
.vh-about-hero-thumb {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  width: 160px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid #FFFFFF;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  background: #FFFFFF;
}
.vh-about-hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vh-about-hero-stat-pill {
  position: absolute;
  top: 16px;
  inset-inline-start: -10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ---------------------------------------------------------------------- */
/* 7. METRICS STRIP (Quiet, Compact & Minimal)                            */
/* ---------------------------------------------------------------------- */
.vh-stats-strip-serene {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: #FFFFFF;
  padding-block: 28px;
}
.vh-stat-val-serene {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1;
  margin-bottom: 2px;
}
@media (min-width: 992px) {
  .vh-stat-val-serene { font-size: 38px; }
}
.vh-stat-lbl-serene {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------------------------------------------------------------------- */
/* 8. CATEGORIES & CARDS (Clean Natural 4-Column Cards)                    */
/* ---------------------------------------------------------------------- */
.vh-card-serene {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-base) var(--ease-serene), box-shadow var(--duration-base) var(--ease-serene), border-color var(--duration-base) var(--ease-serene);
}
.vh-card-serene:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
  box-shadow: 0 16px 32px -8px rgba(27, 59, 43, 0.12);
}

.vh-card-serene-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #F8F7F3;
}
.vh-card-serene-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-serene);
}
.vh-card-serene:hover .vh-card-serene-media img {
  transform: scale(1.06);
}

.vh-card-serene-body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.vh-link-explore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
}

/* Farm field photo gallery */
.vh-farm-photo-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: #F8F7F3;
}
.vh-farm-photo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-serene);
}
.vh-farm-photo:hover .vh-farm-photo-media img {
  transform: scale(1.06);
}
.vh-farm-photo figcaption {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}
.vh-link-explore .bi {
  transition: transform var(--duration-fast) var(--ease-serene);
}
.vh-card-serene:hover .vh-link-explore .bi {
  transform: translateX(4px);
}

/* ---------------------------------------------------------------------- */
/* 9. HERITAGE & PROCESS (Clean 2-Column Split)                            */
/* ---------------------------------------------------------------------- */
.vh-story-panel {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}
@media (min-width: 992px) {
  .vh-story-panel { padding: 56px; }
}

.vh-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.vh-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--background-cream);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------- */
/* 10. PRODUCT GRID (Clean & Minimal)                                      */
/* ---------------------------------------------------------------------- */
.vh-product-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-serene);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.vh-product-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}
.vh-product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--background-cream);
  overflow: hidden;
}
.vh-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-serene);
}
.vh-product-card:hover .vh-product-media img {
  transform: scale(1.04);
}
.vh-product-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ---------------------------------------------------------------------- */
/* 11. CERTIFICATES & QUALITY                                              */
/* ---------------------------------------------------------------------- */
.vh-cert-card-serene {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: border-color var(--duration-base) var(--ease-serene);
}
.vh-cert-card-serene:hover {
  border-color: var(--primary-color);
}
.vh-cert-icon {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

/* ---------------------------------------------------------------------- */
/* 12. B2B CTA BANNER (Serene Linen Card)                                  */
/* ---------------------------------------------------------------------- */
.vh-cta-serene {
  background: var(--primary-dark);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
}
@media (min-width: 992px) {
  .vh-cta-serene { padding: 64px 56px; }
}

.vh-logo-img {
  height: 38px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}
.vh-footer-logo {
  height: 44px;
  max-width: 180px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  display: inline-block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ---------------------------------------------------------------------- */
/* 13. FOOTER (Rich Dark Botanical Emerald Luxury)                         */
/* ---------------------------------------------------------------------- */
.vh-footer {
  background: #0F2218;
  border-top: 1px solid rgba(195, 163, 108, 0.25);
  color: #E2EDE7;
  padding-top: 64px;
  padding-bottom: 32px;
}
.vh-footer h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E8DFCE;
  margin-bottom: 20px;
}
.vh-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vh-footer ul li {
  margin-bottom: 10px;
}
.vh-footer ul li a {
  font-size: 14px;
  color: #A8BDB1;
  transition: all var(--duration-fast) var(--ease-serene);
  display: inline-block;
}
.vh-footer ul li a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}
html[dir="rtl"] .vh-footer ul li a:hover {
  transform: translateX(-3px);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #B5C9BE;
  margin-bottom: 12px;
}
.footer-contact-item a {
  color: #B5C9BE;
  transition: color var(--duration-fast) var(--ease-serene);
}
.footer-contact-item a:hover {
  color: var(--gold-light);
}
.footer-contact-item .bi {
  color: var(--gold-color);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.vh-footer .body-md {
  color: #A0B6A9;
}

.vh-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.vh-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(226, 237, 231, 0.2);
  color: #E2EDE7;
  font-size: 16px;
  transition: background-color var(--duration-fast) var(--ease-serene), border-color var(--duration-fast) var(--ease-serene), color var(--duration-fast) var(--ease-serene), transform var(--duration-fast) var(--ease-serene);
}
.vh-social a:hover {
  background: var(--gold-color);
  border-color: var(--gold-color);
  color: #0F2218;
  transform: translateY(-3px);
}
.vh-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 48px;
  font-size: 13px;
  color: #7D9A8B;
}
.vh-footer-bottom a {
  color: #7D9A8B;
  transition: color var(--duration-fast) var(--ease-serene);
}
.vh-footer-bottom a:hover {
  color: #E8DFCE;
}

.vh-credit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: #7D9A8B;
  text-decoration: none;
  transition: border-color var(--duration-fast) var(--ease-serene), color var(--duration-fast) var(--ease-serene);
}
.vh-credit-badge .vh-credit-name {
  font-weight: 700;
  color: #E8DFCE;
  transition: color var(--duration-fast) var(--ease-serene);
}
.vh-credit-badge:hover {
  border-color: #2E7CF6;
  color: #2E7CF6;
}
.vh-credit-badge:hover .vh-credit-name {
  color: #2E7CF6;
}

/* Floating Utilities */
.vh-back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-base) var(--ease-serene);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.vh-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.vh-back-to-top:hover {
  background: var(--primary-color);
  color: #FFFFFF;
}

.vh-whatsapp-float {
  position: fixed;
  bottom: 82px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 1040;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
  transition: transform var(--duration-fast) var(--ease-serene);
}
.vh-whatsapp-float:hover {
  transform: scale(1.08);
  color: #FFFFFF;
}

/* ---------------------------------------------------------------------- */
/* 14. PRODUCT CATALOG, MODERN CARDS & ANIMATIONS                         */
/* ---------------------------------------------------------------------- */
.vh-catalog-toolbar {
  position: sticky;
  top: 76px;
  z-index: 900;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.vh-filter-chip {
  background: var(--background-cream);
  border: 1px solid transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-serene);
  position: relative;
  overflow: hidden;
}
.vh-filter-chip:hover {
  background: #FFFFFF;
  border-color: var(--border-color);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.vh-filter-chip.is-active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(27, 59, 43, 0.2);
}

/* Card Entrance Keyframe */
.vh-card-animate {
  animation: vh-card-entrance 0.55s cubic-bezier(0.2, 0.9, 0.3, 1) both;
}
@keyframes vh-card-entrance {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Product Card Detailed — Compact & Sleek for 4 Cards per Row */
.vh-product-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s var(--ease-serene), box-shadow 0.35s var(--ease-serene), border-color 0.35s var(--ease-serene);
  position: relative;
}
.vh-product-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary-color);
  box-shadow: 0 16px 36px -8px rgba(27, 59, 43, 0.12);
}

.vh-product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #F8F7F3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.vh-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s var(--ease-serene);
}
.vh-product-card:hover .vh-product-card__media img {
  transform: scale(1.08);
}

[data-main-image] {
  object-fit: contain !important;
  width: 100%;
  height: 100%;
  padding: 12px;
  background: #F8F7F3;
}

.vh-product-card__badge-row {
  position: absolute;
  top: 10px;
  inset-inline: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  z-index: 2;
  pointer-events: none;
}

.vh-product-card__tag {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.vh-product-card__purity-tag {
  background: rgba(27, 59, 43, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.vh-product-card__body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.vh-product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 11px;
}

.vh-product-card__latin {
  font-style: italic;
  color: var(--secondary-color);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60%;
}

.vh-product-card__origin {
  color: var(--text-muted);
  font-size: 11px;
  white-space: nowrap;
}

.vh-product-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vh-product-card__title a {
  color: var(--text-dark);
  transition: color var(--duration-fast) var(--ease-serene);
}
.vh-product-card:hover .vh-product-card__title a {
  color: var(--primary-color);
}

.vh-product-card__desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
}

.vh-product-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  gap: 8px;
}

.vh-product-card__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all var(--duration-fast) var(--ease-serene);
}
.vh-product-card__link .bi {
  transition: transform var(--duration-fast) var(--ease-serene);
}
.vh-product-card:hover .vh-product-card__link {
  color: var(--secondary-color);
}
.vh-product-card:hover .vh-product-card__link .bi {
  transform: translateX(3px);
}
html[dir="rtl"] .vh-product-card:hover .vh-product-card__link .bi {
  transform: translateX(-3px);
}

.vh-btn-quote {
  padding: 6px 12px !important;
  font-size: 11px !important;
  gap: 4px !important;
}


/* ---------------------------------------------------------------------- */
/* 15. FORMS & INPUTS (Compact, Refined & Sleek)                           */
/* ---------------------------------------------------------------------- */
.vh-input, .vh-select, .vh-textarea {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  font-family: var(--font-body);
  transition: border-color var(--duration-fast) var(--ease-serene), box-shadow var(--duration-fast) var(--ease-serene);
}
.vh-input:hover, .vh-select:hover, .vh-textarea:hover {
  border-color: var(--secondary-color);
}
.vh-input:focus, .vh-select:focus, .vh-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(27, 59, 43, 0.1);
  outline: none;
}
.vh-input::placeholder, .vh-textarea::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}
.form-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  margin-bottom: 6px !important;
  color: var(--text-dark);
}

/* Subpage Heroes */
.vh-hero-sub {
  background: var(--background-cream);
  padding-block: 64px;
  text-align: center;
}
@media (min-width: 992px) {
  .vh-hero-sub { padding-block: 88px; }
}

.skip-link {
  position: absolute;
  left: 0;
  top: -999px;
  background: var(--primary-color);
  color: #FFFFFF;
  padding: 8px 16px;
  z-index: 2000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------------------------------------------------------------------- */
/* 16. ANIMATIONS & SCROLL REVEAL                                         */
/* ---------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-serene), transform 0.8s var(--ease-serene);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-group] > * {
  transition-delay: calc(var(--reveal-index, 0) * 80ms);
}


