/* ==========================================================================
   VIDEM'S GALLERY — Design Tokens (mapped from Figma)
   ========================================================================== */
:root {
  /* Brand */
  --vg-espresso:      #3B2A20;
  --vg-espresso-deep: #2C1E16;
  --vg-espresso-soft: #4A3627;
  --vg-gold:          #8C7318;  /* newsletter band */
  --vg-gold-light:    #C9A961;  /* CTA on dark, accents */
  --vg-brass:         #A5854A;  /* eyebrows, prices */

  /* Surfaces */
  --vg-cream:   #FDFAF5;
  --vg-cream-2: #F7F1E8;
  --vg-card:    #FFFDF9;
  --vg-line:    #E8DFD2;

  /* Text */
  --vg-text:   #2E2620;
  --vg-body:   #5A4E44;
  --vg-muted:  #8A7D71;

  /* Status */
  --vg-green:    #16A34A;
  --vg-green-bg: #DCFCE7;
  --vg-red:      #DC2626;
  --vg-amber:    #F0B429;
  --vg-whatsapp: #25D366;
  --vg-star:     #D9A441;

  /* Type */
  --vg-font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --vg-font-body:    "Poppins", "Jost", -apple-system, "Segoe UI", sans-serif;

  --vg-h1: clamp(2.2rem, 4.4vw, 3.6rem);
  --vg-h2: clamp(1.8rem, 3vw, 2.6rem);
  --vg-h3: clamp(1.25rem, 1.8vw, 1.6rem);

  /* Radius — the Figma is soft/rounded, not sharp */
  --vg-r-xs:   6px;
  --vg-r-sm:   10px;
  --vg-r:      14px;
  --vg-r-lg:   20px;
  --vg-r-xl:   28px;
  --vg-r-pill: 999px;

  /* Shadow */
  --vg-shadow-sm: 0 1px 2px rgba(59,42,32,.05);
  --vg-shadow:    0 4px 18px rgba(59,42,32,.07);
  --vg-shadow-lg: 0 16px 44px rgba(59,42,32,.12);

  /* Motion + layout */
  --vg-ease: cubic-bezier(.22,.61,.36,1);
  --vg-dur: .35s;
  --vg-max: 1280px;
  --vg-gutter: 24px;
  --vg-section: clamp(56px, 6.5vw, 96px);
}

/* ==========================================================================
   Base
   ========================================================================== */
body {
  font-family: var(--vg-font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--vg-body);
  background: var(--vg-cream);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,.vg-display {
  font-family: var(--vg-font-display);
  font-weight: 600;
  color: var(--vg-text);
  line-height: 1.2;
  letter-spacing: -.005em;
}
h1 { font-size: var(--vg-h1); }
h2 { font-size: var(--vg-h2); }
h3 { font-size: var(--vg-h3); }
a  { color: var(--vg-text); text-decoration: none; transition: color var(--vg-dur) var(--vg-ease); }
a:hover { color: var(--vg-brass); }
img { max-width: 100%; height: auto; }

.vg-max { max-width: var(--vg-max); margin: 0 auto; padding-inline: var(--vg-gutter); }
.vg-section { padding-block: var(--vg-section); }
.vg-section--cream { background: var(--vg-cream); }
.vg-section--alt   { background: var(--vg-cream-2); }
.vg-section--dark  { background: var(--vg-espresso); color: rgba(253,250,245,.78); }
.vg-section--dark h1,.vg-section--dark h2,.vg-section--dark h3 { color: #FDFAF5; }

/* Section heading block (used across every page) */
.vg-head { text-align: center; margin-bottom: 44px; }
.vg-head--left { text-align: left; }
.vg-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--vg-brass);
  margin-bottom: 10px;
}
.vg-head h2 { margin: 0 0 12px; }
.vg-head p  { max-width: 620px; margin-inline: auto; color: var(--vg-muted); font-size: 14px; }
.vg-head--left p { margin-inline: 0; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.vg-btn,
.woocommerce a.button, .woocommerce button.button,
.woocommerce input.button, .woocommerce #respond input#submit,
.woocommerce div.product form.cart .button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--vg-font-body);
  font-size: 13px; font-weight: 500; letter-spacing: .01em;
  padding: 13px 28px;
  border-radius: var(--vg-r-pill);
  border: 1px solid var(--vg-espresso);
  background: var(--vg-espresso);
  color: #FDFAF5;
  line-height: 1.3;
  cursor: pointer;
  transition: all var(--vg-dur) var(--vg-ease);
}
.vg-btn:hover,
.woocommerce a.button:hover, .woocommerce button.button:hover,
.woocommerce input.button:hover, .woocommerce div.product form.cart .button:hover {
  background: var(--vg-espresso-deep);
  border-color: var(--vg-espresso-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--vg-shadow);
}
.vg-btn--ghost { background: transparent; color: var(--vg-espresso); border-color: var(--vg-line); }
.vg-btn--ghost:hover { background: var(--vg-espresso); color: #FDFAF5; border-color: var(--vg-espresso); }
.vg-btn--gold  { background: var(--vg-gold-light); border-color: var(--vg-gold-light); color: var(--vg-espresso-deep); font-weight: 600; }
.vg-btn--gold:hover { background: #d8ba76; border-color: #d8ba76; color: var(--vg-espresso-deep); }
.vg-btn--wa    { background: #fff; color: var(--vg-whatsapp); border: 1.5px solid var(--vg-whatsapp); }
.vg-btn--wa:hover { background: var(--vg-whatsapp); color: #fff; }
.vg-btn--block { width: 100%; }
.vg-btn--lg    { padding: 16px 36px; font-size: 14px; }

/* Icon button (heart / compare) */
.vg-iconbtn {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--vg-line); color: var(--vg-espresso);
  transition: all var(--vg-dur) var(--vg-ease);
}
.vg-iconbtn:hover { border-color: var(--vg-espresso); background: var(--vg-espresso); color: #fff; }
.vg-iconbtn.is-active { background: var(--vg-espresso); color: var(--vg-gold-light); border-color: var(--vg-espresso); }

/* ==========================================================================
   Pill filter chips (Shop, Combos, Room Inspiration)
   ========================================================================== */
.vg-chips { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.vg-chips__label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--vg-muted); margin-right: 4px; }
.vg-chip {
  padding: 9px 20px;
  border-radius: var(--vg-r-pill);
  border: 1px solid var(--vg-line);
  background: #fff;
  font-size: 13px; color: var(--vg-body);
  cursor: pointer;
  transition: all var(--vg-dur) var(--vg-ease);
}
.vg-chip:hover { border-color: var(--vg-espresso); color: var(--vg-espresso); }
.vg-chip.is-active { background: var(--vg-espresso); border-color: var(--vg-espresso); color: #FDFAF5; }
.vg-chip--gold.is-active { background: var(--vg-gold-light); border-color: var(--vg-gold-light); color: var(--vg-espresso-deep); }

/* ==========================================================================
   Header
   ========================================================================== */
.vg-announce {
  background: var(--vg-espresso);
  color: rgba(253,250,245,.85);
  font-size: 12px;
  padding: 9px 0;
}
.vg-announce__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.vg-announce a { color: rgba(253,250,245,.85); }
.vg-announce a:hover { color: var(--vg-gold-light); }
.vg-announce__sep { opacity: .35; margin: 0 12px; }

.vg-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(253,250,245,.93);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--vg-line);
}
.vg-header__inner { display: flex; align-items: center; gap: 22px; padding: 14px 0; }

.vg-logo { display: flex; flex-direction: column; line-height: 1; }
.vg-logo__name { font-family: var(--vg-font-display); font-size: 26px; font-weight: 600; color: var(--vg-espresso); }
.vg-logo__sub  { font-size: 9px; letter-spacing: .34em; text-transform: uppercase; color: var(--vg-brass); margin-top: 3px; }

.vg-nav { display: flex; align-items: center; gap: 4px; margin-left: 12px; }
.vg-nav a {
  font-size: 13.5px; color: var(--vg-body);
  padding: 9px 14px; border-radius: var(--vg-r-sm);
  transition: all var(--vg-dur) var(--vg-ease);
}
.vg-nav a:hover { background: var(--vg-cream-2); color: var(--vg-espresso); }
.vg-nav .current-menu-item > a,
.vg-nav a.is-active { background: #F3E7D2; color: var(--vg-brass); font-weight: 500; }

.vg-header__tools { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.vg-tool { position: relative; width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; color: var(--vg-espresso); border-radius: 50%; }
.vg-tool:hover { background: var(--vg-cream-2); }
.vg-tool__count {
  position: absolute; top: 2px; right: 0;
  min-width: 17px; height: 17px; line-height: 17px; padding: 0 4px;
  background: var(--vg-brass); color: #fff;
  font-size: 10px; font-weight: 600; text-align: center;
  border-radius: var(--vg-r-pill);
}
.vg-login {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--vg-line); border-radius: var(--vg-r-pill);
  padding: 9px 18px; font-size: 13px; color: var(--vg-espresso);
}
.vg-login:hover { border-color: var(--vg-espresso); }

/* Mobile nav */
.vg-burger { display: none; }
@media (max-width: 1100px) {
  .vg-nav { display: none; }
  .vg-burger { display: inline-flex; }
  .vg-nav.is-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--vg-cream); border-bottom: 1px solid var(--vg-line);
    padding: 12px; gap: 2px; margin: 0;
  }
  .vg-nav.is-open a { padding: 13px 16px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.vg-hero { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; }
.vg-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.vg-hero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(44,30,22,.82) 0%, rgba(44,30,22,.55) 45%, rgba(44,30,22,.15) 100%); }
.vg-hero__inner { position: relative; z-index: 2; max-width: 640px; }
.vg-hero h1 { color: #FDFAF5; margin: 0 0 18px; }
.vg-hero__sub { font-family: var(--vg-font-display); font-style: italic; font-size: 1.35rem; color: var(--vg-gold-light); margin-bottom: 12px; }
.vg-hero p { color: rgba(253,250,245,.8); max-width: 480px; margin-bottom: 30px; }
.vg-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Page banner (inner pages) */
.vg-banner { background: var(--vg-espresso); text-align: center; padding: 78px 0; position: relative; }
.vg-banner--image::after { content:""; position:absolute; inset:0; background: rgba(44,30,22,.7); }
.vg-banner__inner { position: relative; z-index: 2; }
.vg-banner h1 { color: #FDFAF5; margin: 0 0 10px; }
.vg-banner p  { color: rgba(253,250,245,.75); max-width: 560px; margin-inline: auto; }

/* Stat bar */
.vg-stats { background: var(--vg-espresso-deep); padding: 30px 0; }
.vg-stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.vg-stat__icon  { color: var(--vg-gold-light); font-size: 20px; margin-bottom: 6px; }
.vg-stat__num   { font-family: var(--vg-font-display); font-size: 1.75rem; color: #FDFAF5; line-height: 1.2; }
.vg-stat__label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(253,250,245,.55); }
@media (max-width: 767px) { .vg-stats__grid { grid-template-columns: repeat(2,1fr); gap: 26px; } }

/* Breadcrumb */
.vg-crumbs { font-size: 13px; color: var(--vg-muted); padding: 18px 0; }
.vg-crumbs a { color: var(--vg-muted); }
.vg-crumbs a:hover { color: var(--vg-brass); }
.vg-crumbs .sep { margin: 0 8px; opacity: .5; }

/* ==========================================================================
   Category grid
   ========================================================================== */
.vg-catgrid { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.vg-cat {
  background: var(--vg-card); border: 1px solid var(--vg-line);
  border-radius: var(--vg-r); overflow: hidden; text-align: center;
  transition: all var(--vg-dur) var(--vg-ease);
}
.vg-cat:hover { transform: translateY(-4px); box-shadow: var(--vg-shadow); border-color: var(--vg-brass); }
.vg-cat img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.vg-cat__body { padding: 12px 8px 14px; }
.vg-cat__name  { font-family: var(--vg-font-display); font-size: 14px; color: var(--vg-text); }
.vg-cat__count { font-size: 11px; color: var(--vg-muted); }
@media (max-width: 1024px) { .vg-catgrid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px)  { .vg-catgrid { grid-template-columns: repeat(2,1fr); } }

/* ==========================================================================
   PRODUCT CARD (WooCommerce loop + custom widgets)
   ========================================================================== */
.vg-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.vg-grid--3 { grid-template-columns: repeat(3,1fr); }
.vg-grid--2 { grid-template-columns: repeat(2,1fr); }
@media (max-width:1024px){ .vg-grid, .vg-grid--3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width:520px) { .vg-grid, .vg-grid--3, .vg-grid--2 { grid-template-columns: 1fr; } }

.woocommerce ul.products { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin: 0; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product { width: 100% !important; margin: 0 !important; float: none !important; }
@media (max-width:1024px){ .woocommerce ul.products { grid-template-columns: repeat(2,1fr); } }
@media (max-width:520px) { .woocommerce ul.products { grid-template-columns: 1fr; } }

.vg-card,
.woocommerce ul.products li.product {
  position: relative;
  background: var(--vg-card);
  border: 1px solid var(--vg-line);
  border-radius: var(--vg-r);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-align: left;
  transition: all var(--vg-dur) var(--vg-ease);
}
.vg-card:hover,
.woocommerce ul.products li.product:hover { box-shadow: var(--vg-shadow-lg); transform: translateY(-4px); }

.vg-card__media { position: relative; overflow: hidden; background: var(--vg-cream-2); }
.vg-card__media img,
.woocommerce ul.products li.product img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  border-radius: 0; margin: 0;
  transition: transform .9s var(--vg-ease);
}
.vg-card:hover .vg-card__media img,
.woocommerce ul.products li.product:hover img { transform: scale(1.05); }

/* Badge stacks */
.vg-badges { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.vg-badges--right { left: auto; right: 12px; align-items: flex-end; }
.vg-badge {
  font-size: 10.5px; font-weight: 600; letter-spacing: .04em;
  padding: 5px 11px; border-radius: var(--vg-r-pill);
  display: inline-flex; align-items: center; gap: 5px; line-height: 1.3;
  box-shadow: var(--vg-shadow-sm);
}
.vg-badge--discount { background: var(--vg-gold); color: #fff; }
.vg-badge--new      { background: var(--vg-espresso); color: #FDFAF5; }
.vg-badge--best     { background: var(--vg-gold-light); color: var(--vg-espresso-deep); }
.vg-badge--trending { background: var(--vg-amber); color: var(--vg-espresso-deep); }
.vg-badge--stock    { background: var(--vg-green); color: #fff; }
.vg-badge--low      { background: var(--vg-amber); color: var(--vg-espresso-deep); }
.vg-badge--hot      { background: var(--vg-red); color: #fff; }
.vg-badge--fast     { background: var(--vg-green); color: #fff; position: absolute; left: 12px; bottom: 12px; z-index: 3; }
.vg-badge--offer    { background: #fff; color: var(--vg-red); font-size: 14px; font-weight: 700; padding: 8px 16px; box-shadow: var(--vg-shadow); }

/* Woo default sale flash -> our badge */
.woocommerce span.onsale {
  background: var(--vg-gold); color: #fff;
  border-radius: var(--vg-r-pill);
  font-size: 10.5px; font-weight: 600;
  min-height: auto; min-width: auto; line-height: 1.3;
  padding: 5px 11px; margin: 0;
  top: 12px; left: 12px; right: auto;
}

/* Wishlist heart on card */
.vg-card__wish {
  position: absolute; right: 12px; bottom: 12px; z-index: 4;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--vg-espresso); border: none; cursor: pointer;
  box-shadow: var(--vg-shadow-sm);
  transition: all var(--vg-dur) var(--vg-ease);
}
.vg-card__wish:hover { background: var(--vg-espresso); color: #fff; }
.vg-card__wish.is-active { background: var(--vg-espresso); color: var(--vg-gold-light); }

/* Card body */
.vg-card__body,
.woocommerce ul.products li.product .vg-loop-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.vg-card__cat,
.woocommerce ul.products li.product .vg-loop-cat {
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--vg-muted); line-height: 1;
}
.vg-card__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--vg-font-display) !important;
  font-size: 17px !important; font-weight: 600 !important;
  color: var(--vg-text); line-height: 1.35;
  padding: 0 !important; margin: 0 !important;
}

/* Rating */
.vg-rating { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--vg-muted); }
.vg-rating__stars { color: var(--vg-star); letter-spacing: 1px; font-size: 12px; }
.woocommerce ul.products li.product .star-rating { font-size: .8em; margin: 0; color: var(--vg-star); }

/* Colour swatches */
.vg-swatches { display: flex; gap: 6px; }
.vg-swatch {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid #fff; box-shadow: 0 0 0 1px var(--vg-line);
  cursor: pointer; transition: all .2s var(--vg-ease);
}
.vg-swatch:hover, .vg-swatch.is-active { box-shadow: 0 0 0 2px var(--vg-brass); transform: scale(1.1); }
.vg-swatch--lg { width: 34px; height: 34px; }

/* Price */
.vg-price { display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.vg-price__now,
.woocommerce ul.products li.product .price ins,
.woocommerce ul.products li.product .price > .amount {
  font-family: var(--vg-font-display);
  font-size: 20px; font-weight: 700; color: var(--vg-brass);
  text-decoration: none;
}
.vg-price__was,
.woocommerce ul.products li.product .price del {
  font-size: 13px; color: var(--vg-muted); text-decoration: line-through; opacity: 1;
}
.vg-price__save { font-size: 12px; font-weight: 600; color: var(--vg-green); background: var(--vg-green-bg); padding: 3px 9px; border-radius: var(--vg-r-pill); }
.woocommerce ul.products li.product .price { margin: 0; color: var(--vg-brass); }

/* EMI line */
.vg-emi { font-size: 11.5px; color: var(--vg-muted); line-height: 1.4; }

/* Card add-to-cart */
.vg-card .vg-btn, .woocommerce ul.products li.product a.button {
  width: 100%; margin-top: auto;
}
.woocommerce ul.products li.product a.button { margin-top: 12px; display: flex; }
.woocommerce ul.products li.product .added_to_cart { display: none; }

/* ==========================================================================
   SINGLE PRODUCT
   ========================================================================== */
.woocommerce div.product { padding-block: 30px 0; }
.woocommerce div.product div.images img { border-radius: var(--vg-r-lg); }
.woocommerce div.product div.images .flex-control-thumbs li { width: 20%; padding: 6px; }
.woocommerce div.product div.images .flex-control-thumbs img { border-radius: var(--vg-r-sm); border: 2px solid transparent; opacity: 1; }
.woocommerce div.product div.images .flex-control-thumbs img.flex-active { border-color: var(--vg-brass); }

.vg-pdp__eyebrow { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--vg-brass); margin-bottom: 8px; }
.woocommerce div.product .product_title { font-size: var(--vg-h2); margin: 0 0 12px; }

.vg-pdp__tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 20px; }
.vg-pdp__tag { font-size: 12px; font-weight: 500; padding: 6px 13px; border-radius: var(--vg-r-pill); }
.vg-pdp__tag--best { background: #FBF0D9; color: #8A6A17; }
.vg-pdp__tag--new  { background: var(--vg-green-bg); color: #14663A; }

/* Price + EMI panel */
.vg-pdp__panel {
  background: var(--vg-cream-2);
  border: 1px solid var(--vg-line);
  border-radius: var(--vg-r-lg);
  padding: 22px 24px;
  margin-bottom: 20px;
}
.woocommerce div.product p.price { font-family: var(--vg-font-display); font-size: 2rem; font-weight: 700; color: var(--vg-brass); margin: 0; }
.woocommerce div.product p.price del { font-size: 1rem; font-weight: 400; color: var(--vg-muted); margin-left: 10px; }
.woocommerce div.product p.price ins { text-decoration: none; color: var(--vg-brass); }
.vg-pdp__tax { font-size: 12.5px; color: var(--vg-muted); margin-top: 2px; }

.vg-emi-calc { border-top: 1px solid var(--vg-line); margin-top: 18px; padding-top: 16px; }
.vg-emi-calc__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.vg-emi-calc__head strong { font-size: 14px; color: var(--vg-text); font-weight: 500; }
.vg-emi-calc__value { font-family: var(--vg-font-display); font-size: 1.3rem; font-weight: 700; color: var(--vg-brass); }
.vg-emi-calc__terms { display: grid; grid-template-columns: repeat(6,1fr); gap: 8px; }
.vg-emi-term {
  padding: 9px 4px; text-align: center; font-size: 12.5px;
  background: #fff; border: 1px solid var(--vg-line);
  border-radius: var(--vg-r-sm); cursor: pointer;
  transition: all var(--vg-dur) var(--vg-ease);
}
.vg-emi-term:hover { border-color: var(--vg-brass); }
.vg-emi-term.is-active { background: var(--vg-espresso); border-color: var(--vg-espresso); color: #FDFAF5; }
.vg-emi-calc__note { font-size: 11.5px; color: var(--vg-muted); margin-top: 10px; }
@media (max-width: 520px) { .vg-emi-calc__terms { grid-template-columns: repeat(3,1fr); } }

/* Stock + delivery row */
.vg-pdp__meta-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; font-size: 13.5px; }
.vg-stockline { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.vg-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.vg-dot--low { background: var(--vg-amber); }
.vg-dot--in  { background: var(--vg-green); }
.vg-stockline--low { color: #A97711; }
.vg-stockline--in  { color: var(--vg-green); }
.vg-pdp__delivery { color: var(--vg-muted); }

/* Variation swatches */
.vg-pdp__optlabel { font-size: 13px; font-weight: 500; color: var(--vg-text); margin-bottom: 10px; display: block; }

/* Quantity */
.woocommerce div.product form.cart { display: flex; flex-direction: column; gap: 16px; margin-bottom: 0; }
.vg-qty { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--vg-line); border-radius: var(--vg-r-pill); background: #fff; overflow: hidden; }
.vg-qty button { width: 40px; height: 46px; border: 0; background: transparent; color: var(--vg-espresso); font-size: 18px; cursor: pointer; }
.vg-qty button:hover { background: var(--vg-cream-2); }
.woocommerce .quantity .qty {
  width: 48px; height: 46px; border: 0; background: transparent;
  text-align: center; font-family: var(--vg-font-body); font-size: 15px; color: var(--vg-text);
}
.vg-qty__total { font-size: 13.5px; color: var(--vg-muted); margin-left: 14px; }

/* Add to cart row */
.vg-pdp__actions { display: flex; gap: 12px; align-items: stretch; }
.woocommerce div.product form.cart .button { flex: 1; padding: 18px 32px; font-size: 14px; font-weight: 600; }
.vg-pdp__wa { width: 100%; padding: 16px; font-weight: 600; }

/* Spec tiles */
.vg-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; }
.vg-spec {
  background: var(--vg-cream-2); border: 1px solid var(--vg-line);
  border-radius: var(--vg-r); padding: 14px 16px;
}
.vg-spec__icon  { font-size: 16px; margin-bottom: 6px; }
.vg-spec__label { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--vg-muted); }
.vg-spec__value { font-size: 13.5px; color: var(--vg-text); line-height: 1.5; }
@media (max-width: 560px) { .vg-specs { grid-template-columns: 1fr; } }

/* Tabs */
.woocommerce div.product .woocommerce-tabs {
  background: var(--vg-card);
  border: 1px solid var(--vg-line);
  border-radius: var(--vg-r-lg);
  margin-top: 56px; overflow: hidden;
}
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; margin: 0; border: 0; border-bottom: 1px solid var(--vg-line); display: flex; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent; border: 0; border-radius: 0; margin: 0; padding: 0;
  border-bottom: 2px solid transparent;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { display: block; padding: 16px 26px; font-size: 14px; color: var(--vg-muted); font-weight: 500; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { border-bottom-color: var(--vg-brass); background: #fff; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--vg-brass); }
.woocommerce div.product .woocommerce-tabs .panel { padding: 30px 32px; margin: 0; }
.woocommerce div.product .woocommerce-tabs .panel h2 { display: none; }

.vg-features { list-style: none; margin: 16px 0 0; padding: 0; }
.vg-features li { position: relative; padding-left: 26px; margin-bottom: 8px; color: var(--vg-body); font-size: 14px; }
.vg-features li::before { content: "✓"; position: absolute; left: 0; color: var(--vg-brass); font-weight: 700; }

/* Sticky mobile buy bar */
.vg-buybar { display: none; }
@media (max-width: 767px) {
  .vg-buybar {
    display: flex; align-items: center; gap: 12px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
    background: #fff; border-top: 1px solid var(--vg-line);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 24px rgba(59,42,32,.1);
  }
  .vg-buybar__price { font-family: var(--vg-font-display); font-weight: 700; color: var(--vg-brass); font-size: 18px; }
  .vg-buybar .vg-btn { flex: 1; }
  body.single-product { padding-bottom: 76px; }
}

/* ==========================================================================
   COMBO OFFERS
   ========================================================================== */
.vg-combo {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--vg-card); border: 1px solid var(--vg-line);
  border-radius: var(--vg-r-lg); overflow: hidden;
  margin-bottom: 26px; position: relative;
  transition: all var(--vg-dur) var(--vg-ease);
}
.vg-combo:hover { box-shadow: var(--vg-shadow-lg); }
.vg-combo--flip .vg-combo__media { order: 2; }
.vg-combo__media { position: relative; min-height: 340px; }
.vg-combo__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vg-combo__off {
  position: absolute; bottom: 18px; right: 18px; z-index: 3;
  background: #fff; color: var(--vg-red);
  font-size: 15px; font-weight: 700;
  padding: 9px 18px; border-radius: var(--vg-r-pill);
  box-shadow: var(--vg-shadow);
}
.vg-combo--flip .vg-combo__off { right: auto; left: 18px; }
.vg-combo__body { padding: 32px 34px; display: flex; flex-direction: column; }
.vg-combo__body h3 { font-size: 1.55rem; margin: 6px 0 10px; }
.vg-combo__desc { font-size: 14px; color: var(--vg-muted); margin-bottom: 20px; }
.vg-combo__inclabel { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--vg-muted); margin-bottom: 10px; }
.vg-combo__items { list-style: none; margin: 0 0 20px; padding: 0; }
.vg-combo__items li { display: flex; align-items: center; gap: 11px; padding: 5px 0; font-size: 14px; color: var(--vg-text); }
.vg-combo__num {
  width: 21px; height: 21px; flex: 0 0 21px; border-radius: 50%;
  background: var(--vg-cream-2); border: 1px solid var(--vg-line);
  font-size: 11px; color: var(--vg-brass); font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Countdown */
.vg-count { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.vg-count__label { font-size: 12.5px; color: var(--vg-muted); margin-right: 2px; }
.vg-count__box {
  background: var(--vg-espresso); color: #FDFAF5;
  border-radius: var(--vg-r-xs); padding: 6px 9px 5px;
  text-align: center; min-width: 40px;
}
.vg-count__n { display: block; font-size: 15px; font-weight: 600; line-height: 1.1; }
.vg-count__u { display: block; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; opacity: .6; }

/* Combo price block */
.vg-combo__pricebox {
  background: var(--vg-cream-2); border: 1px solid var(--vg-line);
  border-radius: var(--vg-r); padding: 16px 18px; margin-bottom: 18px;
}
.vg-combo__save { font-size: 12.5px; color: var(--vg-green); font-weight: 600; margin-top: 4px; }
.vg-combo__save span { color: var(--vg-muted); font-weight: 400; margin-left: 8px; }
.vg-combo__actions { display: flex; gap: 10px; margin-bottom: 12px; }
.vg-combo__actions .vg-btn:first-child { flex: 1; }
.vg-combo__links { display: flex; gap: 20px; font-size: 12.5px; }
.vg-combo__links a { color: var(--vg-muted); display: inline-flex; align-items: center; gap: 6px; }
.vg-combo__links a:hover { color: var(--vg-brass); }
.vg-combo__links a.is-wa { color: var(--vg-green); }

@media (max-width: 900px) {
  .vg-combo { grid-template-columns: 1fr; }
  .vg-combo--flip .vg-combo__media { order: 0; }
  .vg-combo__media { min-height: 240px; }
  .vg-combo__body { padding: 24px 20px; }
}

/* ==========================================================================
   ROOM INSPIRATION — masonry gallery
   ========================================================================== */
.vg-rooms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}
.vg-room { position: relative; border-radius: var(--vg-r); overflow: hidden; display: block; }
.vg-room img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1s var(--vg-ease); }
.vg-room:hover img { transform: scale(1.06); }
.vg-room::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 50%, rgba(44,30,22,.72)); opacity: 0; transition: opacity var(--vg-dur) var(--vg-ease); }
.vg-room:hover::after { opacity: 1; }
.vg-room__cap {
  position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 3;
  color: #FDFAF5; opacity: 0; transform: translateY(8px);
  transition: all var(--vg-dur) var(--vg-ease);
}
.vg-room:hover .vg-room__cap { opacity: 1; transform: none; }
.vg-room__cap h4 { font-family: var(--vg-font-display); color: #FDFAF5; font-size: 1.15rem; margin: 0 0 3px; }
.vg-room__cap span { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--vg-gold-light); }
/* feature sizes */
.vg-room--tall { grid-row: span 2; }
.vg-room--wide { grid-column: span 2; }
.vg-room--big  { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) {
  .vg-rooms { grid-template-columns: repeat(2,1fr); grid-auto-rows: 170px; }
  .vg-room--big { grid-column: span 2; grid-row: span 2; }
  .vg-room--wide { grid-column: span 2; }
}

/* Dark CTA panel */
.vg-ctapanel {
  background: var(--vg-espresso); border-radius: var(--vg-r-xl);
  padding: 56px 40px; text-align: center; color: rgba(253,250,245,.78);
}
.vg-ctapanel h2 { color: #FDFAF5; margin: 0 0 14px; }
.vg-ctapanel p  { max-width: 520px; margin: 0 auto 28px; }

/* ==========================================================================
   Why us / features
   ========================================================================== */
.vg-features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.vg-feature {
  background: var(--vg-card); border: 1px solid var(--vg-line);
  border-radius: var(--vg-r); padding: 26px 22px;
  transition: all var(--vg-dur) var(--vg-ease);
}
.vg-feature:hover { border-color: var(--vg-brass); box-shadow: var(--vg-shadow); transform: translateY(-3px); }
.vg-feature__icon { font-size: 22px; margin-bottom: 12px; }
.vg-feature h4 { font-family: var(--vg-font-display); font-size: 1.05rem; margin: 0 0 7px; color: var(--vg-text); }
.vg-feature p  { font-size: 13px; color: var(--vg-muted); margin: 0; line-height: 1.6; }
@media (max-width:1024px){ .vg-features-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:520px) { .vg-features-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.vg-testi {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: var(--vg-card); border: 1px solid var(--vg-line);
  border-radius: var(--vg-r-lg); padding: 40px 44px;
}
.vg-testi__stars { color: var(--vg-star); margin-bottom: 18px; letter-spacing: 3px; }
.vg-testi__quote { font-family: var(--vg-font-display); font-style: italic; font-size: 1.2rem; line-height: 1.65; color: var(--vg-text); margin-bottom: 24px; }
.vg-testi__who { display: flex; align-items: center; justify-content: center; gap: 12px; }
.vg-testi__avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.vg-testi__name { font-weight: 600; font-size: 14px; color: var(--vg-text); }
.vg-testi__meta { font-size: 11.5px; color: var(--vg-muted); }
.vg-dots { display: flex; justify-content: center; gap: 7px; margin-top: 24px; }
.vg-dots button { width: 7px; height: 7px; border-radius: 50%; border: 0; background: var(--vg-line); cursor: pointer; padding: 0; transition: all .3s var(--vg-ease); }
.vg-dots button.is-active { background: var(--vg-brass); width: 22px; border-radius: var(--vg-r-pill); }

/* ==========================================================================
   Blog cards
   ========================================================================== */
.vg-post { background: var(--vg-card); border: 1px solid var(--vg-line); border-radius: var(--vg-r); overflow: hidden; transition: all var(--vg-dur) var(--vg-ease); }
.vg-post:hover { box-shadow: var(--vg-shadow); transform: translateY(-3px); }
.vg-post img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.vg-post__body { padding: 20px; }
.vg-post__tags { display: flex; gap: 8px; font-size: 11px; margin-bottom: 10px; }
.vg-post__tag  { background: var(--vg-cream-2); color: var(--vg-brass); padding: 3px 10px; border-radius: var(--vg-r-pill); }
.vg-post__read { color: var(--vg-muted); }
.vg-post h4 { font-family: var(--vg-font-display); font-size: 1.05rem; margin: 0 0 8px; }
.vg-post p  { font-size: 13px; color: var(--vg-muted); margin: 0 0 12px; }
.vg-post__foot { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--vg-muted); border-top: 1px solid var(--vg-line); padding-top: 12px; }
.vg-post__foot a { color: var(--vg-brass); font-weight: 500; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.vg-faq { max-width: 800px; margin: 0 auto; }
.vg-faq__item { background: var(--vg-card); border: 1px solid var(--vg-line); border-radius: var(--vg-r); margin-bottom: 12px; overflow: hidden; }
.vg-faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 18px 22px; font-family: var(--vg-font-body); font-size: 14.5px; font-weight: 500; color: var(--vg-text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.vg-faq__q::after { content: "＋"; color: var(--vg-brass); font-size: 18px; transition: transform var(--vg-dur) var(--vg-ease); }
.vg-faq__item.is-open .vg-faq__q::after { content: "−"; }
.vg-faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--vg-ease); }
.vg-faq__a > div { padding: 0 22px 20px; font-size: 14px; color: var(--vg-muted); }
.vg-faq__item.is-open .vg-faq__a { max-height: 480px; }

/* ==========================================================================
   Showrooms
   ========================================================================== */
.vg-showroom { background: var(--vg-card); border: 1px solid var(--vg-line); border-radius: var(--vg-r-lg); overflow: hidden; }
.vg-showroom__map { position: relative; height: 210px; background: var(--vg-cream-2); }
.vg-showroom__map img { width: 100%; height: 100%; object-fit: cover; }
.vg-showroom__pin {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.vg-showroom__pin span { background: rgba(255,255,255,.94); border-radius: var(--vg-r-pill); padding: 8px 16px; font-size: 12.5px; font-weight: 500; box-shadow: var(--vg-shadow); }
.vg-showroom__body { padding: 24px; }
.vg-showroom h4 { font-family: var(--vg-font-display); font-size: 1.2rem; margin: 0 0 8px; }
.vg-showroom__addr { font-size: 13.5px; color: var(--vg-muted); line-height: 1.6; margin-bottom: 14px; }
.vg-showroom__row { display: flex; gap: 18px; font-size: 12.5px; color: var(--vg-muted); margin-bottom: 18px; flex-wrap: wrap; }
.vg-showroom__actions { display: flex; gap: 10px; }
.vg-showroom__actions .vg-btn { flex: 1; }

/* ==========================================================================
   Instagram strip
   ========================================================================== */
.vg-insta { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.vg-insta a { position: relative; border-radius: var(--vg-r-sm); overflow: hidden; aspect-ratio: 1/1; }
.vg-insta img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--vg-ease); }
.vg-insta a:hover img { transform: scale(1.08); }
@media (max-width:768px){ .vg-insta { grid-template-columns: repeat(3,1fr); } }

/* ==========================================================================
   Newsletter band
   ========================================================================== */
.vg-newsletter { background: var(--vg-gold); padding: 46px 0; color: rgba(255,255,255,.85); }
.vg-newsletter__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.vg-newsletter h3 { font-family: var(--vg-font-display); color: #fff; font-size: 1.6rem; margin: 0 0 6px; }
.vg-newsletter p  { margin: 0; font-size: 14px; }
.vg-newsletter__form { display: flex; gap: 10px; flex: 0 1 480px; }
.vg-newsletter input[type=email] {
  flex: 1; height: 48px; padding: 0 20px;
  border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.1);
  border-radius: var(--vg-r-pill); color: #fff; font-family: var(--vg-font-body); font-size: 14px;
  outline: none;
}
.vg-newsletter input[type=email]::placeholder { color: rgba(255,255,255,.65); }
.vg-newsletter input[type=email]:focus { border-color: #fff; background: rgba(255,255,255,.16); }
.vg-newsletter button { background: #fff; color: var(--vg-espresso-deep); border-color: #fff; height: 48px; font-weight: 600; }
.vg-newsletter button:hover { background: var(--vg-espresso-deep); color: #fff; border-color: var(--vg-espresso-deep); }
@media (max-width: 767px) { .vg-newsletter__form { flex: 1 1 100%; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.vg-footer { background: var(--vg-espresso); color: rgba(253,250,245,.65); padding: 70px 0 0; }
.vg-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; }
.vg-footer h4 { font-family: var(--vg-font-body); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(253,250,245,.5); margin: 0 0 20px; font-weight: 600; }
.vg-footer a { color: rgba(253,250,245,.65); font-size: 14px; display: block; padding: 5px 0; }
.vg-footer a:hover { color: var(--vg-gold-light); }
.vg-footer__about { font-size: 13.5px; line-height: 1.75; margin: 16px 0 22px; }
.vg-footer__contact a { display: flex; align-items: center; gap: 10px; font-size: 13.5px; }
.vg-footer__social { display: flex; gap: 10px; margin-top: 22px; }
.vg-footer__social a {
  width: 36px; height: 36px; border-radius: 50%; padding: 0;
  background: rgba(253,250,245,.08);
  display: inline-flex; align-items: center; justify-content: center;
}
.vg-footer__social a:hover { background: var(--vg-gold-light); color: var(--vg-espresso-deep); }
.vg-store { margin-bottom: 22px; }
.vg-store__name { color: var(--vg-gold-light); font-weight: 600; font-size: 13.5px; margin-bottom: 5px; }
.vg-store__addr { font-size: 13px; line-height: 1.65; }
.vg-store--hours { border-top: 1px solid rgba(253,250,245,.14); padding-top: 16px; }
.vg-footer__bottom {
  border-top: 1px solid rgba(253,250,245,.12);
  margin-top: 56px; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px;
}
.vg-footer__legal { display: flex; gap: 22px; }
.vg-footer__legal a { padding: 0; font-size: 12.5px; }
@media (max-width: 900px) { .vg-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .vg-footer__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.vg-wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 980;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--vg-whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(37,211,102,.42);
  transition: transform var(--vg-dur) var(--vg-ease);
}
.vg-wa-float:hover { transform: scale(1.08); color: #fff; }
.vg-wa-float svg { width: 28px; height: 28px; }
@media (max-width: 767px) { .vg-wa-float { bottom: 84px; right: 16px; } }

/* ==========================================================================
   AJAX search overlay
   ========================================================================== */
.vg-search {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(253,250,245,.97); backdrop-filter: blur(6px);
  display: none; padding: 14vh 24px;
}
.vg-search.is-open { display: block; }
.vg-search__close { position: absolute; top: 26px; right: 30px; }
.vg-search__field { max-width: 720px; margin: 0 auto; border-bottom: 1.5px solid var(--vg-espresso); display: flex; align-items: center; gap: 12px; }
.vg-search__field input {
  flex: 1; border: 0; background: transparent; outline: none;
  font-family: var(--vg-font-display); font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  color: var(--vg-text); padding: 12px 0;
}
.vg-search__results { max-width: 720px; margin: 30px auto 0; max-height: 55vh; overflow-y: auto; }
.vg-search__results a { display: flex; gap: 16px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--vg-line); }
.vg-search__results img { width: 62px; height: 52px; object-fit: cover; border-radius: var(--vg-r-xs); }
.vg-search__results strong { display: block; font-family: var(--vg-font-display); font-size: 15px; color: var(--vg-text); }
.vg-search__results span { font-size: 13px; color: var(--vg-brass); font-weight: 600; }

/* ==========================================================================
   Shop toolbar
   ========================================================================== */
.vg-toolbar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.vg-toolbar__search { flex: 1 1 320px; position: relative; }
.vg-toolbar__search input {
  width: 100%; height: 46px; padding: 0 18px 0 44px;
  border: 1px solid var(--vg-line); border-radius: var(--vg-r-pill);
  background: #fff; font-family: var(--vg-font-body); font-size: 14px; outline: none;
}
.vg-toolbar__search input:focus { border-color: var(--vg-brass); }
.vg-toolbar__search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--vg-muted); }
.vg-toolbar select {
  height: 46px; padding: 0 38px 0 18px;
  border: 1px solid var(--vg-line); border-radius: var(--vg-r-pill);
  background: #fff; font-family: var(--vg-font-body); font-size: 14px; color: var(--vg-body);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A7D71' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.vg-toolbar__count { font-size: 13.5px; color: var(--vg-muted); margin-left: auto; }
.vg-viewtoggle { display: flex; border: 1px solid var(--vg-line); border-radius: var(--vg-r-pill); overflow: hidden; background: #fff; }
.vg-viewtoggle button { width: 42px; height: 46px; border: 0; background: transparent; color: var(--vg-muted); cursor: pointer; }
.vg-viewtoggle button.is-active { background: var(--vg-cream-2); color: var(--vg-espresso); }

/* Load more */
.vg-loadmore { text-align: center; margin-top: 44px; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.vg-reveal { opacity: 0; transform: translateY(22px); }
.vg-reveal.is-in { opacity: 1; transform: none; transition: opacity .8s var(--vg-ease), transform .8s var(--vg-ease); }
@media (prefers-reduced-motion: reduce) {
  .vg-reveal { opacity: 1 !important; transform: none !important; }
  * { transition: none !important; animation: none !important; }
}

/* ==========================================================================
   Woo misc cleanup
   ========================================================================== */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  border-top-color: var(--vg-brass);
  background: var(--vg-cream-2);
  border-radius: var(--vg-r-sm);
  font-size: 14px;
}
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before { color: var(--vg-brass); }
.woocommerce-cart table.cart,
.woocommerce table.shop_table { border-radius: var(--vg-r); border-color: var(--vg-line); }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1px solid var(--vg-line); border-radius: var(--vg-r-sm);
  padding: 12px 14px; background: #fff; font-family: var(--vg-font-body);
}
.woocommerce form .form-row input.input-text:focus { border-color: var(--vg-brass); outline: none; }
.woocommerce-breadcrumb { display: none; }
