/* ═══════════════════════════════════════════════════════════
   Vandalierer Labs — Global Styles
   vl-global.css  ·  v1.0.0
   ═══════════════════════════════════════════════════════════ */

/* ── Base Reset ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--bark);
  background: var(--warm-bg);
  padding-top: var(--header-height);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--terra);
  text-decoration: none;
  transition: var(--transition-fast);
}
a:hover { color: var(--terra-light); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--bark);
  line-height: 1.2;
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5em; }

/* ── Header ──────────────────────────────────────────────── */
.vl-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--header-height);
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--header-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}

/* ── Left group: Logo + Nav ── */
.vl-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.vl-header-logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.vl-header-logo {
  width: 60px;
  object-fit: contain;
}

/* ── WordPress Admin Bar — Header abrücken ── */
body.admin-bar .vl-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .vl-header {
    top: 46px;
  }
}

/* Primary nav container (wp_nav_menu renders <nav class="vl-header-nav">) */
.vl-header-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  /* reset any ul/li defaults in case fallback is used */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Nav link — used by Walker AND fallback */
.vl-nav-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-text);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 5px;
}
.vl-nav-link:hover,
.vl-nav-link--active { color: var(--terra); }

/* ── Right group: Actions ── */
.vl-header-right {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* Projekte-Link */
.vl-header-projects { /* inherits .vl-nav-link */ }

/* Cart Button — Design System style (background pill, not naked icon) */
.vl-cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(196, 99, 58, 0.1);
  border: 1px solid rgba(196, 99, 58, 0.2);
  font-size: 12px;
  font-weight: 700;
  color: var(--terra);
  text-decoration: none;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.vl-cart-btn:hover {
  background: rgba(196, 99, 58, 0.18);
  color: var(--terra);
}

/* Cart badge — inline in button, not absolute-positioned */
.vl-cart-badge {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  line-height: 1;
  flex-shrink: 0;
}

/* Login button — filled terra (wie App) */
.vl-header-login {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--terra);
  text-decoration: none;
  padding: 5px 14px;
  border-radius: 7px;
  transition: var(--transition-fast);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.vl-header-login:hover {
  background: var(--terra-light);
  color: #fff;
}

/* Avatar */
.vl-header-avatar {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.vl-avatar-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}
.vl-header-avatar:hover .vl-avatar-circle { background: var(--terra-light); }

/* ── Mobile ── */
@media (max-width: 768px) {
  .vl-header { padding: 0 16px; }
  .vl-header-nav { display: none; }
  .vl-header-projects span { display: none; }
  .vl-cart-text { display: none; }
}

/* ── Layout helpers ──────────────────────────────────────── */
.vl-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.vl-container--narrow {
  max-width: 780px;
}

.vl-main { min-height: calc(100vh - var(--header-height)); }

/* ── WooCommerce page wrappers ───────────────────────────── */
/* :not(body) — WP/WC hängt .woocommerce-page an <body>; body darf nicht
   beschnitten oder mit padding versehen werden — das übernehmen die Templates selbst */
.woocommerce:not(.woocommerce-store-notice):not(body),
.woocommerce-page:not(.woocommerce-store-notice):not(body) {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
}

/* Store notice — WC "Demnächst verfügbar" / Demo-Mode-Banner
   WC's eigenes CSS wird per __return_empty_array deaktiviert → Position selbst setzen */
p.woocommerce-store-notice,
p.demo_store {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9998 !important;   /* unter Admin-Bar (9999), über Seiten-Content */
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 10px 24px !important;
  box-sizing: border-box !important;
  background: var(--bark) !important;
  color: rgba(255,255,255,.85) !important;
  font-size: 13px !important;
  text-align: center !important;
  border-top: 1px solid rgba(255,255,255,.1) !important;
}
p.woocommerce-store-notice a,
p.demo_store a {
  color: var(--terra-light) !important;
  margin-left: 12px !important;
  text-decoration: underline !important;
}

/* WC notices innerhalb von Seiten */
.woocommerce-notices-wrapper {
  width: 100%;
  box-sizing: border-box;
}

/* ── Global Buttons ──────────────────────────────────────── */
.vl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  border-radius: var(--radius-xl);
  padding: 12px 22px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  border: none;
  outline: none;
  white-space: nowrap;
}
.vl-btn:focus-visible { outline: 2px solid var(--terra); outline-offset: 2px; }

.vl-btn--terra {
  background: var(--terra);
  color: #fff;
  box-shadow: var(--shadow-terra);
}
.vl-btn--terra:hover {
  background: var(--terra-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196, 99, 58, 0.35);
}

.vl-btn--outline {
  background: transparent;
  color: var(--muted-text);
  border: 1.5px solid var(--warm-border);
}
.vl-btn--outline:hover {
  border-color: var(--terra-pale);
  color: var(--terra);
  background: var(--terra-overlay);
}

/* WooCommerce button overrides */
.button,
button[type="submit"],
input[type="submit"],
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #payment #place_order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body) !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  border-radius: var(--radius-xl) !important;
  padding: 12px 22px !important;
  cursor: pointer !important;
  transition: var(--transition-fast) !important;
  text-decoration: none !important;
  background: var(--terra) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: var(--shadow-terra) !important;
  line-height: 1.4 !important;
}

.button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--terra-light) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196, 99, 58, 0.35) !important;
}

/* ── Forms ───────────────────────────────────────────────── */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="url"],
textarea,
select {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--bark);
  background: #fff;
  border: 1.5px solid var(--warm-border);
  border-radius: var(--radius-lg);
  padding: 10px 14px;
  width: 100%;
  transition: var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px var(--terra-glow);
}

input::placeholder,
textarea::placeholder { color: var(--muted-light); }

label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.woocommerce form .form-row label { text-transform: none; }

/* ── Notices ─────────────────────────────────────────────── */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: var(--radius-xl) !important;
  border-left: 4px solid var(--terra) !important;
  background: var(--warm-card) !important;
  padding: 14px 18px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--bark) !important;
  box-shadow: var(--shadow-card) !important;
  margin-bottom: 16px !important;
}
.woocommerce-error { border-left-color: var(--error) !important; }
.woocommerce-info { border-left-color: var(--water) !important; }

/* ── Breadcrumbs (shared — vl-product, vl-archive, vl-page) ─ */
.vl-breadcrumb-bar {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(196,99,58,.07);
  padding: 8px 40px;
}
.vl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--muted-light);
  margin: 0 auto;
}
.vl-breadcrumb a { color: var(--muted-light); text-decoration: none; transition: color .15s; }
.vl-breadcrumb a:hover { color: var(--terra); }
.vl-breadcrumb-sep { opacity: .4; }
.vl-breadcrumb-current { color: var(--terra); font-weight: 600; }
@media (max-width: 900px) {
  .vl-breadcrumb-bar { padding: 8px 24px; }
}

/* ── WC default breadcrumb ───────────────────────────────── */
.woocommerce-breadcrumb {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}
.woocommerce-breadcrumb a { color: var(--muted); }
.woocommerce-breadcrumb a:hover { color: var(--terra); }

/* ── Prose (static pages) ────────────────────────────────── */
.vl-prose {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted-text);
}
.vl-prose h1, .vl-prose h2, .vl-prose h3 { color: var(--bark); margin: 1.5em 0 0.6em; }
.vl-prose h2 { font-size: 22px; }
.vl-prose h3 { font-size: 18px; }
.vl-prose p { margin-bottom: 1em; }
.vl-prose a { color: var(--terra); text-decoration: underline; }
.vl-prose a:hover { color: var(--terra-light); }
.vl-prose ul, .vl-prose ol { margin: 0.8em 0 0.8em 1.5em; }
.vl-prose li { margin-bottom: 0.4em; }
.vl-prose table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 14px; }
.vl-prose th { background: var(--warm-bg); color: var(--bark); font-weight: 700; padding: 10px 14px; border: 1px solid var(--warm-border); text-align: left; }
.vl-prose td { padding: 10px 14px; border: 1px solid var(--warm-border); }

/* ── Page Layout ─────────────────────────────────────────── */
.vl-main--page { padding: 48px 0 80px; }
.vl-page-header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--warm-border); }
.vl-page-title { font-size: 32px; color: var(--bark); margin-bottom: 8px; }
.vl-page-intro { font-size: 16px; color: var(--muted-text); line-height: 1.7; }

/* ── Blog Layout ─────────────────────────────────────────── */
.vl-main--blog { padding: 48px 0 80px; }
.vl-archive-header { margin-bottom: 40px; }
.vl-archive-title { font-size: 32px; }
.vl-archive-desc { color: var(--muted-text); margin-top: 8px; font-size: 15px; }

.vl-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.vl-post-card {
  background: var(--warm-card);
  border: 1.5px solid var(--warm-border);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  transition: var(--transition-mid);
}
.vl-post-card:hover { box-shadow: var(--shadow-float); transform: translateY(-2px); }

.vl-post-card-thumb { display: block; aspect-ratio: 16/9; overflow: hidden; }
.vl-post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.vl-post-card:hover .vl-post-card-thumb img { transform: scale(1.03); }

.vl-post-card-body { padding: 20px; }
.vl-post-card-meta { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.vl-post-card-title { font-size: 17px; margin: 8px 0 10px; line-height: 1.3; }
.vl-post-card-title a { color: var(--bark); text-decoration: none; }
.vl-post-card-title a:hover { color: var(--terra); }
.vl-post-card-excerpt { font-size: 13px; color: var(--muted-text); line-height: 1.6; margin-bottom: 14px; }
.vl-post-card-more { font-size: 13px; font-weight: 700; color: var(--terra); }

/* ── Pagination ──────────────────────────────────────────── */
.vl-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.vl-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted-text);
  background: var(--warm-card);
  border: 1.5px solid var(--warm-border);
  transition: var(--transition-fast);
  text-decoration: none;
}
.vl-pagination .page-numbers:hover { background: var(--terra-overlay); border-color: var(--terra-pale); color: var(--terra); }
.vl-pagination .page-numbers.current { background: var(--terra); color: #fff; border-color: var(--terra); }
.vl-pagination .prev, .vl-pagination .next { width: auto; padding: 0 14px; }

/* ── Empty State ─────────────────────────────────────────── */
.vl-empty-state { text-align: center; padding: 80px 24px; color: var(--muted-text); }

/* ── Footer ──────────────────────────────────────────────── */
.vl-footer {
  background: var(--bark);
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

/* Newsletter strip — inside footer, above main grid */
.vl-footer-newsletter {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 24px 40px;
}

.vl-footer-newsletter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.vl-footer-newsletter-text { flex: 1; }

.vl-footer-newsletter-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
}

.vl-footer-newsletter-sub {
  font-size: 12px;
  color: rgba(255,255,255,.45);
}

.vl-footer-newsletter-form {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.vl-footer-nl-input {
  padding: 9px 14px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  width: 240px;
  transition: border-color .15s;
}
.vl-footer-nl-input::placeholder { color: rgba(255,255,255,.3); }
.vl-footer-nl-input:focus { border-color: rgba(196,99,58,.5); }

.vl-footer-nl-btn {
  padding: 9px 18px;
  border-radius: 9px;
  border: none;
  background: var(--terra);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.vl-footer-nl-btn:hover { background: #b3562f; }

/* Main footer layout — brand fixed width, link columns share remaining space */
.vl-footer-top {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 40px 40px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.vl-footer-brand {
  flex: 0 0 280px;
}
.vl-footer-col {
  flex: 1;
}

/* Brand column */
.vl-footer-logo-link { display: inline-block; margin-bottom: 16px; }
.vl-footer-logo {
  height: 16px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);  /* white logo on dark bg */
}

.vl-footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 260px;
}

.vl-footer-social { display: flex; gap: 10px; }

.vl-footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
}
.vl-footer-social-btn:hover {
  border-color: var(--terra);
  background: rgba(196,99,58,.15);
}

/* Nav columns */
.vl-footer-col-title {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.vl-footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.vl-footer-link {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-weight: 500;
  transition: color .15s;
}
.vl-footer-link:hover { color: #fff; }

.vl-footer-link-badge {
  display: inline-block;
  margin-left: 7px;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(196,99,58,.25);
  color: var(--terra-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  vertical-align: middle;
}

/* Legal strip */
.vl-footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.vl-footer-copyright { font-size: 11px; color: rgba(255,255,255,.25); }

.vl-footer-legal {
  display: flex;
  gap: 20px;
}

.vl-footer-legal a {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color .15s;
}
.vl-footer-legal a:hover { color: rgba(255,255,255,.65); }

.vl-footer-made { font-size: 11px; color: rgba(255,255,255,.2); }
.vl-footer-made span { color: var(--terra); }

@media (max-width: 900px) {
  .vl-footer-top   { flex-wrap: wrap; gap: 32px; }
  .vl-footer-brand { flex: 0 0 100%; }
  .vl-footer-col   { flex: 1 1 140px; }
}

@media (max-width: 640px) {
  .vl-footer-top              { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .vl-footer-newsletter       { padding: 24px; }
  .vl-footer-newsletter-inner { flex-direction: column; align-items: stretch; }
  .vl-footer-nl-input         { width: 100%; }
  .vl-footer-bottom           { flex-direction: column; align-items: flex-start; padding: 16px 24px; }
  .vl-footer-legal-inner { flex-direction: column; align-items: flex-start; }
  .vl-footer-legal-links { gap: 12px; }
}

/* ── Homepage Styles ─────────────────────────────────────── */

/* ── Hero ────────────────────────────────────────────────── */
.vl-hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.vl-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 80%;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Light warm overlay — identical to app landing page */
.vl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(240,235,227,.88) 0%,
    rgba(240,235,227,.75) 40%,
    rgba(240,235,227,.3)  100%
  );
  z-index: 1;
}

/* Flex:1 — pushes stats bar to bottom */
.vl-hero-main {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 80px 0;
}

.vl-hero-content { max-width: 560px; }

/* Badge pill */
.vl-hero-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(196,99,58,.1);
  border: 1px solid rgba(196,99,58,.2);
  font-size: 11px;
  font-weight: 700;
  color: var(--terra);
  letter-spacing: .08em;
  margin-bottom: 20px;
}

.vl-hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--bark);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.vl-hero-title span { color: var(--terra); }

.vl-hero-subtitle {
  font-size: 16px;
  color: var(--muted-text);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.vl-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Primary button — terra filled */
.vl-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--terra);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  font-family: var(--font-body);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(196,99,58,.3);
  transition: background .15s, box-shadow .15s;
}
.vl-btn-primary:hover {
  background: #b3562f;
  color: #fff;
  box-shadow: 0 6px 28px rgba(196,99,58,.4);
}

/* Glass button — translucent warm */
.vl-btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  border: 1.5px solid #e8d8cc;
  color: var(--muted-text);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.vl-btn-glass:hover { border-color: var(--terra); color: var(--terra); }

/* Stats bar — sits at bottom of hero */
.vl-stats-bar {
  position: relative;
  z-index: 2;
  padding: 20px 80px;
  border-top: 1px solid rgba(196,99,58,.1);
  display: flex;
  gap: 40px;
  background: rgba(244,236,224,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.vl-stat-val {
  font-family: var(--font-mono-din);
  font-size: 20px;
  font-weight: 900;
  color: var(--terra);
  display: flex;
  align-items: center;
  height: 28px;
  line-height: 28px;
}

.vl-stat-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

/* Scroll hint */
.vl-scroll-hint {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: .45;
  animation: vl-bounce 2s ease-in-out infinite;
  pointer-events: none;
}
.vl-scroll-hint span {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .1em;
}

@keyframes vl-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 768px) {
  .vl-hero-main    { padding: 46px 28px 0; }
  .vl-stats-bar    { padding: 16px 28px; gap: 24px; flex-wrap: wrap; }
  .vl-hero-title   { font-size: 36px; }
  .vl-hero-ctas    { flex-direction: column; }
  .vl-scroll-hint  { display: none; }
}

/* Features Section */
.vl-features {
  padding: 80px 0;
  background: var(--warm-bg);
}

.vl-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}

.vl-section-title {
  font-size: 28px;
  color: var(--bark);
}

.vl-section-sub {
  font-size: 15px;
  color: var(--muted-text);
  margin-top: 6px;
}

.vl-section-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--terra);
}
.vl-section-link:hover { color: var(--terra-light); }

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

@media (max-width: 900px) { .vl-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .vl-features-grid { grid-template-columns: 1fr; } }

.vl-feature-card {
  background: var(--warm-card);
  border: 1.5px solid var(--warm-border);
  border-radius: var(--radius-3xl);
  padding: 28px 24px;
  transition: var(--transition-mid);
}
.vl-feature-card:hover {
  box-shadow: var(--shadow-float);
  transform: translateY(-2px);
  border-color: var(--terra-pale);
}

.vl-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.vl-feature-icon--terra       { background: var(--terra-overlay); color: var(--terra); }
.vl-feature-icon--water       { background: var(--water-bg); color: var(--water); }
.vl-feature-icon--sage        { background: var(--sage-bg); color: var(--sage-dark); }
.vl-feature-icon--terra-pale  { background: rgba(240, 205, 184, 0.35); color: var(--terra); }
.vl-feature-icon--bark        { background: rgba(44, 31, 20, 0.07); color: var(--bark); }
.vl-feature-icon--muted       { background: rgba(176, 128, 96, 0.10); color: var(--muted); }

.vl-feature-title { font-size: 16px; margin-bottom: 10px; color: var(--bark); }
.vl-feature-desc { font-size: 13px; color: var(--muted-text); line-height: 1.65; margin-bottom: 16px; }
.vl-feature-link { font-size: 13px; font-weight: 700; color: var(--terra); }
.vl-feature-link:hover { color: var(--terra-light); }

/* CTA Section */
.vl-cta-section { padding: 80px 0; }

.vl-cta-inner {
  position: relative;
  background: var(--bark);
  border-radius: 24px;
  overflow: hidden;
  padding: 64px 56px;
  text-align: center;
}

.vl-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196, 99, 58, 0.20) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(122, 158, 126, 0.12) 0%, transparent 60%);
}

.vl-cta-content { position: relative; z-index: 1; }
.vl-cta-title { font-family: var(--font-display); font-size: 36px; color: #fff; margin-bottom: 14px; }
.vl-cta-sub { font-size: 16px; color: rgba(255, 255, 255, 0.7); max-width: 520px; margin: 0 auto 32px; line-height: 1.7; }

.vl-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.vl-btn--cta-primary {
  background: var(--terra);
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 800;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-terra);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition-fast);
}
.vl-btn--cta-primary:hover {
  background: var(--terra-light);
  color: #fff;
  transform: translateY(-1px);
}

.vl-btn--cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 800;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition-fast);
}
.vl-btn--cta-secondary:hover { background: rgba(255, 255, 255, 0.17); color: #fff; }

@media (max-width: 640px) {
  .vl-cta-inner { padding: 40px 24px; }
  .vl-cta-title { font-size: 26px; }
  .vl-cta-actions { flex-direction: column; align-items: stretch; }
}

/* Shop Preview Products Grid */
.vl-shop-preview { padding: 80px 0; background: var(--creme); }

.vl-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 960px)  { .vl-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .vl-products-grid { grid-template-columns: 1fr; } }

.vl-product-card {
  background: var(--warm-card);
  border: 1.5px solid var(--warm-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  text-decoration: none;
  transition: var(--transition-mid);
  display: flex;
  flex-direction: column;
}
.vl-product-card:hover {
  box-shadow: var(--shadow-float);
  transform: translateY(-3px);
  border-color: var(--terra-pale);
}

.vl-product-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--warm-bg);
}
.vl-product-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.vl-product-card:hover .vl-product-thumb { transform: scale(1.04); }

.vl-product-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-light);
}

.vl-product-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--terra);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.vl-product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.vl-product-card-name { font-size: 14px; font-weight: 700; color: var(--bark); line-height: 1.3; }
.vl-product-card-price { font-family: var(--font-mono-din); font-size: 16px; color: var(--terra); font-weight: 900; margin-top: auto; }

/* ── Coming Soon Page ────────────────────────────────────── */
.vl-coming-soon {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--warm-bg);
}

.vl-cs-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 80%;
  background-repeat: no-repeat;
  z-index: 0;
}

.vl-cs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(240,235,227,.88) 0%,
    rgba(240,235,227,.75) 40%,
    rgba(240,235,227,.3)  100%
  );
  z-index: 1;
}

.vl-cs-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 580px;
  padding: 40px 24px;
}

.vl-cs-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--bark);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 16px 0 20px;
}

.vl-cs-desc {
  font-size: 17px;
  color: var(--muted-text);
  line-height: 1.7;
  margin: 0 auto 36px;
  max-width: 440px;
}

.vl-cs-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .vl-cs-title   { font-size: 30px; }
  .vl-cs-desc    { font-size: 15px; }
  .vl-cs-actions { flex-direction: column; align-items: center; }
}
