/* VibeComm — boxy design system. Sharp edges, strong borders, tight grids. */

:root {
  --vc-ink: #0a0a0a;
  --vc-paper: #ffffff;
  --vc-bg: #fafaf7;
  --vc-surface: #f4f4f0;
  --vc-line: #0a0a0a;
  --vc-line-soft: #e5e5e0;
  --vc-muted: #6b6b6b;
  --vc-accent: #ff4d1a;
  --vc-accent-ink: #ffffff;
  --vc-sans: system-ui, -apple-system, "Segoe UI", sans-serif;
  --vc-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --vc-radius: 16px;
  --vc-radius-sm: 8px;
  --vc-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04);
  --vc-shadow-lg: 0 4px 6px rgba(0,0,0,.04), 0 12px 32px rgba(0,0,0,.08);
}

body.vc-woo { background: var(--vc-bg); color: var(--vc-ink); overflow-x: hidden; }

.vc-mono { font-family: var(--vc-mono); font-variant-numeric: tabular-nums; letter-spacing: 0.01em; }
.vc-kicker { font-family: var(--vc-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--vc-muted); }
.vc-rule { border-top: 1px solid var(--vc-line); }
.vc-rule-soft { border-top: 1px solid var(--vc-line-soft); }

/* Hard-edged box */
.vc-box {
  background: var(--vc-paper);
  border: 1px solid var(--vc-line);
  border-radius: var(--vc-radius-sm);
}
.vc-box-soft {
  background: var(--vc-paper);
  border: 1px solid var(--vc-line-soft);
  border-radius: var(--vc-radius-sm);
}

/* Shop grid — precise lines, no gaps */
.vc-shop-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
}
@media (min-width: 640px)  { .vc-shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .vc-shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1280px) { .vc-shop-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.vc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--vc-paper);
  border: 1px solid var(--vc-line-soft);
  border-radius: var(--vc-radius, 16px);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(20, 18, 14, 0.04);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  text-decoration: none;
  color: inherit;
}
.vc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vc-shadow-lg, 0 16px 40px rgba(20, 18, 14, 0.10));
  border-color: var(--vc-line);
}
.vc-card:hover .vc-card-media img { transform: scale(1.04); }
.vc-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--vc-bg, #f5f5f0);
  overflow: hidden;
}
.vc-card-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.vc-card-body { padding: 16px 18px 8px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.vc-card-title { font-size: 15px; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; }
.vc-card-meta { font-family: var(--vc-mono); font-size: 10px; color: var(--vc-muted); letter-spacing: 0.14em; text-transform: uppercase; }
.vc-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px 18px;
  font-family: var(--vc-mono); font-size: 12px;
}
.vc-card-price { font-weight: 600; color: var(--vc-ink); }
.vc-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: 0.12em; text-transform: uppercase; font-size: 11px; font-weight: 600;
  padding: 9px 16px;
  background: var(--vc-ink); color: var(--vc-paper);
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
}
.vc-card-cta::after { content: "→"; }
.vc-card:hover .vc-card-cta { background: var(--vc-accent); color: var(--vc-accent-ink, #fff); }
.vc-card-cta--full { width: 100%; justify-content: center; }

.vc-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--vc-ink); color: var(--vc-paper);
  font-family: var(--vc-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; z-index: 1;
}
.vc-badge.accent { background: var(--vc-accent); color: var(--vc-accent-ink, #fff); }

/* Toolbar for shop */
.vc-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--vc-line);
  border-bottom: 1px solid var(--vc-line);
  font-family: var(--vc-mono); font-size: 12px;
}
.vc-toolbar select, .vc-toolbar input {
  background: transparent;
  border: 1px solid var(--vc-line);
  padding: 6px 10px;
  font-family: var(--vc-mono); font-size: 12px;
  border-radius: var(--vc-radius-sm);
}

/* ══════════════════════════════════════════════
   SINGLE PRODUCT PAGE  —  vcp-* namespace
   ══════════════════════════════════════════════ */

/* Page wrapper */
.vcp-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 20px 80px;
}
@media (min-width: 768px) { .vcp-page { padding: 28px 32px 100px; } }

/* ── Breadcrumb ────────────────────────────── */
.vcp-crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 4px;
  font-size: 13px; color: var(--vc-muted);
  margin-bottom: 24px;
}
.vcp-crumbs a { color: var(--vc-muted); text-decoration: none; transition: color 140ms; }
.vcp-crumbs a:hover { color: var(--vc-ink); }
.vcp-crumbs > span:last-child { color: var(--vc-ink); font-weight: 500; }
.vcp-crumb-sep { opacity: 0.4; font-size: 12px; }

/* ── Hero 2-column grid ─────────────────────── */
.vcp-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 56px;
}
@media (min-width: 1024px) {
  .vcp-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }
}

/* ── Gallery ─────────────────────────────────── */
.vcp-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1024px) {
  .vcp-gallery {
    position: sticky;
    top: calc(var(--vc-header-h, 120px) + 16px);
    align-self: start;
  }
}

/* Main image frame — rounded */
.vcp-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f4f4f0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--vc-line-soft);
}
.vcp-gallery-main img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 200ms ease;
}

/* Thumbnails grid — 4 columns, rounded with ring */
.vcp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.vcp-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f4f4f0;
  border-radius: 10px;
  border: 1px solid var(--vc-line-soft);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color 140ms ease;
}
.vcp-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.vcp-thumb-ring {
  position: absolute; inset: 0;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: border-color 140ms ease;
  pointer-events: none;
}
.vcp-thumb.is-active .vcp-thumb-ring { border-color: var(--vc-ink); }
.vcp-thumb:hover .vcp-thumb-ring { border-color: var(--vc-accent); }

/* ── Product body ─────────────────────────────── */
.vcp-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Configurable badge */
.vcp-badge-config {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  background: var(--vc-accent); color: #fff;
  font-family: var(--vc-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  width: fit-content;
}

/* Title */
.vcp-title {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--vc-ink);
  margin: 0;
}

/* Short description */
.vcp-short-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
  max-width: 52ch;
}
.vcp-short-desc p { margin: 0 0 8px; }
.vcp-short-desc p:last-child { margin: 0; }

/* Trust strip — below add-to-cart */
.vcp-trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-top: 4px;
}
@media (min-width: 640px) {
  .vcp-trust-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.vcp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--vc-bg);
  border: 1px solid var(--vc-line-soft);
  border-radius: 10px;
  font-family: var(--vc-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vc-muted);
  line-height: 1.3;
}
.vcp-trust-item svg { flex-shrink: 0; color: var(--vc-accent); }

/* ── Buttons (shared) ────────────────────────── */
.vc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 20px;
  background: var(--vc-ink); color: var(--vc-paper);
  font-family: var(--vc-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--vc-ink);
  border-radius: var(--vc-radius-sm);
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}
.vc-btn:hover { background: var(--vc-accent); border-color: var(--vc-accent); color: var(--vc-accent-ink); }
.vc-btn.is-ghost { background: transparent; color: var(--vc-ink); }
.vc-btn.is-ghost:hover { background: var(--vc-ink); color: var(--vc-paper); }

/* ── Spec grid ───────────────────────────────── */
.vc-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--vc-line);
  border-radius: var(--vc-radius-sm);
  overflow: hidden;
}
.vc-spec {
  padding: 12px 14px;
  border-right: 1px solid var(--vc-line-soft);
  border-bottom: 1px solid var(--vc-line-soft);
}
.vc-spec:nth-child(2n) { border-right: 0; }
.vc-spec-k { font-family: var(--vc-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--vc-muted); }
.vc-spec-v { font-size: 14px; margin-top: 2px; }

/* ── Legacy selectors (used by configurator & cart code) ─── */
.vc-crumbs { font-family: var(--vc-mono); font-size: 11px; color: var(--vc-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.vc-crumbs a { color: var(--vc-muted); text-decoration: none; }
.vc-crumbs a:hover { color: var(--vc-ink); }
.vc-title { font-size: 34px; line-height: 1.05; letter-spacing: -0.02em; font-weight: 700; }
@media (min-width: 1024px) { .vc-title { font-size: 40px; } }
.vc-sub { color: var(--vc-muted); font-size: 15px; line-height: 1.55; max-width: 56ch; }
.vc-price-row { display: flex; align-items: baseline; gap: 14px; padding: 14px 0; border-top: 1px solid var(--vc-line); border-bottom: 1px solid var(--vc-line); }
.vc-price { font-family: var(--vc-mono); font-size: 28px; font-weight: 600; letter-spacing: -0.01em; }
.vc-price-from { font-family: var(--vc-mono); font-size: 11px; color: var(--vc-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.vc-trust { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--vc-line-soft); }
.vc-trust > div { padding: 12px; border-right: 1px solid var(--vc-line-soft); font-family: var(--vc-mono); font-size: 11px; text-align: center; color: var(--vc-muted); }
.vc-trust > div:last-child { border-right: 0; }

/* ── Tabs — clean underline style ──────────────── */
.vcp-tabs-wrap {
  margin-bottom: 56px;
}
.vcp-tabs-wrap ul.tabs {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid var(--vc-line-soft);
}
.vcp-tabs-wrap ul.tabs li { margin: 0; }
.vcp-tabs-wrap ul.tabs li a {
  display: block;
  padding: 12px 20px;
  font-family: var(--vc-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--vc-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 140ms ease, border-color 140ms ease;
}
.vcp-tabs-wrap ul.tabs li a:hover { color: var(--vc-ink); }
.vcp-tabs-wrap ul.tabs li.active a {
  color: var(--vc-ink);
  border-bottom-color: var(--vc-ink);
}
.vcp-tabs-wrap .panel {
  padding: 32px 0;
}
.vcp-tabs-wrap .woocommerce-Tabs-panel--description .woocommerce-Tabs-panel--description,
.vcp-tabs-wrap .panel h2 {
  font-size: 13px;
  font-family: var(--vc-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vc-muted);
  margin: 0 0 20px;
}
.vcp-tabs-wrap .panel p { font-size: 15px; line-height: 1.7; color: #374151; max-width: 72ch; }
.vcp-tabs-wrap .panel h3 { font-size: 15px; font-weight: 700; margin: 24px 0 8px; }

/* Backwards-compat for old .vc-tabs selector used elsewhere */
.vc-tabs { margin-top: 48px; }
.vc-tabs ul.tabs { list-style: none; padding: 0; margin: 0; display: flex; gap: 0; border-bottom: 1px solid var(--vc-line); }
.vc-tabs ul.tabs li a { display: block; padding: 14px 20px; font-family: var(--vc-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--vc-muted); text-decoration: none; }
.vc-tabs ul.tabs li.active a { color: var(--vc-ink); border-bottom: 2px solid var(--vc-ink); margin-bottom: -1px; }
.vc-tabs .panel { padding: 24px; }

/* ── Related section ─────────────────────────── */
.vcp-related { margin-bottom: 24px; }
.vcp-related-header {
  display: flex; align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--vc-line-soft);
}
.vcp-section-label {
  font-family: var(--vc-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vc-muted);
}

/* WooCommerce notice polish (boxy) */
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info {
  border-radius: var(--vc-radius-sm) !important;
  border: 1px solid var(--vc-line) !important;
  background: var(--vc-paper) !important;
  font-family: var(--vc-mono);
  font-size: 12px;
}

/* Pagination */
.vc-pagination { display: flex; justify-content: center; gap: 0; margin: 32px 0; }
.vc-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border: 1px solid var(--vc-line);
  margin-left: -1px;
  font-family: var(--vc-mono); font-size: 12px;
  text-decoration: none;
  color: var(--vc-ink);
  background: var(--vc-paper);
}
.vc-pagination .page-numbers.current,
.vc-pagination .page-numbers:hover { background: var(--vc-ink); color: var(--vc-paper); }

/* Empty state */
.vc-empty {
  border: 1px dashed var(--vc-line);
  padding: 48px 24px;
  text-align: center;
  color: var(--vc-muted);
  font-family: var(--vc-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ============ Shop archive — same DNA as front page ============ */

.vc-shop-hero { border-bottom: 1px solid var(--vc-line); background: var(--vc-bg); padding: 56px 0 44px; }
.vc-shop-hero .vc-wrap { max-width: 80rem; margin: 0 auto; padding: 0 16px; }
.vc-shop-hero-grid {
  display: grid; gap: 32px;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
}
@media (min-width: 1024px) {
  .vc-shop-hero-grid { grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr); gap: 48px; }
}
.vc-shop-hero-title {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-top: 14px;
}
.vc-shop-hero-title em { font-style: normal; color: var(--vc-accent); }
.vc-shop-hero-lead { margin-top: 18px; max-width: 56ch; }

.vc-shop-hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--vc-line);
  background: var(--vc-paper);
}
.vc-shop-fact {
  padding: 18px 16px;
  border-right: 1px solid var(--vc-line-soft);
  border-bottom: 1px solid var(--vc-line-soft);
  display: flex; flex-direction: column; gap: 6px;
}
.vc-shop-fact:nth-child(2n) { border-right: 0; }
.vc-shop-fact:nth-last-child(-n+2) { border-bottom: 0; }
.vc-shop-fact.accent { background: var(--vc-ink); color: var(--vc-paper); }
.vc-shop-fact.accent .vc-shop-fact-k { color: rgba(255,255,255,0.6); }
.vc-shop-fact-k { font-family: var(--vc-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--vc-muted); }
.vc-shop-fact-v { font-family: var(--vc-mono); font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }

.vc-shop-main { max-width: 80rem; margin: 0 auto; padding: 32px 16px 8px; }

.vc-chips {
  display: flex; flex-wrap: wrap;
  border: 1px solid var(--vc-line);
  background: var(--vc-paper);
  margin-bottom: 0;
}
.vc-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border-right: 1px solid var(--vc-line-soft);
  border-bottom: 1px solid var(--vc-line-soft);
  font-family: var(--vc-mono); font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vc-ink);
  text-decoration: none;
  background: var(--vc-paper);
  transition: background 140ms ease, color 140ms ease;
}
.vc-chip:hover { background: var(--vc-bg); }
.vc-chip.is-active { background: var(--vc-ink); color: var(--vc-paper); border-color: var(--vc-ink); }
.vc-chip-n { font-size: 10px; opacity: 0.55; letter-spacing: 0.08em; }
.vc-chip.is-active .vc-chip-n { opacity: 0.75; }

.vc-toolbar-right { display: flex; align-items: center; gap: 14px; }
.vc-toolbar-note { font-family: var(--vc-mono); font-size: 11px; color: var(--vc-muted); letter-spacing: 0.08em; text-transform: uppercase; }
@media (max-width: 640px) { .vc-toolbar-note { display: none; } }

.vc-shop-outro { padding: 56px 0 72px; border-top: 1px solid var(--vc-line); background: var(--vc-bg); margin-top: 40px; }
.vc-shop-outro .vc-wrap { max-width: 80rem; margin: 0 auto; padding: 0 16px; }

.vc-valueprops {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  border: 1px solid var(--vc-line);
  background: var(--vc-paper);
}
@media (min-width: 640px)  { .vc-valueprops { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .vc-valueprops { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.vc-valueprop {
  padding: 22px 20px;
  border-right: 1px solid var(--vc-line-soft);
  border-bottom: 1px solid var(--vc-line-soft);
  display: flex; gap: 14px; align-items: flex-start;
}
.vc-valueprop:last-child { border-right: 0; }
@media (min-width: 640px) and (max-width: 1023.9px) {
  .vc-valueprop:nth-child(2n) { border-right: 0; }
  .vc-valueprop:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (min-width: 1024px) { .vc-valueprop { border-bottom: 0; } }
.vc-valueprop-n { font-family: var(--vc-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--vc-accent); font-weight: 700; padding-top: 3px; }
.vc-valueprop-t { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.vc-valueprop-p { font-size: 13px; color: var(--vc-muted); line-height: 1.5; margin-top: 4px; }

.vc-shop-cta {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--vc-line);
  background: var(--vc-ink); color: var(--vc-paper);
  display: flex; flex-direction: column; gap: 18px;
  align-items: flex-start; justify-content: space-between;
}
@media (min-width: 768px) { .vc-shop-cta { flex-direction: row; align-items: center; } }
.vc-shop-cta .vc-hero-kicker { color: rgba(255,255,255,0.55); }
.vc-shop-cta-t {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05; letter-spacing: -0.02em; font-weight: 800;
  margin-top: 8px;
}
.vc-shop-cta-t em { font-style: normal; color: var(--vc-accent); }
.vc-shop-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.vc-shop-cta .vc-btn.is-ghost { color: var(--vc-paper); border-color: var(--vc-paper); background: transparent; }
.vc-shop-cta .vc-btn.is-ghost:hover { background: var(--vc-paper); color: var(--vc-ink); }



/* CG configurator */
#cg-configurator .cg-form { display: grid; gap: 14px; }
#cg-configurator .cg-field { display: flex; flex-direction: column; }
#cg-configurator .cg-label { display:block; font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:var(--vc-muted); margin-bottom:6px; font-weight:600; }
#cg-configurator .cg-input,
#cg-configurator .cg-select,
#cg-configurator .cg-textarea {
  width:100%;
  height:44px;
  padding:0 12px;
  border:1px solid var(--vc-line);
  border-radius:var(--vc-radius-sm);
  background:#fff;
  font:inherit;
  font-size:14px;
  box-sizing:border-box;
  appearance:none;
  -webkit-appearance:none;
}
#cg-configurator .cg-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%230a0a0a' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
#cg-configurator .cg-select:focus,
#cg-configurator .cg-input:focus,
#cg-configurator .cg-textarea:focus { outline: 2px solid var(--vc-ink); outline-offset:-2px; }
#cg-configurator .cg-textarea { height:auto; padding:10px 12px; line-height:1.45; resize:vertical; min-height:72px; background-image:none; }
#cg-configurator .cg-select-multi { height:auto; min-height:120px; padding:6px 12px; background-image:none; }
#cg-configurator .cg-hint { margin-top:4px; font-family:var(--vc-mono); font-size:10px; color:var(--vc-muted); letter-spacing:.06em; text-transform:uppercase; }

/* Row grid — equal-height columns for W/H/Units and qty+CTA */
#cg-configurator .cg-row { display:grid; gap:10px; }
#cg-configurator .cg-row-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 560px) {
  #cg-configurator .cg-row-3 { grid-template-columns: 1fr 1fr; }
  #cg-configurator .cg-row-3 > :last-child { grid-column: 1 / -1; }
}

/* Qty + Add to cart sit in one row, CTA stretches */
#cg-configurator .cg-qty-row {
  display:grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap:10px;
  align-items:stretch;
}
#cg-configurator .cg-atc {
  width:100%;
  height:44px;
  padding:0 18px;
  border:1px solid var(--vc-ink);
  border-radius:var(--vc-radius-sm);
  background:var(--vc-ink);
  color:var(--vc-paper);
  font-family:var(--vc-mono);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
  transition:background 140ms ease, color 140ms ease;
}
#cg-configurator .cg-atc:hover { background:var(--vc-accent); border-color:var(--vc-accent); }
@media (max-width: 480px) {
  #cg-configurator .cg-qty-row { grid-template-columns: 1fr; }
}

/* Hide Woo's native cart form — proxied from the configurator CTA. */
body.vc-woo form.cart,
.vcp-page form.cart {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}
#cg-configurator .cg-opts { display:flex; flex-wrap:wrap; gap:6px; }
#cg-configurator .cg-opt { display:inline-flex; align-items:center; gap:6px; padding:0 14px; height:44px; border:1px solid var(--vc-line-soft); border-radius:var(--vc-radius-sm); cursor:pointer; background:#fff; font-size:14px; transition:border-color 120ms ease, box-shadow 120ms ease; }
#cg-configurator .cg-opt:hover { border-color:var(--vc-ink); }
#cg-configurator .cg-opt:has(input:checked) { border-color:var(--vc-ink); box-shadow:inset 0 0 0 1px var(--vc-ink); background:#fff; color:var(--vc-ink); }
#cg-configurator .cg-opt input { accent-color:var(--vc-ink); width:14px; height:14px; flex-shrink:0; }

/* Price block — top of form, inc + ex VAT in a row */
#cg-configurator .cg-price-top {
  padding: 16px 18px;
  border: 1px solid var(--vc-line);
  border-radius: var(--vc-radius-sm);
  background: var(--vc-paper);
  display: grid; gap: 6px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
#cg-configurator .cg-price-row-main { display:flex; flex-wrap:wrap; gap:18px; align-items:baseline; }
#cg-configurator .cg-price-main { font-family: var(--vc-mono); font-size: 30px; font-weight: 700; letter-spacing:-0.01em; color:var(--vc-ink); }
#cg-configurator .cg-price-main small { font-size:13px; color:var(--vc-muted); font-weight:400; letter-spacing:.02em; }
#cg-configurator .cg-price-vat { font-family: var(--vc-mono); font-size: 15px; color: var(--vc-muted); }
#cg-configurator .cg-price-vat small { font-size:11px; text-transform:uppercase; letter-spacing:.08em; margin-left:4px; }
#cg-configurator .cg-price-row-sub { display:flex; flex-wrap:wrap; gap:18px; font-family: var(--vc-mono); font-size:12px; color:var(--vc-muted); padding-top:6px; border-top:1px solid var(--vc-line-soft); }
#cg-configurator .cg-price-row-sub strong { color: var(--vc-ink); font-weight:600; }
#cg-configurator .cg-price-note { font-size:12px; color:#b15b00; }

/* Quote-only: shown instead of configurator when a product has no set price */
.cg-quote-only {
  margin-top: 8px;
  padding: 20px 22px;
  border: 1px solid var(--vc-line);
  border-radius: var(--vc-radius-sm);
  background: var(--vc-paper);
  display: grid; gap: 14px; justify-items: start;
}
.cg-quote-only .cg-quote-msg {
  margin: 0; font-size: 16px; color: var(--vc-ink); font-weight: 500;
}
.cg-quote-only .cg-quote-cta {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid var(--vc-ink);
  border-radius: var(--vc-radius-sm);
  background: var(--vc-ink);
  color: var(--vc-paper);
  font-family: var(--vc-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 140ms ease, border-color 140ms ease;
}
.cg-quote-only .cg-quote-cta:hover { background: var(--vc-accent); border-color: var(--vc-accent); }

.vc-card-quote {
  font-family: var(--vc-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--vc-ink);
  letter-spacing: .02em;
}

/* =================================================================
   HEADER + FOOTER — boxy, monospaced, print-shop energy
   ================================================================= */

/* Base page wrap — lives here so header/footer work when home.css isn't enqueued. */
.vc-wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.vc-skip {
  position: absolute; left: 8px; top: -60px; z-index: 100;
  background: var(--vc-ink); color: #fff; padding: 10px 14px;
  font-family: var(--vc-mono); font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase;
}
.vc-skip:focus { top: 8px; outline: none; }

/* Announcement ticker */
.vc-announce {
  background: var(--vc-ink); color: #fff;
  overflow: hidden; border-bottom: 1px solid var(--vc-ink);
  font-family: var(--vc-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase;
}
.vc-announce-track {
  display: inline-flex; gap: 42px; align-items: center;
  padding: 9px 0; white-space: nowrap;
  animation: vc-marquee 38s linear infinite;
  will-change: transform;
}
.vc-announce-track span { opacity: .78; }
.vc-announce-track span b { color: var(--vc-accent); font-weight: 600; opacity: 1; margin-right: 2px; }
@keyframes vc-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .vc-announce-track { animation: none; } }

/* ── Top contact bar ─────────────────────────── */
.vc-topbar {
  background: var(--vc-paper);
  border-bottom: 1px solid var(--vc-line-soft);
}
.vc-topbar-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 7px 20px;
  font-size: 12px; color: var(--vc-muted);
}
.vc-topbar-item {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--vc-muted); text-decoration: none;
  transition: color 140ms;
}
.vc-topbar-item:hover { color: var(--vc-ink); }
.vc-topbar-info { margin-left: auto; }
@media (max-width: 767px) { .vc-topbar { display: none; } }

/* ── Header shell (sticky, 2 rows) ───────────── */
.vc-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--vc-paper);
  border-bottom: 1px solid var(--vc-line);
  transition: box-shadow 180ms ease;
}
.vc-header.is-stuck { box-shadow: 0 2px 8px rgba(0,0,0,.07); }

/* Row 1: logo + search + tools */
.vc-header-main {
  border-bottom: 1px solid var(--vc-line-soft);
}
.vc-header-main-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
  padding: 12px 20px;
}
@media (max-width: 767px) {
  .vc-header-main-inner { grid-template-columns: 1fr auto; gap: 10px; padding: 10px 12px; }
  .vc-header-main-inner .vc-inline-search { display: none; grid-column: 1 / -1; grid-row: 2; }
  .vc-header-main-inner.is-search-open .vc-inline-search { display: block; }
}

/* Brand lockup */
.vc-brand {
  display: inline-flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.vc-brand-logo {
  display: block; width: 220px; height: auto; max-width: 100%;
  object-fit: contain;
  transition: opacity 160ms ease;
}
.vc-brand:hover .vc-brand-logo { opacity: .85; }

/* Inline search bar */
.vc-inline-search { width: 100%; }
.vc-inline-search-inner {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--vc-line-soft);
  border-radius: 6px;
  padding: 10px 14px;
  background: var(--vc-bg);
  transition: border-color 160ms, background 160ms;
}
.vc-inline-search-inner:focus-within {
  border-color: var(--vc-ink); background: var(--vc-paper);
  box-shadow: 0 0 0 3px rgba(10,10,10,.06);
}
.vc-inline-search-inner svg { color: var(--vc-muted); flex: none; }
.vc-inline-search input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font-size: 15px; font-family: inherit; color: var(--vc-ink);
}
.vc-inline-search input::placeholder { color: var(--vc-muted); }

/* Header tools (account + cart + burger) */
.vc-header-tools { display: flex; align-items: center; gap: 4px; }
.vc-itool {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: transparent; color: var(--vc-ink);
  border: 1px solid transparent; border-radius: 6px;
  cursor: pointer; text-decoration: none;
  transition: background 160ms, border-color 160ms;
}
.vc-itool:hover { background: var(--vc-bg); border-color: var(--vc-line-soft); }
.vc-itool span { display: none; }

/* Mobile search toggle — shown only where the inline search is hidden */
.vc-search-toggle { display: none; background: transparent; cursor: pointer; }
@media (max-width: 767px) { .vc-search-toggle { display: inline-flex; } }

/* Cart icon */
.vc-cart {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: transparent; color: var(--vc-ink);
  border: 1px solid transparent; border-radius: 6px;
  text-decoration: none;
  transition: background 160ms, color 160ms, border-color 160ms;
}
.vc-cart:hover { background: var(--vc-ink); color: #fff; border-color: var(--vc-ink); }
.vc-cart-bubble {
  position: absolute; top: 4px; right: 4px;
  display: inline-grid; place-items: center;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--vc-accent); color: #fff;
  font-size: 10px; font-weight: 700;
  border-radius: 999px;
  pointer-events: none;
}
.vc-cart-total { display: none; }

/* Burger */
.vc-burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 0 10px;
  background: transparent; border: 1px solid var(--vc-line-soft); border-radius: 6px;
  cursor: pointer;
}
.vc-burger span { display: block; height: 2px; background: var(--vc-ink); transition: transform 200ms, opacity 200ms; }
@media (min-width: 1024px) { .vc-burger { display: none; } }

/* Cart icon (renamed from .vc-cart to .vc-cart-icon) */
.vc-cart-icon {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: transparent; color: var(--vc-ink);
  border: 1px solid transparent; border-radius: 6px;
  text-decoration: none;
  transition: background 160ms, color 160ms, border-color 160ms;
}
.vc-cart-icon:hover { background: var(--vc-ink); color: #fff; border-color: var(--vc-ink); }

/* Legacy search panel */
.vc-search { display: none; }
.vc-search[hidden] { display: none; }

/* =================================================================
   MEGA-MENU NAV BAR
   ================================================================= */
.vc-megamenu-bar {
  background: var(--vc-paper);
  border-top: 1px solid var(--vc-line-soft);
}
@media (max-width: 1023px) { .vc-megamenu-bar { display: none; } }

.vc-megamenu-bar-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: stretch; flex-wrap: nowrap;
  padding: 0 12px;
}

/* Each top-level category item — equal share of available width */
.vc-mega-item {
  position: static;
  flex: 1 1 0; min-width: 0;
}
.vc-mega-trigger {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 4px; height: 100%;
  padding: 10px 8px;
  font-size: 12.5px; font-weight: 500; color: var(--vc-ink);
  text-decoration: none;
  /* allow up to 2 lines so long names wrap rather than overflow */
  white-space: normal; word-break: break-word;
  line-height: 1.25; text-align: left;
  border-bottom: 2px solid transparent;
  transition: border-color 160ms, color 160ms;
}
.vc-mega-item:hover .vc-mega-trigger,
.vc-mega-item.is-open .vc-mega-trigger {
  border-bottom-color: var(--vc-accent);
  color: var(--vc-accent);
}
.vc-mega-caret {
  flex-shrink: 0; /* never wraps onto its own line */
  transition: transform 220ms ease;
}
.vc-mega-item.is-open .vc-mega-caret { transform: rotate(180deg); }

/* Drop panel — full viewport width, attached below header */
.vc-mega-panel {
  position: fixed;
  left: 0; right: 0;
  background: var(--vc-paper);
  border-top: 2px solid var(--vc-accent);
  border-bottom: 1px solid var(--vc-line-soft);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  z-index: 39;
  animation: vc-mega-in 180ms ease;
}
@keyframes vc-mega-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.vc-mega-panel[hidden] { display: none; }

.vc-mega-panel-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 240px 1fr;
  gap: 0;
  padding: 0;
}

/* Left: featured image + heading */
.vc-mega-feature {
  display: flex; flex-direction: column;
  background: var(--vc-surface);
  border-right: 1px solid var(--vc-line-soft);
  padding: 28px 24px;
  gap: 14px;
}
.vc-mega-feature-img-wrap {
  display: block; border-radius: 8px; overflow: hidden;
  aspect-ratio: 4/3;
}
.vc-mega-feature-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 300ms ease;
}
.vc-mega-feature-img-wrap:hover .vc-mega-feature-img { transform: scale(1.04); }
.vc-mega-feature-body { display: flex; flex-direction: column; gap: 8px; }
.vc-mega-feature-desc {
  font-size: 12px; line-height: 1.5; color: var(--vc-muted); margin: 0;
}
.vc-mega-view-all {
  display: inline-block; margin-top: 4px;
  font-size: 12px; font-weight: 600; color: var(--vc-accent);
  text-decoration: none; letter-spacing: .02em;
}
.vc-mega-view-all:hover { text-decoration: underline; }

/* Right: subcategory grid */
.vc-mega-subs {
  list-style: none; margin: 0; padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 4px 20px;
  align-content: start;
}
.vc-mega-sub {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 8px;
  border-radius: 6px;
  transition: background 140ms;
}
.vc-mega-sub:hover { background: var(--vc-bg); }
.vc-mega-sub-img-wrap {
  flex-shrink: 0; width: 44px; height: 44px;
  border-radius: 6px; overflow: hidden;
  background: var(--vc-surface);
}
.vc-mega-sub-img {
  width: 100%; height: 100%; object-fit: cover;
}
.vc-mega-sub-body { display: flex; flex-direction: column; gap: 3px; }
.vc-mega-sub-title {
  font-size: 13px; font-weight: 600; color: var(--vc-ink);
  text-decoration: none; line-height: 1.3;
}
.vc-mega-sub-title:hover { color: var(--vc-accent); }
.vc-mega-sub-children {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 1px;
}
.vc-mega-sub-children a {
  font-size: 11.5px; color: var(--vc-muted);
  text-decoration: none; line-height: 1.5;
}
.vc-mega-sub-children a:hover { color: var(--vc-ink); text-decoration: underline; }

/* =================================================================
   MOBILE DRAWER  — accordion style
   ================================================================= */
.vc-drawer {
  position: fixed; inset: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr auto;
}
.vc-drawer[hidden] { display: none; }
.vc-drawer-scrim {
  grid-column: 1;
  background: rgba(10,10,10,.45); border: 0; cursor: pointer;
  animation: vc-fade 200ms ease;
}
@keyframes vc-fade { from { opacity: 0; } to { opacity: 1; } }
.vc-drawer-panel {
  grid-column: 2;
  width: min(88vw, 360px); height: 100%;
  background: var(--vc-paper);
  border-left: 1px solid var(--vc-line);
  display: flex; flex-direction: column;
  overflow: hidden;
  animation: vc-drawer-in 260ms cubic-bezier(.2,.8,.2,1);
}
@keyframes vc-drawer-in { from { transform: translateX(100%); } to { transform: none; } }
.vc-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid var(--vc-line);
  flex-shrink: 0;
}
.vc-drawer-logo { height: 36px; width: auto; object-fit: contain; }
.vc-drawer-close {
  background: transparent; border: 1px solid var(--vc-line);
  width: 34px; height: 34px; font-size: 14px; cursor: pointer;
  border-radius: 4px;
}
.vc-drawer-list {
  flex: 1; overflow-y: auto; padding-bottom: 8px;
}

/* Accordion category rows */
.vc-drawer-cat { border-bottom: 1px solid var(--vc-line-soft); }
.vc-drawer-cat-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px 0 20px;
}
.vc-drawer-cat-head > a {
  flex: 1; padding: 15px 0;
  font-size: 15px; font-weight: 600; color: var(--vc-ink);
  text-decoration: none;
}
.vc-drawer-expand {
  background: transparent; border: 0; cursor: pointer;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--vc-muted); transition: transform 220ms ease, color 140ms;
}
.vc-drawer-cat.is-open .vc-drawer-expand {
  transform: rotate(180deg); color: var(--vc-ink);
}
.vc-drawer-subs {
  list-style: none; margin: 0; padding: 0 0 8px 20px;
  background: var(--vc-bg);
}
.vc-drawer-subs[hidden] { display: none; }
.vc-drawer-subs li a {
  display: block; padding: 9px 16px 9px 0;
  font-size: 13.5px; color: var(--vc-muted); text-decoration: none;
  border-bottom: 1px solid var(--vc-line-soft);
  transition: color 140ms, padding-left 140ms;
}
.vc-drawer-subs li a:hover { color: var(--vc-ink); padding-left: 6px; }
.vc-drawer-sub-all a { color: var(--vc-accent) !important; font-weight: 600; }
.vc-drawer-foot { padding: 16px 20px; border-top: 1px solid var(--vc-line); display: grid; gap: 8px; flex-shrink: 0; }
.vc-drawer-foot .vc-btn { text-align: center; }

body.vc-scroll-lock { overflow: hidden; }

/* =================================================================
   USP BAR (below header)
   ================================================================= */
.vc-usps {
  background: var(--vc-bg);
  border-bottom: 1px solid var(--vc-line);
}
.vc-usps-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.vc-usp {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  border-right: 1px solid var(--vc-line);
}
.vc-usp:last-child { border-right: 0; }
.vc-usp-icon {
  flex-shrink: 0; width: 36px; height: 36px; object-fit: contain;
  color: var(--vc-muted);
}
.vc-usp-icon--wide { width: 72px; height: 22px; }
.vc-usp-text {
  font-size: 12px; line-height: 1.4; color: var(--vc-ink);
  font-weight: 500;
}
/* Mobile: hide USP bar entirely */
@media (max-width: 767px) {
  .vc-usps { display: none; }
}

/* =================================================================
   PRE-FOOTER NEWSLETTER + FOOTER
   ================================================================= */
.vc-pre-footer {
  margin-top: 80px;
  background: var(--vc-bg);
  border-top: 1px solid var(--vc-line);
  border-bottom: 1px solid var(--vc-line);
  padding: 64px 0;
  position: relative; overflow: hidden;
}
.vc-pre-footer::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(10,10,10,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.vc-pre-footer-inner {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  position: relative;
}
@media (min-width: 900px) {
  .vc-pre-footer-inner { grid-template-columns: 1.1fr 1fr; align-items: center; gap: 60px; }
}
.vc-pre-footer-title {
  font-size: clamp(30px, 4vw, 46px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.05; margin: 12px 0 10px;
}
.vc-pre-footer-title em { color: var(--vc-accent); font-style: normal; }
.vc-pre-footer-sub { color: var(--vc-muted); font-size: 15px; max-width: 46ch; }
.vc-pre-footer-form { display: flex; flex-direction: column; gap: 10px; }
.vc-pre-footer-input {
  display: flex; border: 1px solid var(--vc-line); background: var(--vc-paper);
}
.vc-pre-footer-input input {
  flex: 1; border: 0; outline: 0; background: transparent;
  padding: 16px 18px; font-size: 16px;
}
.vc-pre-footer-input .vc-btn {
  border: 0; border-left: 1px solid var(--vc-line);
  border-radius: var(--vc-radius-sm); padding: 0 22px;
}
.vc-pre-footer-fine {
  font-family: var(--vc-mono); font-size: 11px; color: var(--vc-muted);
  letter-spacing: .08em; text-transform: uppercase;
}

/* Footer */
.vc-footer {
  background: var(--vc-ink); color: #e6e6e0;
  padding: 72px 0 0;
}
.vc-footer a { color: #e6e6e0; text-decoration: none; transition: color 160ms; }
.vc-footer a:hover { color: var(--vc-accent); }
.vc-footer .vc-kicker { color: #8a8a80; }

.vc-footer-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.vc-footer-brand { grid-column: 1 / -1; }
@media (min-width: 960px)  {
  .vc-footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
  .vc-footer-brand { grid-column: auto; }
}

.vc-footer-logo-link { display: inline-block; }
.vc-footer-logo { display: block; width: 260px; height: auto; border-radius: 20px; }
@media (min-width: 960px) { .vc-footer-logo { width: 390px; } }
.vc-footer-tagline { margin-top: 12px; color: #c8c8c0; font-size: 13px; line-height: 1.5; }
.vc-footer-pay { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.vc-footer-contact-label { color: #a8a8a0; font-size: 13px; margin: 0 0 6px; }
.vc-footer-phone {
  display: block; font-size: 22px; font-weight: 700; color: #fff; letter-spacing: .02em;
  margin-bottom: 12px; transition: color 160ms;
}
.vc-footer-phone:hover { color: var(--vc-accent); }
.vc-footer-contact-link { display: inline-block; font-size: 13px; color: var(--vc-accent); }
.vc-footer-contact-link:hover { text-decoration: underline; }

.vc-footer-col h3 { margin: 0 0 14px; }
.vc-footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.vc-footer-col a { font-size: 14px; }

.vc-footer-social { display: flex; flex-direction: row; gap: 12px; margin-top: 4px; }
.vc-footer-social a {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.18);
  color: #c8c8c0;
  transition: background 160ms, border-color 160ms, color 160ms;
}
.vc-footer-social a:hover { background: var(--vc-accent); border-color: var(--vc-accent); color: #fff; }

.vc-footer-bar {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  padding: 22px 0 28px;
  font-family: var(--vc-mono); font-size: 11px;
  color: #9a9a90; letter-spacing: .08em; text-transform: uppercase;
}
.vc-footer-bar-l { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.vc-footer-bar .vc-dot { opacity: .4; }
.vc-pay {
  padding: 4px 9px;
  border: 1px solid rgba(255,255,255,.18);
  font-family: var(--vc-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: #d8d8d0;
}

/* ============ Shop — compact header + sidebar filter ============ */

.vc-shop-head {
  border-bottom: 1px solid var(--vc-line);
  background: var(--vc-bg);
  padding: 28px 0 24px;
}
.vc-shop-head .vc-wrap,
.vc-shop-head-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 16px;
}
.vc-shop-head-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.vc-shop-head-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0;
}
.vc-shop-head-meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vc-muted);
  display: flex; gap: 10px; align-items: center;
}
.vc-shop-head-meta .sep { opacity: 0.4; }

/* Layout: sidebar + content */
.vc-shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
@media (min-width: 900px) {
  .vc-shop-layout { grid-template-columns: 240px minmax(0, 1fr); gap: 32px; }
}

/* Sidebar */
.vc-shop-sidebar {
  border: 1px solid var(--vc-line);
  background: var(--vc-paper);
  border-radius: var(--vc-radius-sm);
  position: sticky;
  top: 16px;
}
.vc-filter-toggle {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  padding: 14px 16px;
  background: var(--vc-ink); color: var(--vc-paper);
  border: 0; cursor: pointer;
  font-family: var(--vc-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
}
@media (min-width: 900px) { .vc-filter-toggle { display: none; } }

.vc-filter-body { display: none; }
.vc-filter-body.is-open { display: block; }
@media (min-width: 900px) { .vc-filter-body { display: block; } }

.vc-filter-group {
  padding: 16px;
  border-bottom: 1px solid var(--vc-line-soft);
}
.vc-filter-group:last-child { border-bottom: 0; }
.vc-filter-h {
  display: block;
  font-family: var(--vc-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vc-muted);
  margin-bottom: 10px;
}

.vc-filter-search { display: flex; gap: 0; border: 1px solid var(--vc-line); border-radius: var(--vc-radius-sm); overflow: hidden; }
.vc-filter-search input {
  flex: 1; min-width: 0;
  border: 0; background: transparent;
  padding: 8px 10px; font-size: 13px;
  outline: none;
}
.vc-filter-search button {
  border: 0; border-left: 1px solid var(--vc-line);
  background: var(--vc-bg);
  padding: 0 12px; cursor: pointer;
  font-family: var(--vc-mono); font-size: 14px;
}
.vc-filter-search button:hover { background: var(--vc-ink); color: var(--vc-paper); }

.vc-filter-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.vc-filter-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 10px;
  margin: 0 -10px;
  font-size: 13px; color: var(--vc-ink);
  text-decoration: none;
  border-radius: var(--vc-radius-sm);
}
.vc-filter-link:hover { background: var(--vc-bg); }
.vc-filter-link.is-active { background: var(--vc-ink); color: var(--vc-paper); }
.vc-filter-n {
  font-family: var(--vc-mono); font-size: 10px;
  opacity: 0.55; letter-spacing: 0.06em;
}
.vc-filter-link.is-active .vc-filter-n { opacity: 0.8; }

.vc-filter-price { display: flex; align-items: center; gap: 8px; }
.vc-filter-price input {
  width: 100%; min-width: 0;
  border: 1px solid var(--vc-line);
  background: transparent;
  padding: 7px 8px;
  font-family: var(--vc-mono); font-size: 12px;
  border-radius: var(--vc-radius-sm);
}
.vc-filter-price span { color: var(--vc-muted); }
.vc-filter-apply {
  margin-top: 10px;
  width: 100%;
  border: 1px solid var(--vc-line);
  background: var(--vc-ink); color: var(--vc-paper);
  padding: 9px 12px;
  font-family: var(--vc-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; border-radius: var(--vc-radius-sm);
}
.vc-filter-apply:hover { background: var(--vc-accent); border-color: var(--vc-accent); }

.vc-filter-clear {
  display: inline-block;
  font-family: var(--vc-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--vc-accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.vc-toolbar-count { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--vc-muted); }


/* ── Mobile: shop archive ─────────────────────────────────── */
@media (max-width: 767px) {
  /* Shop head: compact single-row layout */
  .vc-shop-head { padding: 12px 0 10px; border-bottom: 1px solid var(--vc-line-soft); }
  .vc-shop-head-inner {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
  }
  .vc-shop-head-title {
    font-size: clamp(18px, 5.5vw, 28px);
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .vc-shop-head-meta {
    font-size: 10px;
    flex-shrink: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
  }
  .vc-shop-head-meta .sep { display: none; }

  /* Category visual cards: 3 columns on small mobile */
  .vc-cat-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .vc-cat-visual-bar { padding: 12px 0; }

  /* Sidebar: full-width above grid on mobile — no sticky */
  .vc-shop-sidebar { position: static; }

  /* Toolbar: compact */
  .vc-toolbar { padding: 10px 0; gap: 10px; }

  /* Shop grid: tighter gap on mobile */
  .vc-shop-grid { gap: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Shop wrap: tighter gutters */
  .vc-shop-main { padding: 16px 12px 8px; }

  /* Shop outro: compact */
  .vc-shop-outro { padding: 36px 0 48px; margin-top: 24px; }
  .vc-shop-cta { padding: 20px; gap: 14px; }

  /* Product cards on mobile: slightly compact footer */
  .vc-card-foot { padding: 10px 12px 12px; }
  .vc-card-body { padding: 10px 12px 6px; }
  .vc-card-title { font-size: 13px; }
}

@media (max-width: 399px) {
  .vc-cat-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .vc-cat-card-name { font-size: 9px; letter-spacing: 0.04em; }
  .vc-cat-card-body { padding: 5px 7px 6px; }
}

/* ── Mobile: breadcrumb — show only category links ─────────── */
@media (max-width: 767px) {
  /* Hide Home link + its separator */
  .vcp-crumbs > a:first-child,
  .vcp-crumbs > .vcp-crumb-sep:nth-child(2) { display: none; }
  /* Hide Shop link + its separator */
  .vcp-crumbs > a:nth-child(3),
  .vcp-crumbs > .vcp-crumb-sep:nth-child(4) { display: none; }
  /* Hide product name (last span) + separator before it */
  .vcp-crumbs > span:last-child,
  .vcp-crumbs > .vcp-crumb-sep:nth-last-child(2) { display: none; }
  .vcp-crumbs { margin-bottom: 14px; font-size: 12px; }
}

/* ── Mobile: compact price block ───────────────────────────── */
@media (max-width: 640px) {
  #cg-configurator .cg-price-top {
    padding: 10px 12px;
    gap: 4px;
  }
  #cg-configurator .cg-price-row-main {
    gap: 10px;
    flex-wrap: nowrap;
    align-items: center;
  }
  #cg-configurator .cg-price-main {
    font-size: 22px;
  }
  #cg-configurator .cg-price-main small {
    font-size: 11px;
  }
  #cg-configurator .cg-price-vat {
    font-size: 13px;
  }
  #cg-configurator .cg-price-vat small {
    font-size: 10px;
  }
  #cg-configurator .cg-price-row-sub {
    gap: 10px;
    font-size: 11px;
    padding-top: 4px;
  }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE PRODUCT PAGE — full optimisation pass (≤ 767 px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* 1. Shorter hero image — 4:3 instead of 1:1 so configurator
        is visible above the fold on 390px+ phones.            */
  .vcp-gallery-main {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }

  /* 2. Tighter hero spacing */
  .vcp-hero {
    gap: 20px;
    margin-bottom: 36px;
  }

  /* 3. Compact product body stack */
  .vcp-body { gap: 12px; }

  /* 4. Title: allow it to scale down on small phones */
  .vcp-title { font-size: clamp(22px, 7vw, 32px); }

  /* 5. Short description: smaller text on mobile */
  .vcp-short-desc { font-size: 14px; }

  /* 6. Trust strip: tighter cells */
  .vcp-trust-item {
    padding: 8px 10px;
    font-size: 9px;
    gap: 6px;
  }
  .vcp-trust-item svg { width: 16px; height: 16px; }

  /* 7. Tabs: horizontal scroll instead of wrapping */
  .vcp-tabs-wrap ul.tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .vcp-tabs-wrap ul.tabs::-webkit-scrollbar { display: none; }
  .vcp-tabs-wrap ul.tabs li a {
    white-space: nowrap;
    padding: 10px 14px;
    font-size: 10px;
  }
  .vcp-tabs-wrap .panel { padding: 24px 0; }

  /* 8. Related products: 2-column on mobile */
  .vcp-related .vc-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .vcp-related { margin-bottom: 16px; }

  /* 9. Configurator: full-width qty row sooner */
  #cg-configurator .cg-qty-row { grid-template-columns: 1fr; }

  /* 10. Configurator labels: slightly smaller */
  #cg-configurator .cg-label { font-size: 10px; }

  /* 11. Multi-select Ctrl/⌘ hint is desktop-only — hide it */
  #cg-configurator .cg-hint { display: none; }

  /* 12. Option pills: slightly compact for long names */
  #cg-configurator .cg-opt {
    padding: 0 10px;
    font-size: 13px;
    height: 40px;
  }

  /* 13. Tabs section bottom spacing */
  .vcp-tabs-wrap { margin-bottom: 36px; }
}


/* ── Delivery tab ─────────────────────────────────────────── */
.vc-tab-shipping { max-width: 820px; }
.vc-tab-shipping h1,
.vc-tab-shipping h2,
.vc-tab-shipping h3 {
  font-family: var(--vc-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 24px 0 8px;
  color: var(--vc-ink);
}
.vc-tab-shipping h1:first-child { margin-top: 0; }
.vc-tab-shipping p { font-size: 14px; line-height: 1.65; color: var(--vc-ink); margin: 0 0 10px; }
.vc-tab-shipping .answer {
  display: block;
  font-size: 12px;
  color: var(--vc-muted);
  background: var(--vc-surface, #f7f7f5);
  border-left: 3px solid var(--vc-line);
  padding: 8px 12px;
  margin: 8px 0;
  border-radius: 0 var(--vc-radius-sm) var(--vc-radius-sm) 0;
}
.vc-tab-shipping table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 12px 0 20px; }
.vc-tab-shipping th {
  text-align: left;
  padding: 8px 12px;
  font-family: var(--vc-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--vc-ink);
  color: var(--vc-paper);
}
.vc-tab-shipping td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--vc-line);
  vertical-align: top;
  line-height: 1.5;
}
.vc-tab-shipping tr:last-child td { border-bottom: none; }
.vc-tab-shipping tbody tr:nth-child(odd) td { background: var(--vc-surface, #f7f7f5); }

/* ── Downloads tab ────────────────────────────────────────── */
.vc-tab-documents { max-width: 680px; }
.vc-docs-group-title {
  font-family: var(--vc-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vc-muted);
  margin: 24px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--vc-line);
}
.vc-docs-group-title:first-child { margin-top: 0; }
.vc-docs-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.vc-docs-item {}
.vc-docs-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--vc-line);
  border-radius: var(--vc-radius-sm);
  text-decoration: none;
  color: var(--vc-ink);
  font-size: 13px;
  transition: background 0.15s, border-color 0.15s;
}
.vc-docs-link:hover {
  background: var(--vc-surface, #f7f7f5);
  border-color: var(--vc-accent);
}
.vc-docs-icon { color: var(--vc-accent); flex-shrink: 0; }
.vc-docs-name { flex: 1; font-family: var(--vc-mono); font-size: 12px; letter-spacing: 0.04em; }
.vc-docs-ext {
  font-family: var(--vc-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vc-muted);
  padding: 2px 6px;
  border: 1px solid var(--vc-line);
  border-radius: 3px;
}
.vc-docs-download-icon { color: var(--vc-muted); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   CATEGORY VISUAL CARDS BAR
   ═══════════════════════════════════════════════════════════════ */
.vc-cat-visual-bar {
  background: var(--vc-bg);
  border-bottom: 1px solid var(--vc-line-soft);
  padding: 16px 0;
}
.vc-cat-visual-bar .vc-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 16px;
}

/* Scrollable row on all widths — wraps on mobile */
.vc-cat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
}
@media (min-width: 480px)  { .vc-cat-cards { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); } }
@media (min-width: 900px)  { .vc-cat-cards { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 12px; } }

.vc-cat-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--vc-ink);
  border-radius: var(--vc-radius-sm);
  overflow: hidden;
  border: 1px solid var(--vc-line-soft);
  transition: border-color 160ms, box-shadow 160ms, transform 160ms;
}
.vc-cat-card:hover {
  border-color: var(--vc-ink);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transform: translateY(-1px);
}
.vc-cat-card.is-active {
  border-color: var(--vc-ink);
  box-shadow: 0 0 0 2px var(--vc-ink);
}

.vc-cat-card-fig {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #141414;
}
.vc-cat-card-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vc-cat-card-fig svg {
  width: 44%;
  height: 44%;
  flex-shrink: 0;
}
.vc-cat-card.is-active .vc-cat-card-fig::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255,255,255,.35);
  pointer-events: none;
  border-radius: calc(var(--vc-radius-sm) - 1px);
}

.vc-cat-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 7px 9px 8px;
  background: var(--vc-paper);
  min-height: 36px;
}
.vc-cat-card.is-active .vc-cat-card-body {
  background: var(--vc-ink);
  color: var(--vc-paper);
}
.vc-cat-card-name {
  font-family: var(--vc-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.vc-cat-card-n {
  font-family: var(--vc-mono);
  font-size: 10px;
  opacity: 0.5;
  flex-shrink: 0;
}
.vc-cat-card.is-active .vc-cat-card-n { opacity: 0.75; }

/* On desktop, sidebar already has cat list — keep the visual bar for discovery */
@media (max-width: 899px) { .vc-filter-cats-sidebar { display: none !important; } }

/* ═══════════════════════════════════════════════════════════════
   FILTER TOGGLE — chevron icon, animated open/close
   ═══════════════════════════════════════════════════════════════ */
.vc-filter-toggle-label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vc-filter-chevron {
  transition: transform 220ms ease;
  flex-shrink: 0;
}
.vc-filter-toggle.is-open .vc-filter-chevron { transform: rotate(180deg); }

/* ═══════════════════════════════════════════════════════════════
   MOBILE SHOP — extra density improvements
   ═══════════════════════════════════════════════════════════════ */

/* 2-column product grid on phones ≥ 440 px (between 1-col and 640px 2-col) */
@media (min-width: 440px) and (max-width: 639px) {
  .vc-shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}

/* Tighter shop main top padding now that cat chips bar sits above */
@media (max-width: 899px) {
  .vc-shop-main { padding-top: 14px; }
  .vc-shop-head { padding: 16px 0 14px; }
  .vc-shop-head-inner { gap: 10px; }
}

/* Touch-friendly filter links in sidebar */
@media (max-width: 899px) {
  .vc-filter-link { padding: 10px 10px; }
  .vc-filter-apply { padding: 12px; }
}
