/* Appily Nineteen — Vegime-inspired fresh fruit e-commerce theme */
:root {
  --forest: #1B6B42;
  --forest-dark: #145233;
  --forest-light: #238556;
  --gold: #F5A623;
  --gold-dark: #D98E12;
  --coral: #E8743B;
  --coral-dark: #C85E2A;
  --navy: #1A2332;
  --navy-light: #243044;
  --cream: #FAFAF8;
  --white: #ffffff;
  --ink: #2A2F36;
  --ink-soft: #5C6570;
  --muted: #8A929C;
  --line: #E8E6E1;
  --sale: #E8743B;
  --hot: #F5A623;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Sora', system-ui, sans-serif;
  --radius: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(26, 35, 50, 0.06);
  --shadow: 0 10px 32px rgba(26, 35, 50, 0.1);
  --shadow-lg: 0 20px 50px rgba(26, 35, 50, 0.14);
  --header-h: 148px;
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body.vg-theme {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

.container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main { flex: 1 0 auto; }

body.vg-nav-open { overflow: hidden; }

/* ── Announcement bar ── */
.vg-announce {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.vg-announce-inner {
  padding: 9px 0;
  text-align: center;
}

.vg-announce p { margin: 0; }

/* ── Utility bar ── */
.vg-utility {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.vg-utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.vg-utility-phone strong { color: var(--forest-dark); font-weight: 600; }

.vg-utility-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.vg-utility-links a:hover { color: var(--forest); }

/* ── Header (sticky) ── */
.vg-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}

.vg-header-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.vg-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  transition: opacity var(--transition);
}

.vg-brand:hover { opacity: 0.88; }

.vg-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.vg-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.vg-brand-copy strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vg-brand-copy small {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Search */
.vg-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.vg-search:focus-within {
  border-color: var(--forest-light);
  box-shadow: 0 0 0 3px rgba(27, 107, 66, 0.18);
}

.vg-search-cat {
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0 14px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  max-width: 180px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23666' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

.vg-search input {
  border: 0;
  background: transparent;
  padding: 12px 16px;
  outline: none;
  min-width: 0;
  color: var(--ink);
}

.vg-search input::placeholder { color: var(--muted); }

.vg-search button {
  border: 0;
  background: var(--forest);
  color: var(--white);
  padding: 0 24px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}

.vg-search button:hover { background: var(--forest-dark); }

/* Header icons */
.vg-header-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vg-icon-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 8px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 500;
  transition: color var(--transition);
  min-width: 48px;
}

.vg-icon-link:hover { color: var(--forest); }

.vg-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.vg-icon-label {
  max-width: 72px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vg-icon-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.vg-icon-cart .vg-icon-badge,
.vg-cart-badge { background: var(--forest-light); }

/* Cart dropdown */
.vg-cart-wrap {
  position: relative;
}

.vg-cart-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.vg-cart-wrap.is-open .vg-cart-toggle {
  color: var(--forest);
}

.vg-cart-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(340px, calc(100vw - 24px));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  overflow: hidden;
}

.vg-cart-dropdown[hidden] { display: none; }

.vg-cart-dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.vg-cart-dropdown-head strong {
  font-family: var(--font-serif);
  color: var(--navy);
}

.vg-cart-dropdown-head span {
  color: var(--muted);
  font-size: 0.78rem;
}

.vg-cart-dropdown-empty {
  padding: 28px 20px;
  text-align: center;
}

.vg-cart-dropdown-empty p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.vg-cart-dropdown-shop {
  display: inline-block;
  padding: 10px 18px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius);
}

.vg-cart-dropdown-shop:hover { background: var(--forest-dark); color: var(--white); }

.vg-cart-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  max-height: 280px;
  overflow-y: auto;
}

.vg-cart-dropdown-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--cream);
}

.vg-cart-dropdown-item:last-child { border-bottom: 0; }

.vg-cart-dropdown-thumb {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.vg-cart-dropdown-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.vg-cart-dropdown-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vg-cart-dropdown-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vg-cart-dropdown-title:hover { color: var(--forest); }

.vg-cart-dropdown-qty {
  font-size: 0.72rem;
  color: var(--muted);
}

.vg-cart-dropdown-line {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.vg-cart-dropdown-foot {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line);
  background: var(--cream);
  display: grid;
  gap: 10px;
}

.vg-cart-dropdown-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}

.vg-cart-dropdown-total strong {
  font-size: 1rem;
  color: var(--navy);
}

.vg-cart-dropdown-view,
.vg-cart-dropdown-checkout {
  display: block;
  text-align: center;
  padding: 11px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.vg-cart-dropdown-view {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

.vg-cart-dropdown-view:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.vg-cart-dropdown-checkout {
  background: var(--gold);
  color: var(--white);
}

.vg-cart-dropdown-checkout:hover {
  background: var(--forest);
  color: var(--white);
}

.vg-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  cursor: pointer;
  padding: 8px;
}

.vg-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s, opacity 0.25s;
}

.vg-menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vg-menu-btn.is-open span:nth-child(2) { opacity: 0; }
.vg-menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Navbar ── */
.vg-navbar {
  position: relative;
  background: var(--forest);
  color: var(--white);
  overflow: visible;
}

.vg-navbar-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 48px;
  overflow: visible;
}

.vg-categories-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  background: var(--forest-dark);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition);
}

.vg-categories-btn:hover { background: var(--navy); }

.vg-categories-icon { font-size: 1rem; }

.vg-nav {
  display: flex;
  align-items: stretch;
  flex: 1;
  min-width: 0;
  overflow: visible;
}

.vg-drawer-head,
.vg-drawer-close,
.vg-drawer-search,
.vg-drawer-actions,
.vg-drawer-section-label,
.vg-drawer-categories,
.vg-drawer-footer,
.vg-drawer-brand span,
.vg-drawer-link-icon { display: none; }

.vg-drawer-link-arrow:not(.vg-nav-caret) { display: none; }

.vg-drawer-link-text { display: inline; }

.vg-nav-link,
.vg-nav-mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.vg-nav-link:hover,
.vg-nav-mega-trigger:hover,
.vg-nav-link.is-active,
.vg-nav-mega-trigger.is-active {
  color: var(--white);
  background: rgba(0, 0, 0, 0.12);
  border-bottom-color: var(--gold);
}

.vg-nav-caret {
  font-size: 0.7rem;
  opacity: 0.75;
}

.vg-nav-badge {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
  line-height: 1.2;
}

.vg-nav-badge-sale { background: var(--sale); color: var(--white); }
.vg-nav-badge-hot { background: var(--hot); color: var(--white); }

.vg-nav-dropdown { position: relative; display: flex; align-items: stretch; }

.vg-nav-dropdown-simple {
  z-index: 20;
}

.vg-nav-dropdown-simple.is-open,
.vg-nav-dropdown-simple:hover {
  z-index: 310;
}

.vg-nav-simple-trigger {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  height: 100%;
}

.vg-nav-dropdown-simple.is-open .vg-nav-simple-trigger,
.vg-nav-dropdown-simple:hover .vg-nav-simple-trigger {
  color: var(--white);
  background: rgba(0, 0, 0, 0.12);
  border-bottom-color: var(--gold);
}

.vg-simple-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 310;
  padding: 14px 0 10px;
  display: none;
}

.vg-nav-dropdown-simple.is-open .vg-simple-menu,
.vg-nav-dropdown-simple:hover .vg-simple-menu {
  display: block;
}

.vg-simple-menu[hidden] { display: none !important; }

.vg-nav-dropdown-simple.is-open .vg-simple-menu[hidden],
.vg-nav-dropdown-simple:hover .vg-simple-menu[hidden] {
  display: block !important;
}

.vg-simple-menu-title {
  margin: 0 0 10px;
  padding: 0 18px;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.vg-simple-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vg-simple-menu-list li { margin: 0; }

.vg-simple-menu-list a {
  display: block;
  padding: 9px 18px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  transition: color var(--transition), background var(--transition);
}

.vg-simple-menu-list a:hover {
  color: var(--forest);
  background: var(--cream);
}

.vg-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 35, 50, 0.45);
  z-index: 250;
  backdrop-filter: blur(2px);
}

/* ── Mega menu ── */
.vg-mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  z-index: 280;
}

.vg-mega-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 32px;
  padding: 28px 0 32px;
}

.vg-mega-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.vg-mega-title {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--cream);
}

.vg-mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vg-mega-list li + li { margin-top: 4px; }

.vg-mega-list a {
  display: block;
  padding: 5px 0;
  font-size: 0.84rem;
  color: var(--ink-soft);
  transition: color var(--transition), padding-left var(--transition);
}

.vg-mega-list a:hover {
  color: var(--forest);
  padding-left: 4px;
}

.vg-mega-list a.vg-mega-row {
  font-weight: 600;
  color: var(--forest-dark);
}

.vg-mega-featured {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.vg-mega-products {
  display: grid;
  gap: 12px;
}

.vg-mega-product {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.vg-mega-product:hover {
  border-color: var(--forest-light);
  box-shadow: var(--shadow-sm);
}

.vg-mega-product img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
  background: var(--cream);
  padding: 4px;
}

.vg-mega-product-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.vg-mega-product-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vg-mega-product-price {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ── Hero layout ── */
.vg-hero-layout {
  background: var(--cream);
  padding: 20px 0 24px;
}

.vg-hero-layout-inner {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.vg-sidebar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.vg-sidebar-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 0.95rem;
}

.vg-sidebar-icon { font-size: 1rem; }

.vg-sidebar-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 6px 0;
}

.vg-sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 0.86rem;
  color: var(--ink);
  border-bottom: 1px solid var(--cream);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}

.vg-sidebar-link:hover {
  background: var(--cream);
  color: var(--forest);
  padding-left: 20px;
}

.vg-sidebar-chevron {
  color: var(--muted);
  font-size: 0.9rem;
}

.vg-sidebar-more {
  color: var(--forest);
  font-weight: 600;
}

.vg-sidebar-promo {
  margin: 12px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(27, 107, 66, 0.18) 0%, rgba(245, 166, 35, 0.12) 100%);
  border: 1px solid rgba(27, 107, 66, 0.35);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.vg-sidebar-promo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.vg-sidebar-promo-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.vg-sidebar-promo strong {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--navy);
}

.vg-sidebar-promo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
  margin-top: 4px;
  background: rgba(255, 255, 255, 0.72);
  padding: 6px;
}

/* Hero slider */
.vg-hero-slider {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.vg-hero-track {
  position: relative;
  height: 100%;
}

.vg-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
  z-index: 1;
}

.vg-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.vg-hero-slide-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

.vg-hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vg-hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26, 35, 50, 0.72) 0%, rgba(26, 35, 50, 0.35) 45%, rgba(26, 35, 50, 0.08) 100%);
}

.vg-hero-overlay {
  position: relative;
  z-index: 2;
  padding: 56px 48px;
  color: var(--white);
  max-width: 520px;
}

.vg-hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}

.vg-hero-overlay h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 22px;
  line-height: 1.15;
}

.vg-btn-shop {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 13px 30px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}

.vg-btn-shop:hover {
  background: var(--forest-dark);
  transform: translateY(-1px);
}

.vg-hero-dots {
  position: absolute;
  bottom: 18px;
  left: 48px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.vg-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.vg-hero-dot.is-active,
.vg-hero-dot:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ── Features strip ── */
.vg-features {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.vg-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vg-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
}

.vg-feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: var(--cream);
  border-radius: 50%;
  flex-shrink: 0;
}

.vg-feature strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.vg-feature span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── Sections ── */
.vg-section {
  padding: 48px 0;
}

.vg-section-muted {
  background: var(--cream);
}

.vg-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.vg-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  position: relative;
  padding-bottom: 10px;
}

.vg-section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.vg-carousel-nav {
  display: flex;
  gap: 8px;
}

.vg-carousel-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.vg-carousel-btn:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

/* Category carousel */
.vg-cat-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.vg-cat-carousel::-webkit-scrollbar { display: none; }

.vg-cat-card {
  flex: 0 0 150px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.vg-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--forest-light);
}

.vg-cat-card img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  padding: 6px;
}

.vg-cat-card span {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
}

/* Promo duo */
.vg-promo-duo {
  padding: 0 0 48px;
}

.vg-promo-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vg-promo-banner {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  color: var(--white);
  transition: transform var(--transition);
  background: linear-gradient(100deg, rgba(26, 35, 50, 0.88) 0%, rgba(27, 107, 66, 0.65) 42%, rgba(27, 107, 66, 0.2) 100%);
}

.vg-promo-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}

.vg-promo-banner-copy {
  position: relative;
  z-index: 1;
  min-height: 220px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 62%;
}

.vg-promo-banner:hover { transform: scale(1.01); }

.vg-promo-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.vg-promo-banner h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 0 14px;
}

.vg-promo-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

/* Tabs */
.vg-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid var(--line);
  margin-bottom: 28px;
}

.vg-tab {
  border: 0;
  background: transparent;
  padding: 12px 24px;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}

.vg-tab::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--forest);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.vg-tab.is-active,
.vg-tab:hover { color: var(--navy); }

.vg-tab.is-active::after { transform: scaleX(1); }

.vg-tab-panel[hidden] { display: none; }

/* Tabbed product row — compact cards, no stretched images */
.vg-section-tabs .vg-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.vg-section-tabs .vg-product-card {
  max-width: 100%;
}

.vg-section-tabs .vg-product-img {
  aspect-ratio: unset;
  height: 156px;
  max-height: 156px;
  padding: 10px 12px;
}

.vg-section-tabs .vg-product-img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 132px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

.vg-section-tabs .vg-product-card:hover .vg-product-img img {
  transform: scale(1.03);
}

.vg-section-tabs .vg-product-body {
  padding: 12px 14px 14px;
  gap: 4px;
}

.vg-section-tabs .vg-product-title {
  font-size: 0.86rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vg-section-tabs .vg-product-variant {
  font-size: 0.72rem;
}

.vg-section-tabs .vg-stars {
  font-size: 0.72rem;
}

.vg-section-tabs .vg-price {
  font-size: 0.92rem;
}

.vg-section-tabs .vg-product-btn {
  padding: 9px 10px;
  font-size: 0.74rem;
  margin-top: 4px;
}

/* ── Deal of the day ── */
.vg-deal-day { background: var(--cream); }

.vg-deal-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.vg-deal-grid::-webkit-scrollbar { display: none; }

.vg-deal-card {
  position: relative;
  flex: 0 0 min(280px, 85vw);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: box-shadow var(--transition);
}

.vg-deal-card:hover { box-shadow: var(--shadow); }

.vg-deal-img {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
  padding: 14px;
}

.vg-deal-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s ease;
}

.vg-deal-card:hover .vg-deal-img img { transform: scale(1.04); }

.vg-deal-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vg-deal-body h3 {
  font-size: 0.95rem;
  margin: 0;
}

.vg-deal-body h3 a:hover { color: var(--forest); }

.vg-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 4px 0 8px;
}

.vg-countdown span {
  text-align: center;
  padding: 8px 4px;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 0.62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vg-countdown strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}

/* ── Product grid & cards ── */
.vg-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.vg-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.vg-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vg-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.vg-product-grid.vg-grid-list {
  grid-template-columns: 1fr;
}

.vg-product-grid.vg-grid-list .vg-product-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
}

.vg-product-grid.vg-grid-list .vg-product-img { aspect-ratio: auto; height: 100%; min-height: 180px; }
.vg-product-grid.vg-grid-list .vg-product-body { justify-content: center; }

.vg-product-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.vg-product-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(27, 107, 66, 0.45);
}

.vg-product-card.is-sold-out { opacity: 0.82; }

.vg-discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--sale);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius);
}

.vg-discount-badge.vg-sold-badge { background: var(--ink-soft); }

.vg-product-img {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
  padding: 14px;
}

.vg-product-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s ease;
}

.vg-product-card:hover .vg-product-img img { transform: scale(1.05); }

.vg-product-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.vg-product-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.35;
}

.vg-product-title a:hover { color: var(--forest); }

.vg-product-variant {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.vg-stars {
  display: inline-flex;
  gap: 1px;
  font-size: 0.82rem;
  line-height: 1;
}

.vg-stars-sm { font-size: 0.68rem; }

.vg-star { color: var(--line); }
.vg-star.is-filled { color: var(--gold); }

.vg-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.vg-price-was {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: line-through;
}

.vg-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.vg-price.is-sale { color: var(--sale); }

.vg-product-btn {
  display: block;
  margin-top: auto;
  padding: 11px 16px;
  text-align: center;
  background: var(--forest);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 0;
  cursor: pointer;
  transition: background var(--transition);
}

.vg-product-btn:hover { background: var(--forest-dark); }

.vg-product-btn-disabled {
  background: var(--line);
  color: var(--muted);
  cursor: not-allowed;
}

/* ── Testimonials ── */
.vg-testimonials {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.vg-testimonials::-webkit-scrollbar { display: none; }

.vg-testimonial {
  flex: 0 0 min(360px, 88vw);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.vg-quote-mark {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 3rem;
  line-height: 1;
  color: rgba(27, 107, 66, 0.35);
  font-family: var(--font-serif);
}

.vg-testimonial p {
  margin: 0 0 18px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.vg-testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vg-testimonial footer strong {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--navy);
}

.vg-testimonial footer span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Newsletter ── */
.vg-newsletter {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.vg-newsletter-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(0, 520px) 1fr;
  align-items: center;
  gap: 24px;
}

.vg-newsletter-visual {
  height: 180px;
  border-radius: var(--radius-lg);
  opacity: 0.85;
}

.vg-newsletter-visual-left {
  background:
    radial-gradient(ellipse 80% 70% at 30% 50%, rgba(27, 107, 66, 0.45) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(245, 166, 35, 0.2) 0%, transparent 65%),
    linear-gradient(135deg, var(--cream) 0%, rgba(27, 107, 66, 0.15) 100%);
}

.vg-newsletter-visual-right {
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(27, 107, 66, 0.25) 0%, transparent 68%),
    radial-gradient(ellipse 50% 45% at 25% 70%, rgba(27, 107, 66, 0.35) 0%, transparent 60%),
    linear-gradient(225deg, var(--cream) 0%, rgba(245, 166, 35, 0.12) 100%);
}

.vg-newsletter-copy {
  text-align: center;
  position: relative;
  z-index: 1;
}

.vg-newsletter-copy h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 10px;
  color: var(--navy);
}

.vg-newsletter-copy p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.vg-newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}

.vg-newsletter-form input {
  flex: 1;
  border: 0;
  padding: 13px 16px;
  outline: none;
  min-width: 0;
}

.vg-newsletter-form button {
  border: 0;
  background: var(--forest);
  color: var(--white);
  padding: 0 22px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}

.vg-newsletter-form button:hover { background: var(--forest-dark); }

.vg-newsletter-consent {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto;
  text-align: left;
}

.vg-newsletter-consent input { margin-top: 3px; flex-shrink: 0; }

/* ── Footer ── */
.vg-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding-top: 52px;
}

.vg-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 40px;
}

.vg-footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  margin: 0 0 16px;
}

.vg-footer-col p,
.vg-footer-col a {
  display: block;
  font-size: 0.86rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--transition);
}

.vg-footer-col a:hover { color: var(--gold); }

.vg-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.vg-social span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.vg-social span:hover {
  background: var(--forest);
  border-color: var(--forest);
}

.vg-footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
}

.vg-pay-icons { letter-spacing: 0.04em; }

.vg-scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 200;
  transition: background var(--transition), transform var(--transition);
}

.vg-scroll-top:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.vg-scroll-top[hidden] { display: none; }

/* ── Breadcrumb ── */
.vg-breadcrumb-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.vg-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--muted);
}

.vg-breadcrumb a:hover { color: var(--forest); }

.vg-breadcrumb a::after {
  content: '›';
  margin-left: 8px;
  color: var(--line);
}

/* ── Collections page ── */
.vg-collections-page { padding: 40px 0 56px; }

.vg-collections-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.vg-collection-card {
  position: relative;
  min-height: 200px;
  padding: 24px 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.vg-collection-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--forest-light);
}

.vg-collection-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  z-index: 2;
}

.vg-collection-view {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--forest);
  margin-top: 6px;
  position: relative;
  z-index: 2;
}

.vg-collection-img {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 55%;
  max-height: 85%;
  object-fit: contain;
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
}

/* ── Shop / collection layout ── */
.vg-collection {
  padding: 32px 0 56px;
}

.vg-collection-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.vg-filter-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.vg-filter-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream);
}

.vg-filter-form { display: flex; flex-direction: column; gap: 4px; }

.vg-filter-group {
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

.vg-filter-group:last-of-type { border-bottom: 0; }

.vg-filter-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  padding: 4px 0;
}

.vg-filter-title::-webkit-details-marker { display: none; }

.vg-filter-body {
  padding: 10px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vg-filter-scroll {
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.vg-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--ink-soft);
  cursor: pointer;
}

.vg-check input { accent-color: var(--forest); }

.vg-price-range {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}

.vg-price-range input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.vg-price-sep {
  font-size: 0.82rem;
  color: var(--muted);
}

.vg-filter-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.vg-filter-apply {
  border: 0;
  background: var(--forest);
  color: var(--white);
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}

.vg-filter-apply:hover { background: var(--forest-dark); }

.vg-filter-clear {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
}

.vg-filter-clear:hover { color: var(--gold); }

.vg-collection-main { min-width: 0; }

.vg-collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.vg-collection-count {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.vg-collection-count strong {
  font-family: var(--font-serif);
  color: var(--navy);
}

.vg-toolbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.vg-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.vg-sort select {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 12px;
  background: var(--white);
  cursor: pointer;
}

.vg-view-switcher {
  display: flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.vg-view-btn {
  border: 0;
  background: var(--white);
  color: var(--muted);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}

.vg-view-btn + .vg-view-btn { border-left: 1px solid var(--line); }

.vg-view-btn.is-active,
.vg-view-btn:hover {
  background: var(--forest);
  color: var(--white);
}

.empty-state {
  text-align: center;
  padding: 48px 24px;
  background: var(--cream);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
}

.empty-state p { margin: 0 0 8px; font-family: var(--font-serif); font-size: 1.1rem; }
.empty-state .sub { color: var(--muted); font-size: 0.9rem; }


/* ═══════════════════════════════════════════════════════════════════════════
   Vegime Orchard — component extensions
   ═══════════════════════════════════════════════════════════════════════════ */

body.vg-theme {
  background: var(--cream);
}

/* ── 3-tier header: green utility bar ── */
.vg-utility {
  background: var(--forest);
  border-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
}

.vg-utility-inner {
  padding: 9px 0;
}

.vg-utility-phone strong {
  color: var(--white);
  font-weight: 600;
}

.vg-utility-links a {
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition);
}

.vg-utility-links a:hover {
  color: var(--gold);
}

.vg-utility-links span {
  color: rgba(255, 255, 255, 0.65);
}

/* ── Main header: white bar, centered search ── */
.vg-header {
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}

.vg-header-main {
  padding: 16px 0;
  grid-template-columns: minmax(140px, auto) minmax(0, 1fr) auto;
  gap: 20px;
}

.vg-brand-copy strong {
  color: var(--forest);
  font-family: var(--font-serif);
}

.vg-brand-copy small {
  color: var(--muted);
  letter-spacing: 0.08em;
}

.vg-search {
  max-width: 620px;
  margin: 0 auto;
  width: 100%;
  border: 2px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--cream);
  overflow: hidden;
}

.vg-search:focus-within {
  border-color: var(--forest-light);
  box-shadow: 0 0 0 3px rgba(27, 107, 66, 0.15);
}

.vg-search-cat {
  border-right-color: var(--line);
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  padding-left: 18px;
  font-weight: 500;
}

.vg-search input {
  padding: 13px 18px;
}

.vg-search button {
  background: var(--gold);
  color: var(--navy);
  padding: 0 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
}

.vg-search button:hover {
  background: var(--gold-dark);
  color: var(--white);
}

/* Circular header icon buttons */
.vg-header-icons {
  gap: 6px;
  align-items: center;
}

.vg-header-phone {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  margin-right: 8px;
  font-size: 0.68rem;
  color: var(--muted);
  white-space: nowrap;
}

.vg-header-phone strong {
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 700;
}

@media (min-width: 901px) {
  .vg-header-phone { display: flex; }
}

.vg-icon-link {
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  min-width: auto;
}

.vg-icon-link .vg-icon,
.vg-icon-circle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 1.05rem;
  line-height: 1;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.vg-icon-link:hover .vg-icon,
.vg-icon-link:hover .vg-icon-circle {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
  transform: translateY(-1px);
}

.vg-icon-label {
  display: none;
}

.vg-icon-badge,
.vg-cart-badge {
  top: -2px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  background: var(--coral);
  color: var(--white);
  border: 2px solid var(--white);
  font-size: 0.62rem;
}

.vg-icon-cart .vg-icon-badge,
.vg-cart-badge {
  background: var(--forest);
}

.vg-cart-wrap.is-open .vg-cart-toggle .vg-icon {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

/* ── Green nav bar ── */
.vg-navbar {
  background: var(--forest);
  color: var(--white);
}

.vg-categories-btn {
  background: var(--forest-dark);
  padding: 0 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.vg-categories-btn:hover {
  background: var(--navy);
}

.vg-nav-link:hover,
.vg-nav-mega-trigger:hover,
.vg-nav-link.is-active,
.vg-nav-mega-trigger.is-active {
  border-bottom-color: var(--gold);
  background: rgba(0, 0, 0, 0.1);
}

.vg-nav-badge-sale {
  background: var(--coral);
}

.vg-nav-badge-hot {
  background: var(--gold);
  color: var(--navy);
}

.vg-mega-menu {
  border-top-color: var(--gold);
}

.vg-mega-list a.vg-mega-row {
  color: var(--forest);
}

.vg-mega-list a:hover {
  color: var(--coral);
}

.vg-mega-product:hover {
  border-color: var(--forest-light);
}

/* ── Hero: FLAT DEAL badge + green CTA ── */
.vg-hero-layout {
  background: var(--cream);
  padding: 0;
}

.vg-hero-layout-inner {
  grid-template-columns: 240px minmax(0, 1fr);
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 24px;
  gap: 18px;
}

.vg-sidebar-head {
  background: var(--forest);
}

.vg-sidebar-link:hover {
  color: var(--forest);
  padding-left: 20px;
}

.vg-sidebar-more {
  color: var(--coral);
}

.vg-sidebar-promo {
  background: linear-gradient(145deg, rgba(27, 107, 66, 0.12) 0%, rgba(245, 166, 35, 0.14) 100%);
  border-color: rgba(27, 107, 66, 0.25);
}

.vg-sidebar-promo-kicker {
  color: var(--coral);
}

.vg-hero-slider {
  border-radius: var(--radius-lg);
  height: 420px;
  background: var(--navy);
}

.vg-hero-slide-bg::after {
  background: linear-gradient(105deg, rgba(26, 35, 50, 0.78) 0%, rgba(26, 35, 50, 0.4) 50%, rgba(27, 107, 66, 0.15) 100%);
}

.vg-hero-overlay {
  padding: 48px 52px;
  max-width: 560px;
}

.vg-hero-badge,
.vg-flat-deal-badge {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius);
  margin-bottom: 14px;
}

.vg-hero-eyebrow {
  color: var(--gold);
}

.vg-hero-overlay h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 24px;
}

.vg-btn-shop {
  background: var(--forest);
  color: var(--white);
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.vg-btn-shop:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 107, 66, 0.35);
}

.vg-hero-dot.is-active,
.vg-hero-dot:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.vg-hero-full {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: var(--navy);
}

.vg-hero-full .vg-hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vg-hero-full .vg-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

/* ── Feature strip ── */
.vg-features {
  background: var(--white);
  border-top: 3px solid var(--forest);
  border-bottom: 1px solid var(--line);
}

.vg-features-grid {
  gap: 0;
}

.vg-feature {
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  justify-content: center;
}

.vg-feature:last-child {
  border-right: 0;
}

.vg-feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(27, 107, 66, 0.1);
  color: var(--forest);
  font-size: 1.5rem;
  border: 2px solid rgba(27, 107, 66, 0.15);
}

.vg-feature strong {
  font-family: var(--font-serif);
  color: var(--navy);
}

/* ── Category carousel ── */
.vg-section-title::after {
  background: var(--forest);
  width: 56px;
  height: 4px;
}

.vg-carousel-btn:hover {
  background: var(--forest);
  border-color: var(--forest);
}

.vg-cat-card {
  flex: 0 0 160px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
}

.vg-cat-card:hover {
  border-color: var(--forest-light);
  box-shadow: var(--shadow);
}

.vg-cat-card img {
  width: 96px;
  height: 96px;
  border: 3px solid var(--cream);
  box-shadow: 0 4px 16px rgba(27, 107, 66, 0.12);
}

.vg-cat-card span {
  color: var(--forest);
  font-family: var(--font-serif);
}

/* ── Promo banners ── */
.vg-promo-banner {
  background: linear-gradient(100deg, rgba(26, 35, 50, 0.9) 0%, rgba(27, 107, 66, 0.55) 100%);
  min-height: 240px;
  border-radius: var(--radius-lg);
}

.vg-promo-kicker {
  color: var(--gold);
}

.vg-promo-link {
  color: var(--gold);
}

/* ── Tabs ── */
.vg-tab.is-active::after {
  background: var(--forest);
}

.vg-tab.is-active,
.vg-tab:hover {
  color: var(--forest);
}

/* ── Weekly deals + countdown ── */
.vg-deal-day,
.vg-weekly-deals {
  background: linear-gradient(180deg, var(--cream) 0%, rgba(245, 166, 35, 0.08) 100%);
  position: relative;
}

.vg-weekly-deals::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--gold), var(--coral));
}

.vg-deal-card {
  border-radius: var(--radius-lg);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.vg-deal-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.vg-discount-badge {
  background: var(--coral);
  border-radius: var(--radius-pill);
  padding: 5px 10px;
}

.vg-countdown span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 10px 6px;
}

.vg-countdown strong {
  color: var(--forest);
  font-family: var(--font-serif);
}

.vg-deal-body .vg-product-btn {
  background: var(--forest);
  border-radius: var(--radius-pill);
}

.vg-deal-body .vg-product-btn:hover {
  background: var(--forest-dark);
}

/* ── Product grid: sale badges + circular cart ── */
.vg-product-grid.vg-grid-3,
.vg-best-selling .vg-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.vg-best-selling {
  background: var(--white);
}

.vg-product-card {
  border-radius: var(--radius-lg);
  border-color: var(--line);
}

.vg-product-card:hover {
  border-color: rgba(27, 107, 66, 0.35);
  box-shadow: var(--shadow);
}

.vg-product-card .vg-discount-badge,
.vg-sale-badge {
  background: var(--coral);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.vg-product-img {
  position: relative;
}

.vg-cart-circle,
.vg-product-cart-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(8px) scale(0.9);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 3;
}

.vg-product-card:hover .vg-cart-circle,
.vg-product-card:hover .vg-product-cart-btn,
.vg-product-img:hover .vg-cart-circle {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.vg-cart-circle:hover,
.vg-product-cart-btn:hover {
  background: var(--forest);
  color: var(--white);
}

.vg-star.is-filled {
  color: var(--gold);
}

.vg-price.is-sale {
  color: var(--coral);
}

.vg-product-btn {
  background: var(--forest);
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
}

.vg-product-btn:hover {
  background: var(--forest-dark);
}

/* ── Brand partners strip ── */
.vg-brands,
.vg-brand-partners {
  padding: 36px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vg-brands-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
}

.vg-brand-logo {
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity var(--transition), filter var(--transition);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.vg-brand-logo:hover {
  opacity: 1;
  filter: none;
  color: var(--forest);
}

.vg-brands-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 24px;
}

/* ── Testimonials ── */
.vg-testimonial {
  border-left: 4px solid var(--forest);
}

.vg-quote-mark {
  color: rgba(27, 107, 66, 0.2);
}

/* ── Newsletter: orange subscribe ── */
.vg-newsletter-form button {
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
}

.vg-newsletter-form button:hover {
  background: var(--gold-dark);
  color: var(--white);
}

/* ── Navy footer ── */
.vg-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
}

.vg-footer-col h4 {
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.vg-footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.vg-footer-col a:hover {
  color: var(--gold);
}

.vg-social span:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.vg-footer-subscribe {
  margin-top: 16px;
}

.vg-footer-subscribe form {
  display: flex;
  gap: 0;
  margin-top: 10px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.vg-footer-subscribe input {
  flex: 1;
  border: 0;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
  min-width: 0;
}

.vg-footer-subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.vg-footer-subscribe button {
  border: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 0 20px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}

.vg-footer-subscribe button:hover {
  background: var(--gold-dark);
  color: var(--white);
}

/* ── Back to top: orange circle ── */
.vg-scroll-top {
  background: var(--gold);
  color: var(--navy);
  width: 50px;
  height: 50px;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.45);
}

.vg-scroll-top:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-4px);
}

/* ── Cart dropdown accents ── */
.vg-cart-dropdown-shop,
.vg-cart-dropdown-checkout {
  border-radius: var(--radius-pill);
}

.vg-cart-dropdown-shop {
  background: var(--forest);
}

.vg-cart-dropdown-shop:hover {
  background: var(--forest-dark);
}

.vg-cart-dropdown-checkout {
  background: var(--gold);
  color: var(--navy);
}

.vg-cart-dropdown-checkout:hover {
  background: var(--coral);
  color: var(--white);
}

/* ── Shop / collections accents ── */
.vg-filter-apply {
  background: var(--forest);
  border-radius: var(--radius-pill);
}

.vg-filter-apply:hover {
  background: var(--forest-dark);
}

.vg-filter-clear {
  color: var(--forest);
}

.vg-filter-clear:hover {
  color: var(--coral);
}

.vg-view-btn.is-active,
.vg-view-btn:hover {
  background: var(--forest);
}

.vg-collection-card:hover {
  border-color: var(--forest-light);
}

.vg-collection-view {
  color: var(--forest);
}

.vg-breadcrumb a:hover {
  color: var(--forest);
}

.vg-pagination a.is-active,
.vg-pagination a:hover,
.vg-page-btn.is-active,
.vg-page-btn:hover {
  background: var(--forest);
  border-color: var(--forest);
}

.vg-announce {
  background: var(--navy);
  font-size: 0.76rem;
}

/* ── Button utilities ── */
.vg-btn,
.vg-btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--forest);
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.vg-btn-primary:hover,
.vg-btn:hover {
  background: var(--forest-dark);
  transform: translateY(-1px);
}

.vg-btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.vg-btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.vg-btn-coral {
  background: var(--coral);
  color: var(--white);
}

.vg-btn-coral:hover {
  background: var(--coral-dark);
}

.vg-product-row:hover {
  border-color: var(--forest-light);
}

.vg-product-row-btn {
  background: var(--forest);
  border-radius: var(--radius-pill);
}

.vg-skeleton {
  background: linear-gradient(90deg, var(--line) 25%, var(--cream) 50%, var(--line) 75%);
  background-size: 200% 100%;
  animation: vg-shimmer 1.4s infinite;
  border-radius: var(--radius-md);
}

@keyframes vg-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.vg-nav-link:focus-visible,
.vg-btn-shop:focus-visible,
.vg-product-btn:focus-visible,
.vg-carousel-btn:focus-visible,
.vg-scroll-top:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── Responsive: best-selling 3-col at 900px ── */
@media (max-width: 900px) {
  .vg-best-selling .vg-product-grid,
  .vg-product-grid.vg-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vg-feature {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .vg-feature:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .vg-best-selling .vg-product-grid,
  .vg-product-grid.vg-grid-3 {
    grid-template-columns: 1fr;
  }

  .vg-brands-inner {
    gap: 20px 28px;
  }

  .vg-brand-logo {
    font-size: 0.9rem;
  }
}
/* ── Responsive ── */
@media (max-width: 1100px) {
  .vg-mega-inner { grid-template-columns: 1fr; }
  .vg-mega-links { grid-template-columns: repeat(2, 1fr); }
  .vg-mega-featured {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 20px;
  }
  .vg-grid-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vg-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }

  .vg-header-main {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 12px 0;
  }

  .vg-search { display: none; }

  .vg-icon-label { display: none; }
  .vg-icon-link:not(.vg-icon-cart) { min-width: 40px; }

  .vg-menu-btn { display: flex; }

  .vg-categories-btn { display: none; }

  /* ── Mobile drawer ── */
  .vg-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: min(360px, 92vw);
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    z-index: 320;
    transform: translateX(-105%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 8px 0 40px rgba(26, 35, 50, 0.18);
    padding-bottom: 28px;
    -webkit-overflow-scrolling: touch;
  }

  .vg-nav.is-open { transform: translateX(0); }

  .vg-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 18px;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .vg-drawer-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .vg-drawer-brand strong {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.2;
  }

  .vg-drawer-brand span {
    display: block;
    font-size: 0.72rem;
    opacity: 0.8;
    letter-spacing: 0.04em;
  }

  .vg-drawer-close {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition);
  }

  .vg-drawer-close:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .vg-drawer-search {
    display: block;
    padding: 14px 16px 0;
  }

  .vg-drawer-search form {
    display: flex;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }

  .vg-drawer-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    padding: 12px 14px;
    font-size: 0.9rem;
    background: transparent;
  }

  .vg-drawer-search button {
    border: 0;
    padding: 0 16px;
    background: var(--forest-light);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
  }

  .vg-drawer-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 14px 16px 6px;
  }

  .vg-drawer-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    position: relative;
    transition: border-color var(--transition), box-shadow var(--transition);
  }

  .vg-drawer-action:hover {
    border-color: var(--forest-light);
    box-shadow: var(--shadow-sm);
  }

  .vg-drawer-action-icon {
    font-size: 1.2rem;
    line-height: 1;
  }

  .vg-drawer-action-badge {
    position: absolute;
    top: 6px;
    right: 8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 800;
    font-style: normal;
    display: grid;
    place-items: center;
  }

  .vg-drawer-section-label {
    display: block;
    margin: 12px 16px 8px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .vg-drawer-categories {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 12px 8px;
    padding: 14px 14px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 6px 16px rgba(27, 107, 66, 0.25);
  }

  .vg-drawer-categories .vg-drawer-link-arrow {
    margin-left: auto;
    opacity: 0.85;
  }

  .vg-drawer-link-icon,
  .vg-drawer-link-arrow,
  .vg-drawer-link-badges {
    display: inline-flex;
  }

  .vg-drawer-link-text {
    display: inline;
    flex: 1;
    min-width: 0;
    font-weight: 600;
    font-size: 0.92rem;
  }

  .vg-nav-link,
  .vg-nav-mega-trigger,
  .vg-nav-simple-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    width: calc(100% - 24px);
    margin: 0 12px 6px;
    padding: 14px 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    border-left: 4px solid transparent;
    background: var(--white);
    color: var(--navy);
    text-align: left;
    box-shadow: 0 1px 4px rgba(26, 35, 50, 0.04);
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  }

  .vg-drawer-link-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    background: var(--cream);
    display: grid;
    place-items: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .vg-drawer-link-badges {
    gap: 4px;
    flex-shrink: 0;
  }

  .vg-drawer-link-arrow {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--muted);
    flex-shrink: 0;
  }

  .vg-nav-link:hover,
  .vg-nav-mega-trigger:hover,
  .vg-nav-simple-trigger:hover,
  .vg-nav-link.is-active,
  .vg-nav-mega-trigger.is-active,
  .vg-nav-simple-trigger.is-active {
    background: var(--white);
    border-left-color: var(--gold);
    border-bottom-color: var(--line);
    color: var(--forest);
    box-shadow: var(--shadow-sm);
  }

  .vg-nav-dropdown {
    flex-direction: column;
    width: 100%;
  }

  .vg-nav-dropdown.is-open > .vg-drawer-link,
  .vg-nav-dropdown-simple.is-open > .vg-drawer-link {
    border-left-color: var(--forest-light);
    background: var(--white);
  }

  .vg-nav-dropdown-simple:hover .vg-simple-menu {
    display: none !important;
  }

  .vg-nav-dropdown-simple .vg-simple-menu {
    position: static;
    width: auto;
    margin: 0 12px 8px 24px;
    border: 0;
    border-radius: var(--radius-md);
    box-shadow: none;
    padding: 6px 0;
    background: var(--white);
    border-left: 3px solid var(--forest-light);
  }

  .vg-nav-dropdown-simple.is-open .vg-simple-menu {
    display: block !important;
  }

  .vg-simple-menu-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--cream);
  }

  .vg-simple-menu-list a::before {
    content: "›";
    color: var(--forest-light);
    font-weight: 700;
  }

  .vg-simple-menu-list a:hover {
    color: var(--forest);
    background: var(--cream);
  }

  .vg-mega-menu {
    position: static;
    box-shadow: none;
    border-top: 0;
    background: transparent;
    margin: 0 12px 10px;
  }

  .vg-mega-inner {
    padding: 12px;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--gold);
  }

  .vg-mega-links { grid-template-columns: 1fr; }

  .vg-mega-title {
    font-size: 0.78rem;
    margin-bottom: 6px;
  }

  .vg-mega-list a {
    padding: 8px 0;
    font-size: 0.84rem;
  }

  .vg-drawer-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 12px 0;
    padding-top: 16px;
    border-top: 1px dashed var(--line);
  }

  .vg-drawer-footer a {
    flex: 1 1 calc(50% - 4px);
    min-width: 120px;
    padding: 11px 12px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--forest);
    text-align: center;
  }

  .vg-drawer-footer a:hover {
    border-color: var(--forest-light);
    background: var(--cream);
  }

  .vg-hero-layout-inner {
    grid-template-columns: 1fr;
  }

  .vg-sidebar { order: 2; }
  .vg-hero-slider { order: 1; height: 300px; }
  .vg-hero-track { height: 100%; }
  .vg-hero-overlay { padding: 36px 24px; }
  .vg-hero-dots { left: 24px; }

  .vg-features-grid { grid-template-columns: 1fr; gap: 12px; }
  .vg-promo-duo-grid { grid-template-columns: 1fr; }
  .vg-promo-banner-copy { max-width: 100%; min-height: 200px; padding: 24px 20px; }
  .vg-promo-banner-img { object-position: center; opacity: 0.55; }
  .vg-grid-4,
  .vg-grid-3,
  .vg-section-tabs .vg-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vg-collections-grid { grid-template-columns: repeat(2, 1fr); }
  .vg-collection-layout { grid-template-columns: 1fr; }
  .vg-filter-panel { position: static; }
  .vg-newsletter-inner { grid-template-columns: 1fr; }
  .vg-newsletter-visual { display: none; }
}

@media (max-width: 640px) {
  .container { width: min(1280px, calc(100% - 20px)); }

  .vg-announce-inner { font-size: 0.7rem; padding: 8px 0; }
  .vg-utility { display: none; }
  .vg-utility-inner { justify-content: center; text-align: center; }
  .vg-utility-phone { width: 100%; }
  .vg-brand img { width: 44px; height: 44px; }
  .vg-brand-copy strong { font-size: 0.95rem; }
  .vg-brand-copy small { font-size: 0.68rem; }
  .vg-header-icons { gap: 4px; }
  .vg-menu-btn { width: 38px; height: 38px; }
  .vg-section { padding: 32px 0; }
  .vg-footer-grid { grid-template-columns: 1fr; }
  .vg-footer-base { justify-content: center; text-align: center; }
  .vg-collections-grid { grid-template-columns: 1fr; }
  .vg-newsletter-form { flex-direction: column; }
  .vg-newsletter-form button { padding: 12px; width: 100%; }
  .vg-product-grid.vg-grid-list .vg-product-card { grid-template-columns: 1fr; }
  .vg-grid-4,
  .vg-grid-3,
  .vg-section-tabs .vg-product-grid { grid-template-columns: 1fr; }
  .vg-cart-dropdown {
    position: fixed;
    left: 10px;
    right: 10px;
    top: auto;
    bottom: 12px;
    width: auto;
    max-height: 70vh;
  }
}

/* Appily Nineteen — homepage & footer extensions */
.vg-utility-left {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.vg-utility-left a {
  color: rgba(255, 255, 255, 0.82);
}

.vg-utility-left a:hover { color: var(--gold); }

.vg-utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.vg-nav-delivery {
  margin-left: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  white-space: nowrap;
  display: none;
}

@media (min-width: 901px) {
  .vg-nav-delivery { display: block; }
}

.vg-section-title-center {
  text-align: center;
  margin-bottom: 28px;
}

.vg-grid-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.vg-promo-trio .vg-promo-duo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vg-cat-card-rich {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  padding: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.vg-cat-card-rich strong {
  display: block;
  font-family: var(--font-serif);
  margin-bottom: 8px;
}

.vg-cat-card-rich ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.vg-cat-card-rich li + li { margin-top: 4px; }

.vg-cat-card-rich img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.vg-best-selling-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.vg-best-col-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--cream);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border: 1px solid var(--line);
  border-bottom: 0;
}

.vg-best-col-head img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius);
}

.vg-best-col-list {
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: var(--white);
}

.vg-best-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.vg-best-row:last-child { border-bottom: 0; }

.vg-best-row-img {
  position: relative;
  display: block;
}

.vg-best-row-img img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--cream);
}

.vg-best-row-body h3 {
  font-size: 0.88rem;
  margin: 0 0 6px;
}

.vg-best-row .vg-cart-circle {
  position: static;
  opacity: 1;
  transform: none;
}

.vg-today-deal {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 8px;
  transform: rotate(-12deg);
  z-index: 2;
}

.vg-deal-timer {
  color: var(--forest-light);
  font-size: 0.9rem;
}

.vg-footer-phone-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-pill);
  font-weight: 700;
  margin-top: 10px;
}

.vg-footer-subscribe {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vg-footer-subscribe input {
  padding: 12px 14px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--navy);
}

.vg-footer-subscribe button {
  background: var(--gold);
  color: var(--navy);
  border: 0;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.vg-footer-subscribe button:hover { background: var(--gold-dark); color: var(--white); }

.vg-brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

@media (max-width: 1100px) {
  .vg-grid-6 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .vg-promo-trio .vg-promo-duo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .vg-grid-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vg-best-selling-grid { grid-template-columns: 1fr; }
  .vg-promo-trio .vg-promo-duo-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .vg-grid-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vg-utility-left { display: none; }
}
