/*
Theme Name:   Verde Quale
Theme URI:    https://verdequale.com
Author:       Verde Quale
Description:  Sustainable HoReCa Essentials
Version:      4.0.0
Requires at least: 6.0
Requires PHP: 7.4
License:      GPL v2 or later
Text Domain:  verdequale
*/

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --forest:      hsl(155, 30%, 17%);
  --sand:        hsl(37,  29%, 77%);
  --ochre:       hsl(30,  35%, 49%);
  --bone:        hsl(36,  33%, 94%);
  --charcoal:    hsl(155, 24%,  9%);
  --shadow-soft: 0 2px 16px 0 hsla(155,30%,17%,.07);
  --shadow-card: 0 4px 24px 0 hsla(155,30%,17%,.09);
  --ease: cubic-bezier(.25,.46,.45,.94);
}

/* ── NUCLEAR RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem; line-height: 1.7; font-weight: 400;
  background: var(--bone); color: var(--charcoal); overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; letter-spacing: -.01em; }

/* ── WP WRAPPER KILL ─────────────────────────────────────────── */
#page,#content,.site,.site-content,.site-inner,.content-area,
.entry-content,.post-content,.wp-site-blocks,.is-layout-flow,
.is-layout-constrained,.wp-block-group,.wp-block-group__inner-container,
.hestia-work,.page-content,main#main,main,article,.entry,
#main,#primary,.container,.container-fluid {
  width: 100% !important; max-width: 100% !important;
  margin: 0 !important; padding: 0 !important; float: none !important;
}
html, body { max-width: 100% !important; }

/* ── ADMIN BAR ───────────────────────────────────────────────── */
.admin-bar #vq-nav { top: 32px; }
@media screen and (max-width:782px) { .admin-bar #vq-nav { top: 46px; } }

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
.font-serif { font-family: 'Playfair Display', Georgia, serif; }
.font-sans  { font-family: 'Inter', system-ui, sans-serif; }

/* From tailwind.config.ts — exact values */
.text-display-xl {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1; letter-spacing: -0.02em;
}
.text-display-lg {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.15; letter-spacing: -0.015em;
}
.text-display-md {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.25; letter-spacing: -0.01em;
}

/* ── UTILS ───────────────────────────────────────────────────── */
.not-italic    { font-style: normal; }
.text-bone     { color: var(--bone); }
.text-sand     { color: var(--sand); }
.text-ochre    { color: var(--ochre); }
.text-forest   { color: var(--forest); }
.text-charcoal { color: var(--charcoal); }
.bg-bone    { background-color: var(--bone); }
.bg-sand    { background-color: var(--sand); }
.bg-ochre   { background-color: var(--ochre); }
.bg-forest  { background-color: var(--forest); }
.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-card { box-shadow: var(--shadow-card); }

/* section-padding = py-20 px-6 | md:py-28 md:px-12 | lg:px-20 */
.section-padding { padding: 5rem 1.5rem; }
@media (min-width:768px)  { .section-padding { padding: 7rem 3rem; } }
@media (min-width:1024px) { .section-padding { padding: 7rem 5rem; } }

/* max-w-7xl mx-auto */
.vq-container {
  max-width: 80rem;
  margin-left: auto; margin-right: auto;
  width: 100%;
}

/* w-12 h-px bg-ochre */
.divider-ochre {
  display: block; width: 3rem; height: 1px;
  background-color: var(--ochre);
}

/* ── NAVBAR ──────────────────────────────────────────────────── */
/* React: isHome && !scrolled → absolute; else fixed + bg-forest */
#vq-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  transition: all .5s ease; width: 100%;
}
#vq-nav.scrolled {
  position: fixed;
  background-color: var(--forest);
  box-shadow: 0 1px 20px hsla(155,30%,17%,.25);
}
.vq-nav-inner {
  max-width: 80rem; margin: 0 auto; padding: 0 1.5rem;
}
@media (min-width:768px)  { .vq-nav-inner { padding: 0 3rem; } }
@media (min-width:1024px) { .vq-nav-inner { padding: 0 5rem; } }
.vq-nav-row {
  display: flex; align-items: center;
  justify-content: space-between; height: 5rem; /* h-20 */
}

/* Logo */
.vq-logo { display: flex; flex-direction: column; line-height: 1; }
.vq-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--bone); letter-spacing: -.02em;
}
.vq-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: .75rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sand); margin-top: .125rem;
}

/* Desktop links — hidden md:flex */
.vq-nav-links { display: none; }
@media (min-width:768px) {
  .vq-nav-links { display: flex; align-items: center; gap: 2.5rem; }
  .vq-nav-links a {
    font-family: 'Inter', sans-serif; font-size: .875rem;
    font-weight: 500; letter-spacing: .025em; color: var(--bone);
    transition: color .4s var(--ease);
  }
  .vq-nav-links a:hover, .vq-nav-links a.active { color: var(--ochre); }
  /* ml-2 px-5 py-2.5 bg-ochre text-bone rounded-sm */
  .vq-nav-cta {
    margin-left: .5rem; padding: .625rem 1.25rem;
    background-color: var(--ochre); color: var(--bone) !important;
    border-radius: 2px; transition: opacity .4s var(--ease);
  }
  .vq-nav-cta:hover { opacity: .9; color: var(--bone) !important; }
}
.vq-nav-toggle {
  display: flex; align-items: center; justify-content: center;
  padding: .5rem; color: var(--bone);
}
@media (min-width:768px) { .vq-nav-toggle { display: none; } }

/* Mobile menu */
.vq-mobile-menu {
  display: none; flex-direction: column; gap: 1.5rem;
  background-color: var(--forest);
  border-top: 1px solid hsla(155,30%,17%,.2);
  padding: 2rem 1.5rem;
}
.vq-mobile-menu.open { display: flex; }
.vq-mobile-menu a {
  font-family: 'Playfair Display', serif; font-size: 1.125rem;
  color: var(--bone); transition: color .4s var(--ease);
}
.vq-mobile-menu a:hover { color: var(--ochre); }
/* mt-2 px-6 py-3 text-center text-sm bg-ochre text-bone rounded-sm */
.vq-mobile-cta {
  margin-top: .5rem; padding: .75rem 1.5rem; text-align: center;
  background-color: var(--ochre); color: var(--bone);
  border-radius: 2px; font-family: 'Inter', sans-serif;
  font-size: .875rem; font-weight: 500; letter-spacing: .025em;
}

/* ── HERO ────────────────────────────────────────────────────── */
.vq-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.vq-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
/* bg-charcoal/55 */
.vq-hero-overlay { position: absolute; inset: 0; background-color: hsla(155,24%,9%,.55); }
/* pt-32 pb-24 px-6 md:px-12 lg:px-20 max-w-7xl */
.vq-hero-content {
  position: relative; z-index: 10; width: 100%;
  max-width: 80rem; margin: 0 auto;
  padding: 8rem 1.5rem 6rem;
}
@media (min-width:768px)  { .vq-hero-content { padding: 8rem 3rem 6rem; } }
@media (min-width:1024px) { .vq-hero-content { padding: 8rem 5rem 6rem; } }
/* max-w-2xl */
.vq-hero-inner { max-width: 42rem; }
/* text-xs tracking-[0.25em] uppercase text-sand mb-8 */
.vq-hero-eyebrow {
  font-family: 'Inter', sans-serif; font-size: .75rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 2rem; display: block;
}
/* font-serif text-display-xl text-bone mb-6 */
.vq-hero-title { color: var(--bone); margin-bottom: 1.5rem; }
/* text-lg font-sans text-bone/80 leading-relaxed mb-10 max-w-xl */
.vq-hero-sub {
  font-family: 'Inter', sans-serif; font-size: 1.125rem;
  color: hsla(36,33%,94%,.8); line-height: 1.625;
  margin-bottom: 2.5rem; max-width: 36rem;
}
/* flex flex-wrap gap-4 */
.vq-hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
/* Scroll indicator */
.vq-scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.vq-scroll-line { width: 1px; height: 3rem; background-color: hsla(36,33%,94%,.3); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Inter', sans-serif; font-size: .875rem;
  font-weight: 500; letter-spacing: .025em; border-radius: 2px;
  cursor: pointer; transition: all .4s var(--ease);
  border: 1px solid transparent; text-decoration: none;
}
/* px-7 py-3.5 = 1.75rem .875rem */
.btn-ochre { padding: .875rem 1.75rem; background-color: var(--ochre); color: var(--bone); border-color: var(--ochre); }
.btn-ochre:hover { opacity: .9; color: var(--bone); }
.btn-forest { padding: .875rem 1.75rem; background-color: var(--forest); color: var(--bone); border-color: var(--forest); }
.btn-forest:hover { opacity: .9; color: var(--bone); }
/* border border-bone */
.btn-outline-bone { padding: .875rem 1.75rem; background: transparent; color: var(--bone); border-color: var(--bone); }
.btn-outline-bone:hover { background-color: var(--bone); color: var(--forest); }
/* px-8 py-4 bg-bone text-forest font-semibold shrink-0 */
.btn-bone { padding: .875rem 1.75rem; background-color: var(--bone); color: var(--forest); font-weight: 600; border-color: var(--bone); }
.btn-bone:hover { background-color: var(--forest); color: var(--bone); }

/* ── WHY VQ (bg-forest section-padding) ─────────────────────── */
.vq-why { background-color: var(--forest); }
.vq-why-head { margin-bottom: 4rem; }
/* grid 1 | sm:2 | lg:4  gap-8 */
.vq-pillars { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width:640px)  { .vq-pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width:1024px) { .vq-pillars { grid-template-columns: repeat(4,1fr); } }
/* border-t border-bone/15 pt-8 */
.vq-pillar { border-top: 1px solid hsla(36,33%,94%,.15); padding-top: 2rem; }
/* w-10 h-10 rounded-sm bg-sand/20 text-sand mb-6 */
.vq-pillar-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 2px;
  background-color: hsla(37,29%,77%,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--sand); margin-bottom: 1.5rem;
}
/* font-serif text-xl text-bone mb-3 */
.vq-pillar-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--bone); margin-bottom: .75rem; }
/* text-sm font-sans text-bone/65 leading-relaxed */
.vq-pillar-desc { font-family: 'Inter', sans-serif; font-size: .875rem; color: hsla(36,33%,94%,.65); line-height: 1.625; }

/* ── COLLECTIONS (bg-bone section-padding) ───────────────────── */
/* grid 1 | md:2 | lg:3  gap-6 */
.vq-cat-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width:768px)  { .vq-cat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width:1024px) { .vq-cat-grid { grid-template-columns: repeat(3,1fr); } }
/* group bg-sand rounded-sm overflow-hidden shadow-soft */
.vq-cat-card {
  display: block; background-color: var(--sand); border-radius: 2px;
  overflow: hidden; box-shadow: var(--shadow-soft);
  transition: box-shadow .4s var(--ease);
}
.vq-cat-card:hover { box-shadow: var(--shadow-card); }
/* aspect-[4/3] */
.vq-cat-card-img { aspect-ratio: 4/3; overflow: hidden; }
.vq-cat-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.vq-cat-card:hover .vq-cat-card-img img { transform: scale(1.05); }
/* p-6 */
.vq-cat-card-body { padding: 1.5rem; }
/* font-serif text-xl text-forest mb-2 */
.vq-cat-card-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--forest); margin-bottom: .5rem; }
/* text-sm font-sans text-charcoal/70 leading-relaxed mb-4 */
.vq-cat-card-desc { font-family: 'Inter', sans-serif; font-size: .875rem; color: hsla(155,24%,9%,.7); line-height: 1.625; margin-bottom: 1rem; }
/* inline-flex items-center gap-1.5 text-sm font-medium text-ochre */
.vq-cat-card-link { display: inline-flex; align-items: center; gap: .375rem; font-family: 'Inter', sans-serif; font-size: .875rem; font-weight: 500; color: var(--ochre); transition: gap .4s var(--ease); }
.vq-cat-card:hover .vq-cat-card-link { gap: 1rem; }

/* ── CRAFT STORY ─────────────────────────────────────────────── */
.vq-craft { background-color: var(--bone); }
.vq-craft-wrap { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width:768px)  { .vq-craft-wrap { padding: 0 3rem; } }
@media (min-width:1024px) { .vq-craft-wrap { padding: 0 5rem; } }
.vq-craft-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width:1024px) { .vq-craft-grid { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.vq-craft-img { min-height: 320px; overflow: hidden; }
@media (min-width:1024px) { .vq-craft-img { min-height: 520px; } }
.vq-craft-img img { width: 100%; height: 100%; object-fit: cover; }
/* bg-forest flex items-center px-10 md:px-16 py-20 */
.vq-craft-panel { background-color: var(--forest); display: flex; align-items: center; padding: 5rem 2.5rem; }
@media (min-width:768px) { .vq-craft-panel { padding: 5rem 4rem; } }
/* text-base font-sans text-bone/70 leading-relaxed mb-4 */
.vq-craft-p { font-family: 'Inter', sans-serif; font-size: 1rem; color: hsla(36,33%,94%,.7); line-height: 1.625; margin-bottom: 1rem; }

/* ── PROCUREMENT (bg-sand/40 section-padding) ────────────────── */
.vq-proc { background-color: hsla(37,29%,77%,.4); }
.vq-proc-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width:1024px) { .vq-proc-grid { grid-template-columns: 1fr 1fr; } }
.vq-proc-p { font-family: 'Inter', sans-serif; font-size: 1rem; color: hsla(155,24%,9%,.7); line-height: 1.625; margin-bottom: 2rem; }
/* grid 1 | sm:2  gap-5 */
.vq-features { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width:640px) { .vq-features { grid-template-columns: 1fr 1fr; } }
/* bg-bone rounded-sm p-7 shadow-soft border-l-2 border-ochre */
.vq-feature { background-color: var(--bone); border-radius: 2px; padding: 1.75rem; box-shadow: var(--shadow-soft); border-left: 2px solid var(--ochre); }
.vq-feature p { font-family: 'Inter', sans-serif; font-size: .875rem; color: var(--charcoal); line-height: 1.625; }

/* ── BRASS MATKA (relative bg-forest) ───────────────────────── */
.vq-matka { position: relative; background-color: var(--forest); overflow: hidden; }
.vq-matka-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .25; }
.vq-matka-inner { position: relative; z-index: 10; }
.vq-matka-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width:1024px) { .vq-matka-grid { grid-template-columns: 1fr 1fr; } }
.vq-matka-eyebrow { font-family: 'Inter', sans-serif; font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; color: var(--sand); margin-bottom: 1.5rem; display: block; }
.vq-matka-p-lg { font-family: 'Inter', sans-serif; font-size: 1.125rem; color: hsla(36,33%,94%,.7); line-height: 1.625; margin-bottom: 1rem; }
.vq-matka-p-sm { font-family: 'Inter', sans-serif; font-size: 1rem; color: hsla(36,33%,94%,.6); line-height: 1.625; margin-bottom: 2.5rem; }
.vq-matka-imgcol { display: none; }
@media (min-width:1024px) { .vq-matka-imgcol { display: flex; justify-content: center; } }
.vq-matka-imgwrap { position: relative; }
.vq-matka-glow { position: absolute; inset: -1rem; border-radius: 50%; background: hsla(30,35%,49%,.1); filter: blur(3rem); }
.vq-matka-imgwrap img { position: relative; z-index: 1; border-radius: 2px; width: 100%; max-width: 28rem; object-fit: cover; aspect-ratio: 1/1; box-shadow: var(--shadow-card); }

/* ── CTA STRIP (bg-ochre py-16) ─────────────────────────────── */
.vq-cta-strip { background-color: var(--ochre); padding: 4rem 1.5rem; }
@media (min-width:768px)  { .vq-cta-strip { padding: 4rem 3rem; } }
@media (min-width:1024px) { .vq-cta-strip { padding: 4rem 5rem; } }
.vq-cta-strip-inner { max-width: 80rem; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
@media (min-width:768px) { .vq-cta-strip-inner { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ── PAGE HEADER (inner pages bg-forest pt-36 pb-20) ─────────── */
.vq-page-header { background-color: var(--forest); padding: 9rem 1.5rem 5rem; }
@media (min-width:768px)  { .vq-page-header { padding: 9rem 3rem 5rem; } }
@media (min-width:1024px) { .vq-page-header { padding: 9rem 5rem 5rem; } }
/* category page: relative + bg image + z-10 inner */
.vq-page-header-rel { position: relative; overflow: hidden; }
.vq-page-header-bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .2; }
.vq-page-header-inner { max-width: 80rem; margin: 0 auto; position: relative; z-index: 10; }
/* text-xs tracking-[0.25em] uppercase font-sans text-sand mb-6 */
.vq-eyebrow { font-family: 'Inter', sans-serif; font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; color: var(--sand); margin-bottom: 1.5rem; display: block; }
/* back link: inline-flex items-center gap-2 text-xs uppercase text-sand mb-10 */
.vq-back-link { display: inline-flex; align-items: center; gap: .5rem; font-family: 'Inter', sans-serif; font-size: .75rem; letter-spacing: .05em; text-transform: uppercase; color: var(--sand); margin-bottom: 2.5rem; transition: color .4s var(--ease); }
.vq-back-link:hover { color: var(--ochre); }
/* breadcrumb */
.vq-breadcrumb { display: flex; align-items: center; gap: .5rem; font-family: 'Inter', sans-serif; font-size: .75rem; color: hsla(36,33%,94%,.5); margin-bottom: 2.5rem; text-transform: uppercase; letter-spacing: .1em; }
.vq-breadcrumb a { transition: color .4s var(--ease); }
.vq-breadcrumb a:hover { color: var(--ochre); }
.vq-breadcrumb .vq-bread-cur { color: var(--sand); }

/* ── PRODUCTS PAGE — category rows ──────────────────────────── */
/* grid grid-cols-1 gap-8 */
.vq-prod-list { display: flex; flex-direction: column; gap: 2rem; }
/* group grid bg-sand rounded-sm overflow-hidden shadow-soft hover:shadow-card */
.vq-prod-row { display: grid; grid-template-columns: 1fr; background-color: var(--sand); border-radius: 2px; overflow: hidden; box-shadow: var(--shadow-soft); transition: box-shadow .4s var(--ease); text-decoration: none; }
.vq-prod-row:hover { box-shadow: var(--shadow-card); }
@media (min-width:768px) {
  /* even: md:grid-cols-[1fr_1.4fr] */
  .vq-prod-row-even { grid-template-columns: 1fr 1.4fr; }
  /* odd: md:grid-cols-[1.4fr_1fr] — image gets order:2, body gets order:1 */
  .vq-prod-row-odd  { grid-template-columns: 1.4fr 1fr; }
  .vq-prod-row-odd .vq-prod-row-img  { order: 2; }
  .vq-prod-row-odd .vq-prod-row-body { order: 1; }
}
/* aspect-[4/3] md:aspect-auto overflow-hidden */
.vq-prod-row-img { overflow: hidden; }
.vq-prod-row-img-inner { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
@media (min-width:768px) { .vq-prod-row-img-inner { aspect-ratio: unset; height: 100%; min-height: 320px; } }
.vq-prod-row-img-inner img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.vq-prod-row:hover .vq-prod-row-img-inner img { transform: scale(1.05); }
/* flex flex-col justify-center px-10 md:px-14 py-12 */
.vq-prod-row-body { display: flex; flex-direction: column; justify-content: center; padding: 3rem 2.5rem; }
@media (min-width:768px) { .vq-prod-row-body { padding: 3rem 3.5rem; } }
/* text-xs tracking-[0.2em] uppercase font-sans text-ochre mb-4 */
.vq-prod-row-num { font-family: 'Inter', sans-serif; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ochre); margin-bottom: 1rem; }
/* font-serif text-display-md text-forest mb-4 */
.vq-prod-row-title { font-family: 'Playfair Display', serif; color: var(--forest); margin-bottom: 1rem; }
/* text-sm font-sans text-charcoal/70 leading-relaxed mb-6 */
.vq-prod-row-desc { font-family: 'Inter', sans-serif; font-size: .875rem; color: hsla(155,24%,9%,.7); line-height: 1.625; margin-bottom: 1.5rem; }
/* space-y-1.5 mb-8 */
.vq-prod-row-items { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 2rem; }
.vq-prod-row-item { display: flex; align-items: center; gap: .5rem; font-family: 'Inter', sans-serif; font-size: .875rem; color: hsla(155,24%,9%,.6); }
/* w-1 h-1 rounded-full bg-ochre inline-block */
.vq-dot { width: .25rem; height: .25rem; border-radius: 50%; background-color: var(--ochre); flex-shrink: 0; display: inline-block; }
/* inline-flex items-center gap-2 text-sm font-medium text-ochre */
.vq-prod-row-cta { display: inline-flex; align-items: center; gap: .5rem; font-family: 'Inter', sans-serif; font-size: .875rem; font-weight: 500; color: var(--ochre); transition: gap .4s var(--ease); }
.vq-prod-row:hover .vq-prod-row-cta { gap: 1rem; }
/* Partner CTA — bg-forest py-20 */
.vq-prod-cta { background-color: var(--forest); padding: 5rem 1.5rem; }
@media (min-width:768px)  { .vq-prod-cta { padding: 5rem 3rem; } }
@media (min-width:1024px) { .vq-prod-cta { padding: 5rem 5rem; } }
.vq-prod-cta-inner { max-width: 80rem; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
@media (min-width:768px) { .vq-prod-cta-inner { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ── PRODUCT CATEGORY — product cards ───────────────────────── */
/* grid 1 | lg:2 | xl:3  gap-8 */
.vq-prod-cards { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width:1024px) { .vq-prod-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width:1280px) { .vq-prod-cards { grid-template-columns: repeat(3,1fr); } }
/* bg-sand rounded-sm overflow-hidden shadow-soft group */
.vq-prod-card { background-color: var(--sand); border-radius: 2px; overflow: hidden; box-shadow: var(--shadow-soft); }
/* aspect-[16/9] */
.vq-prod-card-img { aspect-ratio: 16/9; overflow: hidden; }
.vq-prod-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.vq-prod-card:hover .vq-prod-card-img img { transform: scale(1.05); }
/* p-8 md:p-10 */
.vq-prod-card-body { padding: 2rem; }
@media (min-width:768px) { .vq-prod-card-body { padding: 2.5rem; } }
/* text-xs tracking-[0.2em] uppercase text-ochre mb-3 */
.vq-prod-card-num { font-family: 'Inter', sans-serif; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ochre); margin-bottom: .75rem; }
/* font-serif text-2xl md:text-3xl text-forest mb-3 */
.vq-prod-card-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--forest); margin-bottom: .75rem; }
@media (min-width:768px) { .vq-prod-card-name { font-size: 1.875rem; } }
/* text-sm font-sans text-charcoal/70 leading-relaxed mb-6 */
.vq-prod-card-desc { font-family: 'Inter', sans-serif; font-size: .875rem; color: hsla(155,24%,9%,.7); line-height: 1.625; margin-bottom: 1.5rem; }
/* grid grid-cols-2 gap-4 mb-6 */
.vq-prod-card-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.vq-spec-lbl { font-family: 'Inter', sans-serif; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ochre); margin-bottom: .25rem; }
.vq-spec-val { font-family: 'Inter', sans-serif; font-size: .75rem; color: hsla(155,24%,9%,.8); }
/* flex flex-wrap gap-2 mb-8 */
.vq-eco-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
/* inline-flex items-center gap-1.5 text-xs bg-bone text-forest px-3 py-1.5 border-forest/10 */
.vq-eco-tag { display: inline-flex; align-items: center; gap: .375rem; font-family: 'Inter', sans-serif; font-size: .75rem; font-weight: 500; background-color: var(--bone); color: var(--forest); padding: .375rem .75rem; border-radius: 2px; border: 1px solid hsla(155,30%,17%,.1); }
/* flex flex-col sm:flex-row gap-3 */
.vq-prod-card-btns { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width:640px) { .vq-prod-card-btns { flex-direction: row; } }
.vq-prod-card-btns a, .vq-prod-card-btns button {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.5rem; font-family: 'Inter', sans-serif; font-size: .875rem;
  font-weight: 500; letter-spacing: .025em; border-radius: 2px;
  transition: all .4s var(--ease); text-decoration: none; cursor: pointer;
}
/* bg-forest text-bone */
.btn-view-prod { background-color: var(--forest); color: var(--bone); border: 1px solid var(--forest); }
.btn-view-prod:hover { opacity: .9; }
/* bg-ochre text-bone | disabled: bg-bone text-forest border-forest/30 */
.btn-add-quote { background-color: var(--ochre); color: var(--bone); border: 1px solid var(--ochre); }
.btn-add-quote:hover { opacity: .9; }
.btn-add-quote.added { background-color: var(--bone); color: var(--forest); border: 1px solid hsla(155,30%,17%,.3); cursor: default; }
/* Category CTA bg-ochre py-16 */
.vq-cat-cta { background-color: var(--ochre); padding: 4rem 1.5rem; }
@media (min-width:768px)  { .vq-cat-cta { padding: 4rem 3rem; } }
@media (min-width:1024px) { .vq-cat-cta { padding: 4rem 5rem; } }
.vq-cat-cta-inner { max-width: 80rem; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
@media (min-width:768px) { .vq-cat-cta-inner { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ── PRODUCT DETAIL ──────────────────────────────────────────── */
/* sticky top-28 */
.vq-detail-sticky { position: sticky; top: 7rem; }
/* rounded-sm overflow-hidden shadow-card aspect-[4/3] */
.vq-detail-img { border-radius: 2px; overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/3; }
.vq-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.vq-detail-eco { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .5rem; }
/* inline-flex items-center gap-1.5 text-xs bg-sand text-forest px-3 py-2 */
.vq-detail-eco-tag { display: inline-flex; align-items: center; gap: .375rem; font-family: 'Inter', sans-serif; font-size: .75rem; font-weight: 500; background-color: var(--sand); color: var(--forest); padding: .5rem .75rem; border-radius: 2px; border: 1px solid hsla(155,30%,17%,.1); }
/* Spec blocks space-y-6 mb-10 */
.vq-spec-blocks { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
/* bg-sand rounded-sm p-6 */
.vq-spec-block { background-color: var(--sand); border-radius: 2px; padding: 1.5rem; }
.vq-spec-block-head { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
/* w-8 h-8 bg-forest rounded-sm */
.vq-spec-icon { width: 2rem; height: 2rem; background-color: var(--forest); border-radius: 2px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vq-spec-icon svg { color: var(--ochre); }
/* text-xs tracking-widest uppercase text-forest font-medium */
.vq-spec-label { font-family: 'Inter', sans-serif; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--forest); font-weight: 500; }
/* text-sm font-sans text-charcoal leading-relaxed pl-11 */
.vq-spec-val { font-family: 'Inter', sans-serif; font-size: .875rem; color: var(--charcoal); line-height: 1.625; padding-left: 2.75rem; }
/* Why this product — bg-forest rounded-sm p-8 mb-8 */
.vq-why-prod { background-color: var(--forest); border-radius: 2px; padding: 2rem; margin-bottom: 2rem; }
.vq-why-prod-eyebrow { font-family: 'Inter', sans-serif; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sand); margin-bottom: 1.25rem; }
.vq-why-prod-items { display: flex; flex-direction: column; gap: 1rem; }
.vq-why-prod-item { display: flex; align-items: flex-start; gap: .75rem; }
.vq-why-prod-item svg { color: var(--ochre); flex-shrink: 0; margin-top: .125rem; }
.vq-why-prod-item span { font-family: 'Inter', sans-serif; font-size: .875rem; color: hsla(36,33%,94%,.75); }
/* Related bg-sand py-20 */
.vq-related { background-color: var(--sand); padding: 5rem 1.5rem; }
@media (min-width:768px)  { .vq-related { padding: 5rem 3rem; } }
@media (min-width:1024px) { .vq-related { padding: 5rem 5rem; } }
/* grid 1 | md:2  gap-6 */
.vq-related-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width:768px) { .vq-related-grid { grid-template-columns: 1fr 1fr; } }
/* group bg-bone rounded-sm overflow-hidden shadow-soft flex */
.vq-related-card { display: flex; background-color: var(--bone); border-radius: 2px; overflow: hidden; box-shadow: var(--shadow-soft); transition: box-shadow .4s var(--ease); text-decoration: none; }
.vq-related-card:hover { box-shadow: var(--shadow-card); }
/* w-32 md:w-44 shrink-0 overflow-hidden */
.vq-related-card-img { width: 8rem; flex-shrink: 0; overflow: hidden; }
@media (min-width:768px) { .vq-related-card-img { width: 11rem; } }
.vq-related-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.vq-related-card:hover .vq-related-card-img img { transform: scale(1.05); }
/* flex flex-col justify-center px-6 py-5 */
.vq-related-card-body { display: flex; flex-direction: column; justify-content: center; padding: 1.25rem 1.5rem; }
.vq-related-card-title { font-family: 'Playfair Display', serif; font-size: 1.125rem; color: var(--forest); margin-bottom: .5rem; }
.vq-related-card-desc { font-family: 'Inter', sans-serif; font-size: .75rem; color: hsla(155,24%,9%,.6); line-height: 1.625; margin-bottom: .75rem; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.vq-related-card-link { display: inline-flex; align-items: center; gap: .375rem; font-family: 'Inter', sans-serif; font-size: .75rem; color: var(--ochre); font-weight: 500; transition: gap .4s var(--ease); }
.vq-related-card:hover .vq-related-card-link { gap: .75rem; }
/* ── CONTACT PAGE ────────────────────────────────────────────── */
/* grid 1 | lg:2  gap-16 */
.vq-contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width:1024px) { .vq-contact-grid { grid-template-columns: 1fr 1fr; } }
/* font-serif text-2xl text-forest mb-2 */
.vq-contact-col-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--forest); margin-bottom: .5rem; }
/* w-8 h-px bg-ochre mt-3 mb-8 */
.vq-contact-divider { display: block; width: 2rem; height: 1px; background-color: var(--ochre); margin: .75rem 0 2rem; }
/* Success — bg-forest rounded-sm p-12 text-center */
.vq-contact-success { display: none; background-color: var(--forest); border-radius: 2px; padding: 3rem; text-align: center; }
.vq-contact-success.show { display: block; }
.vq-success-icon { width: 3.5rem; height: 3.5rem; border-radius: 50%; background-color: hsla(30,35%,49%,.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.vq-success-icon svg { color: var(--ochre); }
.vq-contact-success h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--bone); margin-bottom: .75rem; }
.vq-contact-success p { font-family: 'Inter', sans-serif; font-size: .875rem; color: hsla(36,33%,94%,.7); line-height: 1.625; }

/* ── FORM (COMMENTED) ───────────────────────── */
/* .vq-form { display: flex; flex-direction: column; gap: 1.25rem; } */

/* .vq-form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width:640px) { .vq-form-row { grid-template-columns: 1fr 1fr; } } */

/* .vq-form-label { display: block; font-family: 'Inter', sans-serif; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: hsla(155,24%,9%,.6); margin-bottom: .5rem; } */

/* .vq-form-input, .vq-form-select, .vq-form-textarea {
  width: 100%; background-color: hsla(37,29%,77%,.3);
  border: 1px solid var(--sand); color: var(--charcoal);
  font-family: 'Inter', sans-serif; font-size: .875rem;
  padding: .75rem 1rem; border-radius: 2px; outline: none;
  transition: border-color .4s var(--ease); -webkit-appearance: none; appearance: none;
} */

/* .vq-form-input:focus, .vq-form-select:focus, .vq-form-textarea:focus { border-color: var(--forest); } */

/* .vq-form-input::placeholder, .vq-form-textarea::placeholder { color: hsla(155,24%,9%,.3); } */

/* .vq-form-textarea { resize: none; } */

/* .vq-form-submit { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: 1rem 1.75rem; background-color: var(--ochre); color: var(--bone); font-family: 'Inter', sans-serif; font-size: .875rem; font-weight: 500; letter-spacing: .025em; border-radius: 2px; border: none; cursor: pointer; transition: opacity .4s var(--ease); } */

/* .vq-form-submit:hover { opacity: .9; } */

/* ── REST (UNCHANGED) ───────────────────────── */
@media (min-width:1024px) { .vq-contact-info { padding-left: 2rem; } }
/* text-base font-sans text-charcoal/70 leading-relaxed mb-10 */
.vq-contact-desc { font-family: 'Inter', sans-serif; font-size: 1rem; color: hsla(155,24%,9%,.7); line-height: 1.625; margin-bottom: 2.5rem; }
/* space-y-6 mb-12 */
.vq-contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.vq-contact-item { display: flex; align-items: flex-start; gap: 1rem; }
/* w-10 h-10 rounded-sm bg-forest */
.vq-contact-item-icon { width: 2.5rem; height: 2.5rem; border-radius: 2px; background-color: var(--forest); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vq-contact-item-icon svg { color: var(--ochre); }
/* text-xs tracking-widest uppercase text-charcoal/50 mb-1 */
.vq-contact-item-label { font-family: 'Inter', sans-serif; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: hsla(155,24%,9%,.5); margin-bottom: .25rem; }
/* text-sm font-sans text-charcoal hover:text-ochre */
.vq-contact-item-val { font-family: 'Inter', sans-serif; font-size: .875rem; color: var(--charcoal); transition: color .4s var(--ease); }
.vq-contact-item-val:hover { color: var(--ochre); }
/* Guarantees bg-sand rounded-sm p-8 space-y-5 */
.vq-guarantees { background-color: var(--sand); border-radius: 2px; padding: 2rem; }
.vq-guarantees-title { font-family: 'Playfair Display', serif; font-size: 1.125rem; color: var(--forest); margin-bottom: 1.25rem; }
.vq-guarantees-list { display: flex; flex-direction: column; gap: 1.25rem; }
.vq-guarantee-item { display: flex; align-items: center; gap: .75rem; }
/* w-5 h-5 rounded-full bg-ochre/20 */
.vq-guarantee-dot-outer { width: 1.25rem; height: 1.25rem; border-radius: 50%; background-color: hsla(30,35%,49%,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
/* w-1.5 h-1.5 rounded-full bg-ochre */
.vq-guarantee-dot { width: .375rem; height: .375rem; border-radius: 50%; background-color: var(--ochre); }
.vq-guarantee-item p { font-family: 'Inter', sans-serif; font-size: .875rem; color: hsla(155,24%,9%,.8); }

/* ── FOOTER (bg-forest py-20) ────────────────────────────────── */
#vq-footer { background-color: var(--forest); color: var(--bone); }
.vq-footer-inner { max-width: 80rem; margin: 0 auto; padding: 5rem 1.5rem; }
@media (min-width:768px)  { .vq-footer-inner { padding: 5rem 3rem; } }
@media (min-width:1024px) { .vq-footer-inner { padding: 5rem 5rem; } }
/* grid 1 | md:2 | lg:4  gap-12 lg:gap-8 */
.vq-footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width:768px)  { .vq-footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
@media (min-width:1024px) { .vq-footer-grid { grid-template-columns: repeat(4,1fr); gap: 2rem; } }
.vq-footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--bone); margin-bottom: .25rem; }
.vq-footer-brand-sub { font-family: 'Inter', sans-serif; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sand); }
.vq-footer-brand-desc { font-family: 'Inter', sans-serif; font-size: .875rem; color: hsla(36,33%,94%,.7); line-height: 1.625; margin: 1.5rem 0; max-width: 18rem; }
.vq-footer-socials { display: flex; gap: 1rem; }
.vq-footer-social { width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 1px solid hsla(36,33%,94%,.2); display: flex; align-items: center; justify-content: center; color: var(--bone); transition: all .4s var(--ease); }
.vq-footer-social:hover { border-color: var(--ochre); color: var(--ochre); }
/* text-xs tracking-widest uppercase text-sand mb-6 */
.vq-footer-col-title { font-family: 'Inter', sans-serif; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sand); margin-bottom: 1.5rem; }
/* space-y-3 */
.vq-footer-links { display: flex; flex-direction: column; gap: .75rem; }
.vq-footer-links a { font-family: 'Inter', sans-serif; font-size: .875rem; color: hsla(36,33%,94%,.7); transition: color .4s var(--ease); }
.vq-footer-links a:hover { color: var(--ochre); }
/* space-y-4 */
.vq-footer-contacts { display: flex; flex-direction: column; gap: 1rem; }
.vq-footer-contact { display: flex; align-items: flex-start; gap: .75rem; }
.vq-footer-contact svg { color: var(--ochre); flex-shrink: 0; margin-top: .125rem; }
.vq-footer-contact span, .vq-footer-contact a { font-family: 'Inter', sans-serif; font-size: .875rem; color: hsla(36,33%,94%,.7); line-height: 1.625; }
.vq-footer-contact a:hover { color: var(--ochre); }
/* mt-16 pt-8 border-t border-bone/10 */
.vq-footer-bottom { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid hsla(36,33%,94%,.1); display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width:768px) { .vq-footer-bottom { flex-direction: row; justify-content: space-between; } }
.vq-footer-bottom p { font-family: 'Inter', sans-serif; font-size: .75rem; color: hsla(36,33%,94%,.4); letter-spacing: .025em; }

/* ── ELEMENTOR ───────────────────────────────────────────────── */
.elementor-section-boxed > .elementor-container { max-width: 100% !important; }
.elementor-page .elementor-section-wrap { padding: 0 !important; }
