
/* ═════════════════════════════════════════════════════════════════════════
 * VastuGuruji Navbar v2 — modern shop-first navigation
 * ═════════════════════════════════════════════════════════════════════════ */
.vgp-nav-v2 {
  --nv-bg: #ffffff;
  --nv-bg2: #faf7f0;
  --nv-text: #1a1a1a;
  --nv-muted: #6b6b6b;
  --nv-blue: #1E3A5F;
  --nv-red: #c0392b;
  --nv-gold: #b07f2e;
  --nv-border: #e9ecef;
  --nv-shadow: 0 2px 12px rgba(0,0,0,.06);
  position: sticky; top: 0; z-index: 200;
  background: var(--nv-bg);
  box-shadow: var(--nv-shadow);
  font-family: "Lora", "Noto Sans Devanagari", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: box-shadow .25s ease, padding .25s ease;
}
.vgp-nav-v2.is-scrolled { box-shadow: 0 4px 18px rgba(0,0,0,.1); }
.vgp-nav-v2.is-scrolled .vgp-nav-row-1 { padding-top: 8px; padding-bottom: 8px; }
.vgp-nav-v2.is-scrolled .vgp-brand img { max-height: 38px; }

.vgp-nav-v2 .vgp-nav-row {
  max-width: 1280px; margin: 0 auto;
  padding: 12px 18px;
  display: flex; align-items: center; gap: 14px;
}
.vgp-nav-v2 .vgp-nav-row-1 { gap: 12px; }
.vgp-nav-v2 .vgp-nav-row-2 {
  padding-top: 0; padding-bottom: 0;
  border-top: 1px solid var(--nv-border);
  background: linear-gradient(180deg, #fff 0%, #fcfaf5 100%);
}

/* Brand */
.vgp-nav-v2 .vgp-brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.vgp-nav-v2 .vgp-brand img { max-height: 46px; width: auto; transition: max-height .25s ease; }
.vgp-nav-v2 .vgp-brand-logo-mobile { display: none; }
.vgp-nav-v2 .vgp-brand-logo-desktop { display: block; }
@media (max-width: 720px) {
  .vgp-nav-v2 .vgp-brand-logo-mobile { display: block; }
  .vgp-nav-v2 .vgp-brand-logo-desktop { display: none; }
  .vgp-nav-v2 .vgp-brand img { max-height: 38px; }
}

/* Hamburger (mobile only) */
.vgp-nav-v2 .vgp-nav-drawer-toggle {
  display: none;
  background: transparent; border: 1px solid var(--nv-border);
  border-radius: 8px;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  cursor: pointer; color: var(--nv-blue);
  padding: 0;
}
.vgp-nav-v2 .vgp-nav-drawer-toggle:hover { background: #f5f5f5; }
@media (max-width: 900px) { .vgp-nav-v2 .vgp-nav-drawer-toggle { display: inline-flex; } }

/* Search — center-prominent */
.vgp-nav-v2 .vgp-nav-search {
  flex: 1; max-width: 520px; min-width: 0;
  position: relative;
  display: flex; align-items: center;
  background: #f7f8fa;
  border: 1.5px solid var(--nv-border);
  border-radius: 999px;
  padding: 4px 4px 4px 40px;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.vgp-nav-v2 .vgp-nav-search:focus-within {
  background: #fff;
  border-color: var(--nv-blue);
  box-shadow: 0 0 0 4px rgba(30,58,95,.1);
}
.vgp-nav-v2 .vgp-search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--nv-muted);
  pointer-events: none;
}
.vgp-nav-v2 .vgp-nav-search input[type=search] {
  flex: 1; min-width: 0;
  background: transparent;
  border: none; outline: none;
  font-size: 14px;
  padding: 7px 8px;
  color: var(--nv-text);
  font-family: inherit;
}
.vgp-nav-v2 .vgp-nav-search input::-webkit-search-cancel-button { display: none; }
.vgp-nav-v2 .vgp-search-submit {
  background: var(--nv-blue);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px; font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.vgp-nav-v2 .vgp-search-submit:hover { background: #122639; }
@media (max-width: 600px) {
  .vgp-nav-v2 .vgp-search-submit { padding: 7px 11px; font-size: 12px; }
}

/* Live search suggestions */
.vgp-nav-v2 .vgp-search-suggest {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--nv-border);
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(0,0,0,.15);
  max-height: 70vh;
  overflow-y: auto;
  z-index: 220;
}
.vgp-nav-v2 .vgp-search-group-head {
  padding: 10px 14px 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  color: var(--nv-muted); text-transform: uppercase;
  border-top: 1px solid var(--nv-border);
}
.vgp-nav-v2 .vgp-search-group-head:first-child { border-top: 0; }
.vgp-nav-v2 .vgp-search-result {
  display: flex; gap: 10px; align-items: center;
  padding: 8px 14px;
  text-decoration: none; color: var(--nv-text);
  transition: background .12s ease;
}
.vgp-nav-v2 .vgp-search-result:hover,
.vgp-nav-v2 .vgp-search-result.is-active { background: #f3f7fc; }
.vgp-nav-v2 .vgp-search-result img {
  width: 38px; height: 38px; object-fit: cover; border-radius: 6px;
  background: #f0f0f0; flex-shrink: 0;
}
.vgp-nav-v2 .vgp-search-result-info { flex: 1; min-width: 0; }
.vgp-nav-v2 .vgp-search-result-name { font-size: 13.5px; font-weight: 600; line-height: 1.3; }
.vgp-nav-v2 .vgp-search-result-meta { font-size: 11px; color: var(--nv-muted); margin-top: 1px; }
.vgp-nav-v2 .vgp-search-result-price { font-size: 13px; font-weight: 800; color: var(--nv-red); flex-shrink: 0; }
.vgp-nav-v2 .vgp-search-empty { padding: 18px 14px; color: var(--nv-muted); font-size: 13px; text-align: center; }
.vgp-nav-v2 .vgp-search-viewall {
  display: block; text-align: center; padding: 10px;
  background: #fafbfc; color: var(--nv-blue);
  font-weight: 700; font-size: 13px;
  text-decoration: none;
  border-top: 1px solid var(--nv-border);
}
.vgp-nav-v2 .vgp-search-viewall:hover { background: #f3f7fc; }

/* Right actions */
.vgp-nav-v2 .vgp-nav-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.vgp-nav-v2 .vgp-cart-icon,
.vgp-nav-v2 .vgp-login-icon,
.vgp-nav-v2 .vgp-account-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--nv-blue);
  text-decoration: none;
  font-weight: 600; font-size: 13px;
  background: transparent;
  border: none; cursor: pointer;
  font-family: inherit;
  transition: background .12s ease;
}
.vgp-nav-v2 .vgp-cart-icon:hover,
.vgp-nav-v2 .vgp-login-icon:hover,
.vgp-nav-v2 .vgp-account-btn:hover { background: #f5f5f5; }
.vgp-nav-v2 .vgp-cart-badge {
  position: absolute;
  top: 2px; right: 4px;
  background: var(--nv-red);
  color: #fff;
  font-size: 10px; font-weight: 800;
  padding: 1px 5px;
  border-radius: 999px;
  min-width: 16px; text-align: center;
}
.vgp-nav-v2 .vgp-cart-badge.is-zero { display: none; }
.vgp-nav-v2 .vgp-login-icon span { display: inline; }
@media (max-width: 720px) {
  .vgp-nav-v2 .vgp-login-icon span { display: none; }
  .vgp-nav-v2 .vgp-cart-icon,
  .vgp-nav-v2 .vgp-login-icon,
  .vgp-nav-v2 .vgp-account-btn { padding: 8px; }
}

/* Account popover */
.vgp-nav-v2 .vgp-account { position: relative; }
.vgp-nav-v2 .vgp-account-pop {
  position: absolute; top: calc(100% + 4px); right: 0;
  background: #fff;
  border: 1px solid var(--nv-border);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,.15);
  min-width: 200px;
  padding: 8px;
  z-index: 210;
}
.vgp-nav-v2 .vgp-account-pop[hidden] { display: none; }
.vgp-nav-v2 .vgp-account-name {
  padding: 6px 10px;
  font-weight: 700; font-size: 13px; color: var(--nv-blue);
  border-bottom: 1px solid var(--nv-border);
  margin-bottom: 4px;
}
.vgp-nav-v2 .vgp-account-pop a {
  display: block;
  padding: 8px 10px;
  text-decoration: none; color: var(--nv-text);
  font-size: 13.5px; border-radius: 6px;
}
.vgp-nav-v2 .vgp-account-pop a:hover { background: #f5f5f5; }

/* Primary nav row */
.vgp-nav-v2 .vgp-primary-nav {
  display: flex; align-items: center; gap: 4px;
  flex-wrap: wrap;
}
.vgp-nav-v2 .vgp-nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--nv-text);
  font-weight: 600; font-size: 14px;
  border-radius: 6px;
  position: relative;
  transition: color .12s ease, background .12s ease;
}
.vgp-nav-v2 .vgp-nav-link:hover { color: var(--nv-blue); background: #fff; }
.vgp-nav-v2 .vgp-nav-link.is-active { color: var(--nv-red); }
.vgp-nav-v2 .vgp-nav-link.is-active::after {
  content: ''; position: absolute; bottom: -1px; left: 14px; right: 14px;
  height: 2.5px; background: var(--nv-red); border-radius: 2px;
}
.vgp-nav-v2 .vgp-chev { font-size: 9px; opacity: .6; transition: transform .2s ease; }
.vgp-nav-v2 .vgp-mega-wrap.is-open .vgp-chev { transform: rotate(180deg); }
.vgp-nav-v2 .vgp-nav-cta {
  margin-left: auto;
  background: linear-gradient(135deg, var(--nv-red) 0%, #a13020 100%);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(192,57,43,.3);
  transition: transform .15s ease, box-shadow .15s ease;
}
.vgp-nav-v2 .vgp-nav-cta:hover {
  transform: translateY(-1px);
  background: #a13020;
  box-shadow: 0 6px 18px rgba(192,57,43,.45);
}
.vgp-nav-v2 .vgp-nav-cta::after { display: none; }
@media (max-width: 900px) { .vgp-nav-v2 .vgp-nav-row-2 { display: none; } }

/* Megamenu */
.vgp-nav-v2 .vgp-mega-wrap { position: static; }
.vgp-nav-v2 .vgp-mega {
  position: absolute; left: 0; right: 0;
  margin-top: 0;
  background: #fff;
  border-top: 1px solid var(--nv-border);
  box-shadow: 0 18px 36px rgba(0,0,0,.18);
  z-index: 210;
  padding: 22px 0 26px;
}
.vgp-nav-v2 .vgp-mega[hidden] { display: none; }
.vgp-nav-v2 .vgp-mega-cols {
  max-width: 1280px; margin: 0 auto;
  padding: 0 18px;
  display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 28px;
}
.vgp-nav-v2 .vgp-mega-cols h4 {
  font-size: 11.5px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--nv-gold);
  margin: 0 0 10px;
}
.vgp-nav-v2 .vgp-mega-cols ul { list-style: none; padding: 0; margin: 0; }
.vgp-nav-v2 .vgp-mega-cols li { margin: 0 0 4px; }
.vgp-nav-v2 .vgp-mega-cols a {
  display: block;
  padding: 5px 0;
  color: var(--nv-text);
  text-decoration: none;
  font-size: 13.5px;
  transition: color .12s ease, padding-left .15s ease;
}
.vgp-nav-v2 .vgp-mega-cols a:hover {
  color: var(--nv-red);
  padding-left: 4px;
}
.vgp-mega-promo {
  display: block !important;
  padding: 16px !important;
  background: linear-gradient(135deg, #fff7e6 0%, #ffeed1 100%);
  border: 1.5px solid #f4d99c;
  border-radius: 10px;
  text-decoration: none;
  color: #4a3417 !important;
  transition: transform .15s ease, box-shadow .15s ease;
}
.vgp-mega-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(176,127,46,.25);
  padding-left: 16px !important;
}
.vgp-mega-promo-tag {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  letter-spacing: .06em;
  background: var(--nv-red); color: #fff;
  padding: 2px 8px; border-radius: 4px;
  margin-bottom: 6px;
}
.vgp-mega-promo-title { font-size: 15px; font-weight: 800; margin-bottom: 2px; color: var(--nv-blue); }
.vgp-mega-promo-sub { font-size: 12px; color: #7a5a2e; }
.vgp-mega-promo-cta {
  margin-top: 8px;
  font-weight: 700; font-size: 13px;
  color: var(--nv-red);
}

/* Mobile drawer */
.vgp-nav-v2 .vgp-drawer {
  position: fixed; inset: 0;
  z-index: 250;
  display: flex;
}
.vgp-nav-v2 .vgp-drawer[hidden] { display: none; }
.vgp-nav-v2 .vgp-drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
  animation: vgpDrawerFade .2s ease;
}
.vgp-nav-v2 .vgp-drawer-panel {
  position: relative;
  width: min(86vw, 320px);
  background: #fff;
  height: 100%;
  overflow-y: auto;
  box-shadow: 6px 0 22px rgba(0,0,0,.2);
  animation: vgpDrawerSlide .25s cubic-bezier(.21,1.08,.42,1.04);
}
@keyframes vgpDrawerFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes vgpDrawerSlide { from { transform: translateX(-100%); } to { transform: translateX(0); } }
.vgp-nav-v2 .vgp-drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--nv-border);
}
.vgp-nav-v2 .vgp-drawer-head strong { font-size: 16px; color: var(--nv-blue); }
.vgp-nav-v2 .vgp-drawer-close {
  background: transparent; border: none; cursor: pointer;
  font-size: 26px; line-height: 1; color: var(--nv-muted);
  padding: 4px 8px;
  font-family: inherit;
}
.vgp-nav-v2 .vgp-drawer-nav { padding: 8px 0; }
.vgp-nav-v2 .vgp-drawer-nav a,
.vgp-nav-v2 .vgp-drawer-nav summary {
  display: block;
  padding: 12px 18px;
  font-size: 14.5px; font-weight: 600;
  color: var(--nv-text);
  text-decoration: none;
  border-bottom: 1px solid #f3f3f3;
  cursor: pointer;
}
.vgp-nav-v2 .vgp-drawer-nav summary { list-style: none; position: relative; }
.vgp-nav-v2 .vgp-drawer-nav summary::after {
  content: '▾'; position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%); font-size: 10px; opacity: .5;
  transition: transform .2s ease;
}
.vgp-nav-v2 .vgp-drawer-nav details[open] > summary::after { transform: translateY(-50%) rotate(180deg); }
.vgp-nav-v2 .vgp-drawer-nav details a {
  padding: 9px 18px 9px 34px;
  font-size: 13.5px; font-weight: 500;
  background: #fafafa;
}
.vgp-nav-v2 .vgp-drawer-cta {
  background: linear-gradient(135deg, var(--nv-red) 0%, #a13020 100%);
  color: #fff !important;
  margin: 14px 18px !important;
  border-radius: 8px;
  text-align: center;
  padding: 12px !important;
  border: none !important;
  font-weight: 800 !important;
}

/* Brand wordmark — visible "VastuGuruji" text next to icon */
.vgp-nav-v2 .vgp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.vgp-nav-v2 .vgp-brand-logo {
  width: 42px; height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}
.vgp-nav-v2 .vgp-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.vgp-nav-v2 .vgp-brand-name {
  font-family: "Playfair Display", "DM Serif Display", "Noto Sans Devanagari", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #1E3A5F;
  letter-spacing: -0.01em;
  line-height: 1;
}
.vgp-nav-v2 .vgp-brand-name em {
  font-style: normal;
  color: #c0392b;
  font-weight: 800;
}
.vgp-nav-v2 .vgp-brand-tag {
  font-family: "Noto Sans Devanagari", "Lora", serif;
  font-size: 10.5px;
  font-weight: 500;
  color: #b07f2e;
  letter-spacing: 0.02em;
}
.vgp-nav-v2.is-scrolled .vgp-brand-logo { width: 34px; height: 34px; }
.vgp-nav-v2.is-scrolled .vgp-brand-name { font-size: 19px; }
.vgp-nav-v2.is-scrolled .vgp-brand-tag { display: none; }
@media (max-width: 600px) {
  .vgp-nav-v2 .vgp-brand-logo { width: 36px; height: 36px; }
  .vgp-nav-v2 .vgp-brand-name { font-size: 18px; }
  .vgp-nav-v2 .vgp-brand-tag { display: none; }
}
@media (max-width: 420px) {
  .vgp-nav-v2 .vgp-brand-name { font-size: 16px; }
  .vgp-nav-v2 .vgp-brand-text { gap: 1px; }
}

/* ═════════════════════════════════════════════════════════════════════════
 * Mobile + tablet polish — fixes overflow, scrollable nav, touch-friendly
 * ═════════════════════════════════════════════════════════════════════════ */

/* Primary nav row: horizontal scroll on smaller screens instead of wrap/overflow */
.vgp-nav-v2 .vgp-primary-nav {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}
.vgp-nav-v2 .vgp-primary-nav::-webkit-scrollbar { display: none; }
.vgp-nav-v2 .vgp-nav-link,
.vgp-nav-v2 .vgp-nav-cta { white-space: nowrap; flex-shrink: 0; }

/* Better tablet view (480-900px) — hide the bottom row entirely (drawer covers it),
 * keep top row clean */
@media (max-width: 900px) {
  .vgp-nav-v2 .vgp-nav-row-2 { display: none; }
  .vgp-nav-v2 .vgp-nav-row-1 {
    gap: 8px;
    padding: 10px 14px;
  }
  .vgp-nav-v2 .vgp-brand { gap: 8px; }
  .vgp-nav-v2 .vgp-brand-logo { width: 36px; height: 36px; }
  .vgp-nav-v2 .vgp-brand-name { font-size: 18px; }
  .vgp-nav-v2 .vgp-brand-tag { display: none; }
}

/* Mobile (≤640px) — compact, search becomes secondary */
@media (max-width: 640px) {
  /* Two-row grid keeps cart pinned next to brand instead of wrapping to its own line */
  .vgp-nav-v2 .vgp-nav-row-1 {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "ham brand actions"
      "search search search";
    align-items: center;
    column-gap: 8px;
    row-gap: 6px;
    padding: 8px 12px;
  }
  .vgp-nav-v2 .vgp-nav-drawer-toggle {
    grid-area: ham;
    width: 36px; height: 36px;
  }
  .vgp-nav-v2 .vgp-brand {
    grid-area: brand;
    min-width: 0;
    overflow: hidden;
  }
  .vgp-nav-v2 .vgp-brand-text { min-width: 0; }
  .vgp-nav-v2 .vgp-brand-name {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .vgp-nav-v2 .vgp-brand-logo { width: 32px; height: 32px; }
  .vgp-nav-v2 .vgp-nav-actions {
    grid-area: actions;
    gap: 0;
    justify-self: end;
  }
  .vgp-nav-v2 .vgp-nav-search {
    grid-area: search;
    width: 100%;
    max-width: none;
    padding: 3px 3px 3px 36px;
  }
  .vgp-nav-v2 .vgp-search-icon { left: 12px; }
  .vgp-nav-v2 .vgp-nav-search input { font-size: 14px; padding: 7px 6px; }
  .vgp-nav-v2 .vgp-search-submit { padding: 6px 10px; font-size: 12px; }
}

/* Very small (≤380px) — even tighter */
@media (max-width: 380px) {
  .vgp-nav-v2 .vgp-nav-row-1 { padding: 8px 10px; }
  .vgp-nav-v2 .vgp-brand-name { font-size: 15px; }
  .vgp-nav-v2 .vgp-brand-logo { width: 28px; height: 28px; }
}

/* Fix sticky shrink — keep brand visible at all sizes */
.vgp-nav-v2.is-scrolled .vgp-brand-name { font-size: 18px; }

/* Make the megamenu actually drop below the nav (z-index fix) */
.vgp-nav-v2 .vgp-mega { z-index: 220; }

/* Drawer: ensure full viewport height + correct stacking on mobile */
.vgp-nav-v2 .vgp-drawer { z-index: 9999; }
.vgp-nav-v2 .vgp-drawer-panel {
  min-height: 100vh;
  min-height: 100dvh; /* mobile viewport-correct */
}
.vgp-nav-v2 .vgp-drawer-nav { padding-bottom: 40px; }

/* ─── WhatsApp icon in navbar — mobile + tablet only ──────────────────── */
.vgp-nav-v2 .vgp-wa-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #25D366;
  background: rgba(37, 211, 102, 0.08);
  text-decoration: none;
  transition: background .15s ease, transform .12s ease;
  flex-shrink: 0;
}
.vgp-nav-v2 .vgp-wa-icon:hover {
  background: rgba(37, 211, 102, 0.18);
  transform: scale(1.05);
}
.vgp-nav-v2 .vgp-wa-icon:active { transform: scale(0.96); }

@media (max-width: 900px) {
  .vgp-nav-v2 .vgp-wa-icon { display: inline-flex; }
}
@media (max-width: 380px) {
  .vgp-nav-v2 .vgp-wa-icon { width: 34px; height: 34px; }
}

/* ─── Mobile/Tablet: hide WhatsApp + Account icons in topbar (moved into drawer) ─── */
@media (max-width: 900px) {
  .vgp-nav-v2 .vgp-wa-icon,
  .vgp-nav-v2 .vgp-login-icon,
  .vgp-nav-v2 .vgp-account {
    display: none !important;
  }
  /* Cart stays visible — essential for e-commerce */
}

/* Drawer separator + items */
.vgp-nav-v2 .vgp-drawer-sep {
  height: 1px;
  background: #e9ecef;
  margin: 8px 18px;
}
.vgp-nav-v2 .vgp-drawer-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 12px 18px !important;
  font-size: 14px !important;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #f3f3f3;
}
.vgp-nav-v2 .vgp-drawer-item:hover { background: #fafafa; }
.vgp-nav-v2 .vgp-drawer-wa {
  color: #15803d !important;
}
.vgp-nav-v2 .vgp-drawer-wa svg {
  background: rgba(37, 211, 102, 0.12);
  border-radius: 50%;
  padding: 4px;
  width: 28px;
  height: 28px;
}

/* iOS zoom-prevention: search input must be ≥16px on mobile */
@media (max-width: 640px) {
  .vgp-nav-v2 .vgp-nav-search input { font-size: 16px !important; }
}
