/*
Theme Name: Vibequelle Child
Theme URI: https://vibequelle.de
Description: Generic German-market price-comparison child theme for the Astra parent. Provides a Produkt CPT, category archive layouts, structured data, sitemap, GMC feed, and a JSON-driven import flow. Originally built for vibequelle.de; designed to be cloned for additional affiliate sites. To clone for a new site: copy this folder, rename, edit vbq-site-config.php (categories + hero copy + brand color), then upload via Design → Themes.
Author: Vibequelle
Author URI: https://vibequelle.de
Template: astra
Version: 2.0.0
Text Domain: vibequelle-child
*/

/* =========================================================
   Vibequelle Child Theme — design system
   This stylesheet mirrors the root preview/styles.css so the
   HTML mockups and the WordPress theme look identical.
   ========================================================= */

:root {
  --brand: #0ea5a4;
  --brand-dark: #0b8584;
  --brand-soft: #e6fafa;
  --ink: #1f2937;
  --ink-soft: #4b5563;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --accent: #f59e0b;
  --best: #10b981;
  --best-soft: #ecfdf5;
  --danger: #ef4444;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-hover: 0 4px 8px rgba(15, 23, 42, 0.08), 0 12px 24px rgba(15, 23, 42, 0.08);
  --max: 1180px;
  --gap: 24px;
}

/* Reset Astra's default container padding where ours differs */
body.vbq * { box-sizing: border-box; }

body.vbq {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.vbq a { color: var(--brand); text-decoration: none; }
.vbq a:hover { text-decoration: underline; }

.vbq img { max-width: 100%; height: auto; display: block; }

.vbq .container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */
.vbq .site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.vbq .site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 20px 14px;
  max-width: var(--max);
  margin: 0 auto;
}
.vbq .brand {
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.vbq .brand:hover { text-decoration: none; }
.vbq .brand .dot { color: var(--brand); }
.vbq .main-nav { display: flex; gap: 18px; flex: 1; }
.vbq .main-nav a { color: var(--ink-soft); font-size: 14px; font-weight: 500; }
.vbq .main-nav a:hover { color: var(--brand); text-decoration: none; }
.vbq .search { flex: 1; max-width: 420px; position: relative; }
.vbq .search input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  background: var(--bg-alt);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.vbq .search input:focus { border-color: var(--brand); background: var(--bg); }
.vbq .search::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='8'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>");
}

/* ---------- Hero ---------- */
.vbq .hero {
  background: linear-gradient(135deg, var(--brand-soft) 0%, #f0fdfa 100%);
  padding: 64px 20px;
  text-align: center;
}
.vbq .hero h1 {
  font-size: 42px;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.vbq .hero p {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 auto 28px;
  max-width: 560px;
}
.vbq .hero .search { margin: 0 auto; max-width: 560px; }
.vbq .hero .search input {
  padding: 16px 20px 16px 48px;
  font-size: 16px;
  background: var(--bg);
  box-shadow: var(--shadow);
}
.vbq .hero .search::before { left: 18px; width: 18px; height: 18px; }

/* ---------- Sections / category tiles / product cards ---------- */
.vbq .section { padding: 56px 0; }
.vbq .section--alt { background: var(--bg-alt); }
.vbq .section__head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 28px;
}
.vbq .section__head h2 { font-size: 28px; margin: 0; letter-spacing: -0.01em; }
.vbq .section__head a { font-size: 14px; font-weight: 500; }

.vbq .cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
}
.vbq .cat-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.vbq .cat-tile:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  text-decoration: none;
}
.vbq .cat-tile__icon { font-size: 36px; margin-bottom: 12px; }
.vbq .cat-tile__name { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.vbq .cat-tile__count { font-size: 12px; color: var(--muted); }

.vbq .prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
/* ====== Modern product card (image-led, white bg, hover blob + CTA pill) ====== */
.vbq .prod-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 380px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s,
              border-color 0.25s;
}
.vbq .prod-card a { color: inherit; text-decoration: none; display: flex; flex-direction: column; flex: 1; }
.vbq .prod-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
}

/* Image area — slightly taller than wide for that image-led feel; pure white bg. */
.vbq .prod-card__img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  overflow: hidden;
}
.vbq .prod-card__img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 22px;
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Hover: blob fades in behind product + image tilts and lifts. */
.vbq .prod-card:hover .prod-card__img img {
  transform: rotate(-3deg) scale(1.05);
}
.vbq .prod-card__img::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 78%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--card-blob, #fbbf24) 0%, transparent 70%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.55);
  transition: opacity 0.3s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}
.vbq .prod-card:hover .prod-card__img::before {
  opacity: 0.55;
  transform: translate(-50%, -50%) scale(1);
}

/* Per-category hover-blob color (matches the inspiration-card palette). */
.vbq .prod-card[data-cat="beauty-parfum"]        { --card-blob: #f9a8d4; }
.vbq .prod-card[data-cat="haushalt-kueche"]      { --card-blob: #fbbf24; }
.vbq .prod-card[data-cat="smartwatches-uhren"]   { --card-blob: #a78bfa; }
.vbq .prod-card[data-cat="heimwerken-werkzeuge"] { --card-blob: #fb923c; }
.vbq .prod-card[data-cat="elektronik-audio"]     { --card-blob: #818cf8; }
.vbq .prod-card[data-cat="sport-schuhe"]         { --card-blob: #34d399; }

/* Shops count badge — overlay top-right of image. */
.vbq .prod-card__shops-badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  pointer-events: none;
}

/* Name clamp + min-height to keep grid rows aligned. */
.vbq .prod-card__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
  line-height: 1.35;
}

/* Color swatches under title — compact preview of available variants. */
.vbq .prod-card__swatches {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 4px 0 10px;
  min-height: 18px;
}
.vbq .prod-card__swatch {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.15);
}
.vbq .prod-card__swatches-more {
  font-size: 11px; color: var(--ink-soft); font-weight: 600;
}

/* Footer row: divider + price. */
.vbq .prod-card__meta {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.vbq .prod-card__price {
  transition: color 0.2s;
}
.vbq .prod-card:hover .prod-card__price {
  color: var(--brand-dark);
}

/* CTA pill removed — was visually heavy on hover. Hover still gives blob + tilt + price color shift. */
.vbq .prod-card__cta-pill { display: none; }

/* Variant badge — shown on cards whose product groups multiple color/size siblings */
.vbq .vbq-variant-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  pointer-events: none;
  z-index: 2;
}

/* Sibling chooser — pills on single product page for non-color variants (size, volume) */
.vbq .vbq-sibling-chooser {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 14px 0 6px;
}
.vbq .vbq-sibling-chooser__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft, #475569);
  margin-right: 4px;
}
.vbq .vbq-sibling-chooser__pill {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--line, #e2e8f0);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink, #0f172a);
  background: #fff;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}
.vbq .vbq-sibling-chooser__pill:hover {
  border-color: var(--brand, #14b8a6);
  background: var(--bg-alt, #f8fafc);
}
.vbq .prod-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.vbq .prod-card__cat {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); margin-bottom: 6px;
}
.vbq .prod-card__name { font-weight: 600; font-size: 15px; margin: 0 0 10px; line-height: 1.35; }
.vbq .prod-card__meta {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--line);
}
.vbq .prod-card__price-label { font-size: 11px; color: var(--muted); }
.vbq .prod-card__price { font-weight: 700; font-size: 18px; color: var(--ink); }
.vbq .prod-card__shops { font-size: 12px; color: var(--muted); }

/* ---------- Trust strip ---------- */
.vbq .trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.vbq .trust__item { display: flex; gap: 12px; align-items: flex-start; }
.vbq .trust__icon {
  flex-shrink: 0; width: 40px; height: 40px;
  border-radius: 8px; background: var(--brand-soft); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
}
.vbq .trust__title { font-weight: 600; margin: 0 0 4px; font-size: 15px; }
.vbq .trust__body { color: var(--ink-soft); font-size: 14px; margin: 0; }

/* ---------- Footer ---------- */
.vbq .site-footer {
  background: var(--ink);
  color: #d1d5db;
  padding: 48px 0 24px;
  margin-top: 80px;
}
.vbq .site-footer a { color: #d1d5db; }
.vbq .site-footer a:hover { color: #fff; text-decoration: none; }
.vbq .footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.vbq .footer-cols h4 {
  color: #fff; font-size: 14px; margin: 0 0 12px;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.vbq .footer-cols ul { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.vbq .footer-cols li { margin-bottom: 8px; }
.vbq .footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  display: flex; justify-content: space-between;
  font-size: 13px; color: #9ca3af;
}

/* ---------- Breadcrumb / product detail ---------- */
.vbq .breadcrumb { font-size: 13px; color: var(--muted); padding: 16px 0; }
.vbq .breadcrumb a { color: var(--muted); }
.vbq .breadcrumb a:hover { color: var(--brand); }
.vbq .breadcrumb .sep { margin: 0 6px; }

.vbq .prod-head {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 32px;
  padding: 24px 0 40px;
  align-items: start;
}
.vbq .prod-head__img {
  aspect-ratio: 1 / 1;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 96px; overflow: hidden;
}
.vbq .prod-head__img img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.vbq .prod-head__title { font-size: 30px; margin: 0 0 8px; letter-spacing: -0.01em; }
.vbq .prod-head__sub { color: var(--ink-soft); margin: 0 0 16px; font-size: 15px; }

.vbq .rating { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.vbq .rating__stars { color: var(--accent); font-size: 16px; letter-spacing: 1px; }
.vbq .rating__text { font-size: 14px; color: var(--ink-soft); }

.vbq .prod-head__price-range {
  display: flex; align-items: baseline; gap: 8px; margin: 16px 0;
}
.vbq .prod-head__price-range .label { font-size: 13px; color: var(--muted); }
.vbq .prod-head__price-range .price { font-size: 32px; font-weight: 700; color: var(--brand); }
.vbq .prod-head__price-range .from { font-size: 13px; color: var(--muted); }

.vbq .last-updated {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted);
  background: var(--bg-alt);
  padding: 4px 10px; border-radius: 999px;
}
.vbq .last-updated::before { content: "•"; color: var(--best); font-size: 18px; line-height: 1; }

/* ---------- Comparison table ---------- */
.vbq .compare-block {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}
.vbq .compare-block__head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-alt);
}
.vbq .compare-block__head h3 { margin: 0; font-size: 17px; }
.vbq .compare-block__head .sort { font-size: 13px; color: var(--muted); }
.vbq .compare-table { width: 100%; border-collapse: collapse; }
.vbq .compare-table th,
.vbq .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.vbq .compare-table th {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); font-weight: 600; background: var(--bg-alt);
}
.vbq .compare-table tr:last-child td { border-bottom: 0; }
.vbq .compare-table tr.best { background: var(--best-soft); }

.vbq .shop-cell { display: flex; align-items: center; gap: 12px; }
.vbq .shop-logo {
  width: 56px; height: 32px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--ink-soft);
}
.vbq .shop-name { font-weight: 600; font-size: 14px; }
.vbq .shop-rating { font-size: 12px; color: var(--muted); }
.vbq .price-cell { font-weight: 700; font-size: 18px; }
.vbq .price-cell .ship {
  font-weight: 400; font-size: 12px; color: var(--muted);
  display: block; margin-top: 2px;
}
.vbq .stock-in { color: var(--best); font-size: 13px; font-weight: 500; }
.vbq .stock-out { color: var(--danger); font-size: 13px; }
.vbq .stock-low { color: var(--accent); font-size: 13px; }

.vbq .btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: var(--brand); color: #fff;
  font-weight: 600; font-size: 14px;
  border: 0; cursor: pointer; text-decoration: none;
  transition: background 0.15s;
}
.vbq .btn:hover { background: var(--brand-dark); text-decoration: none; color: #fff; }
.vbq .btn--ghost { background: transparent; color: var(--brand); border: 1px solid var(--brand); }
.vbq .btn--ghost:hover { background: var(--brand-soft); color: var(--brand-dark); }
.vbq .badge-best {
  display: inline-block;
  background: var(--best); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 999px;
  margin-left: 8px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.vbq .badge-rec {
  display: inline-block;
  background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 999px;
  margin-left: 8px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.vbq tr.recommended { background: var(--brand-soft); }
.vbq tr.recommended.best { background: linear-gradient(90deg, var(--brand-soft), var(--best-soft)); }

/* ---------- Detail blocks ---------- */
.vbq .detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.vbq .detail-block {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.vbq .detail-block h3 { margin: 0 0 16px; font-size: 18px; }
.vbq .features { list-style: none; padding: 0; margin: 0; }
.vbq .features li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px; color: var(--ink-soft);
}
.vbq .features li::before {
  content: "✓"; position: absolute; left: 0; top: 8px;
  color: var(--best); font-weight: 700;
}
.vbq .specs { width: 100%; border-collapse: collapse; font-size: 14px; }
.vbq .specs th, .vbq .specs td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--line); }
.vbq .specs th { font-weight: 600; color: var(--ink-soft); width: 40%; }
.vbq .specs tr:last-child th, .vbq .specs tr:last-child td { border-bottom: 0; }

.vbq .proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vbq .proscons h4 { margin: 0 0 12px; font-size: 15px; }
.vbq .proscons ul { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.vbq .proscons li { padding: 6px 0 6px 24px; position: relative; color: var(--ink-soft); }
.vbq .proscons .pros li::before { content: "+"; position: absolute; left: 0; color: var(--best); font-weight: 700; }
.vbq .proscons .cons li::before { content: "−"; position: absolute; left: 0; color: var(--danger); font-weight: 700; }

.vbq .review-text { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.vbq .review-text p { margin: 0 0 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .vbq .main-nav { display: none; }
  .vbq .hero h1 { font-size: 32px; }
  .vbq .hero p { font-size: 16px; }
  .vbq .footer-cols { grid-template-columns: 1fr 1fr; }
  .vbq .prod-head { grid-template-columns: 1fr; }
  .vbq .detail-grid { grid-template-columns: 1fr; }
  .vbq .proscons { grid-template-columns: 1fr; }
  .vbq .compare-table th:nth-child(3),
  .vbq .compare-table td:nth-child(3) { display: none; }
}
@media (max-width: 560px) {
  .vbq .hero { padding: 40px 16px; }
  .vbq .hero h1 { font-size: 26px; }
  .vbq .footer-cols { grid-template-columns: 1fr; }
  .vbq .footer-bottom { flex-direction: column; gap: 8px; }
  .vbq .compare-table th:nth-child(4),
  .vbq .compare-table td:nth-child(4) { display: none; }
}

/* ========== PriceRunner-style additions ========== */

.vbq .header-cta {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.vbq .header-cta:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; }

.vbq .cat-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 12px 20px;
  border-top: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.vbq .cat-row::-webkit-scrollbar { display: none; }
.vbq .cat-row a {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 12px; color: var(--ink-soft); text-decoration: none;
  min-width: 56px; white-space: nowrap;
}
.vbq .cat-row a:hover { color: var(--brand); text-decoration: none; }
.vbq .cat-row__icon { font-size: 22px; line-height: 1; }

.vbq .hero--pr { padding: 56px 20px; text-align: left; background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 50%, #e6fafa 100%); }
.vbq .hero__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.vbq .hero__copy h1 { font-size: 38px; line-height: 1.1; margin: 0 0 12px; }
.vbq .hero__copy p { font-size: 16px; margin: 0 0 20px; max-width: 480px; }
.vbq .hero__copy .search { max-width: 480px; margin: 0; }
.vbq .hero__copy .search input { padding: 14px 18px 14px 44px; font-size: 15px; background: #fff; box-shadow: var(--shadow); }
.vbq .hero__copy .search::before { left: 16px; width: 16px; height: 16px; }
.vbq .hero__art { display: flex; align-items: center; justify-content: center; min-height: 320px; }
.vbq .hero__art-bubble {
  width: 260px; height: 260px;
  background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 96px; box-shadow: var(--shadow);
}
.vbq .hero__collage { position: relative; width: 340px; height: 340px; }
.vbq .hero__collage-item {
  position: absolute; width: 140px; height: 140px;
  background: #fff; border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.06);
  padding: 14px;
  display: flex; align-items: center; justify-content: center;
}
.vbq .hero__collage-item img { width: 100%; height: 100%; object-fit: contain; }
.vbq .hero__collage-item--1 { top: 0; left: 24px; transform: rotate(-7deg); animation: vbq-float-1 6s ease-in-out infinite; }
.vbq .hero__collage-item--2 { top: 16px; right: 0; transform: rotate(9deg); animation: vbq-float-2 7s ease-in-out infinite; }
.vbq .hero__collage-item--3 { bottom: 24px; left: 0; transform: rotate(-4deg); animation: vbq-float-3 8s ease-in-out infinite; }
.vbq .hero__collage-item--4 { bottom: 0; right: 18px; transform: rotate(6deg); animation: vbq-float-4 6.5s ease-in-out infinite; }
.vbq .hero__collage-badge {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--brand); color: #fff;
  width: 78px; height: 78px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; text-align: center; line-height: 1.1;
  box-shadow: 0 8px 22px rgba(14, 165, 164, 0.4);
  z-index: 2;
}
@keyframes vbq-float-1 { 0%,100%{transform:rotate(-7deg) translateY(0)} 50%{transform:rotate(-7deg) translateY(-8px)} }
@keyframes vbq-float-2 { 0%,100%{transform:rotate(9deg) translateY(0)} 50%{transform:rotate(9deg) translateY(-6px)} }
@keyframes vbq-float-3 { 0%,100%{transform:rotate(-4deg) translateY(0)} 50%{transform:rotate(-4deg) translateY(-7px)} }
@keyframes vbq-float-4 { 0%,100%{transform:rotate(6deg) translateY(0)} 50%{transform:rotate(6deg) translateY(-9px)} }

.vbq .banner { padding: 24px 0; background: var(--bg); }
.vbq .banner__card {
  background: linear-gradient(135deg, #312e81 0%, #4338ca 100%);
  color: #fff; border-radius: var(--radius); padding: 28px 32px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 24px;
}
.vbq .banner__label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; margin-bottom: 6px; }
.vbq .banner__title { font-size: 22px; margin: 0 0 6px; color: #fff; }
.vbq .banner__body { font-size: 14px; opacity: 0.9; margin: 0 0 14px; }
.vbq .banner__card .btn { background: #fff; color: var(--brand-dark); }
.vbq .banner__card .btn:hover { background: #f3f4f6; color: var(--brand-dark); }
.vbq .banner__art { font-size: 64px; opacity: 0.9; }

/* Carousel wrap — positions arrow buttons outside the scroll area. */
.vbq .carousel-wrap {
  position: relative;
}
.vbq .carousel-row {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 0 16px;
  scroll-behavior: smooth;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.vbq .carousel-row::-webkit-scrollbar { height: 8px; }
.vbq .carousel-row::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.vbq .carousel-row::-webkit-scrollbar-thumb:hover { background: var(--muted); }
.vbq .carousel-card { flex: 0 0 220px; scroll-snap-align: start; }

/* Arrow buttons — PriceRunner-style clean white circle with dark chevron. */
.vbq .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.10);
  color: #1f2937;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  padding: 0;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.vbq .carousel-nav:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.16);
  transform: translateY(-50%) scale(1.05);
}
.vbq .carousel-nav:active {
  transform: translateY(-50%) scale(0.96);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.12);
}
.vbq .carousel-nav--prev { left: -18px; }
.vbq .carousel-nav--next { right: -18px; }

/* Hide an arrow when its direction has nothing to scroll to. */
.vbq .carousel-nav[disabled],
.vbq .carousel-nav[aria-disabled="true"] {
  opacity: 0;
  pointer-events: none;
}

/* Smaller arrows on tablet/mobile so they don't overpower the carousel. */
@media (max-width: 880px) {
  .vbq .carousel-nav { width: 36px; height: 36px; font-size: 22px; }
  .vbq .carousel-nav--prev { left: -4px; }
  .vbq .carousel-nav--next { right: -4px; }
}
@media (max-width: 480px) {
  /* On phones, hide arrows entirely — horizontal swipe is more natural and arrows feel cramped. */
  .vbq .carousel-nav { display: none; }
}

.vbq .prod-card { position: relative; }
.vbq .discount-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--danger); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 4px;
  z-index: 2; line-height: 1.3;
}
.vbq .prod-card__price-old {
  font-size: 12px; font-weight: 400;
  color: var(--muted); text-decoration: line-through;
  margin-left: 4px;
}

/* Inspiration section — magazine-style cards with a product photo overflowing
 * the top edge over a soft color blob. Title + body sit below, content stays
 * vertically aligned across all 3 cards. */
.vbq .inspiration {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding-top: 80px;   /* makes room for the overflowing hero image at the top */
}
.vbq .insp-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 24px 28px 32px;
  min-height: 420px;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  text-decoration: none; color: var(--ink);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
}
/* Soft tinted card backgrounds — one tint per card, matching the blob hue. */
.vbq .insp-card--1 { background: linear-gradient(180deg, #f3eefe 0%, #faf5ff 60%, #ffffff 100%); }
.vbq .insp-card--2 { background: linear-gradient(180deg, #fef6dc 0%, #fefce8 60%, #ffffff 100%); }
.vbq .insp-card--3 { background: linear-gradient(180deg, #fcecf4 0%, #fdf2f8 60%, #ffffff 100%); }
.vbq .insp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(15, 23, 42, 0.06);
  text-decoration: none;
}
.vbq .insp-card__media {
  position: relative;
  height: 210px;             /* visible portion inside the card */
  margin: -120px -8px 48px;  /* lifts hero so it overflows the top; bigger bottom gap pushes title down */
  display: flex; align-items: flex-start; justify-content: center;
  overflow: visible;
}
.vbq .insp-card__blob {
  position: absolute;
  width: 235px; height: 235px;
  border-radius: 50%;
  top: 25px; left: 50%; transform: translateX(-50%);
  filter: blur(2px);
  z-index: 1;
}
/* Vivid color circles behind the product (stronger now that the card itself is tinted). */
.vbq .insp-card--1 .insp-card__blob {
  background: radial-gradient(circle at 35% 30%, #c4b5fd 0%, #a78bfa 55%, transparent 78%);
}
.vbq .insp-card--2 .insp-card__blob {
  background: radial-gradient(circle at 35% 30%, #fde68a 0%, #fbbf24 55%, transparent 78%);
}
.vbq .insp-card--3 .insp-card__blob {
  background: radial-gradient(circle at 35% 30%, #fbcfe8 0%, #f9a8d4 55%, transparent 78%);
}
.vbq .insp-card__hero {
  position: relative;
  z-index: 2;
  /* Fixed dimensions keep the product centered on the blob and prevent it from
   * growing tall enough to overlap the title text below. */
  width: 230px;
  height: 230px;
  object-fit: contain;
  transform: rotate(-8deg);
  /* PNGs are pre-cut with transparent backgrounds (built via GD background-removal
   * — see assets/inspiration/*.png). Drop-shadow gives the product its lift. */
  filter: drop-shadow(0 18px 28px rgba(15, 23, 42, 0.28));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.vbq .insp-card:hover .insp-card__hero {
  transform: rotate(-4deg) scale(1.04);
}
/* Text block sits above the image via z-index so it always wins if anything overflows.
 * No background needed now that the whole card has a uniform tint. */
.vbq .insp-card__label,
.vbq .insp-card__title,
.vbq .insp-card__body,
.vbq .insp-card__cta {
  position: relative;
  z-index: 3;
}
.vbq .insp-card__label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-soft); font-weight: 700;
}
.vbq .insp-card__title { font-size: 22px; font-weight: 700; margin: 10px 0 14px; line-height: 1.25; }
.vbq .insp-card__body { font-size: 14px; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.vbq .insp-card__cta { font-size: 14px; font-weight: 600; color: var(--brand-dark); margin-top: 18px; }
.vbq .insp-card:hover .insp-card__cta { color: var(--brand); }

/* ========== Tablet (1100px) — softer transition between desktop and mobile ========== */
@media (max-width: 1100px) {
  .vbq .container { padding: 0 16px; }
  .vbq .hero__copy h1 { font-size: 32px; }
  .vbq .hero__art-bubble { width: 200px; height: 200px; font-size: 80px; }
  .vbq .section { padding: 40px 0; }
  .vbq .section__head h2 { font-size: 24px; }
  .vbq .cat-row { gap: 22px; }
  .vbq .inspiration { grid-template-columns: repeat(2, 1fr); gap: 24px; padding-top: 80px; }
  .vbq .insp-card { padding: 18px 22px 22px; }
  .vbq .insp-card__media { height: 170px; margin-top: -90px; }
  .vbq .insp-card__blob { width: 200px; height: 200px; }
  .vbq .insp-card__title { font-size: 19px; }
  .vbq .carousel-card { flex: 0 0 200px; }
  .vbq .footer-cols { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; }
  .vbq .main-nav { gap: 12px; }
  .vbq .main-nav a { font-size: 13px; }
  .vbq .header-cta { padding: 7px 14px; font-size: 12px; }
}

@media (max-width: 880px) {
  .vbq .hero--pr { padding: 40px 16px; }
  .vbq .hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .vbq .hero__copy h1 { font-size: 28px; }
  .vbq .hero__art-bubble { width: 160px; height: 160px; font-size: 64px; }
  .vbq .inspiration { grid-template-columns: 1fr; }
  .vbq .cat-row { gap: 18px; justify-content: flex-start; padding: 10px 16px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .vbq .cat-row::-webkit-scrollbar { display: none; }
  .vbq .cat-row a { flex-shrink: 0; }
  .vbq .carousel-card { flex: 0 0 180px; }
  .vbq .banner__card { grid-template-columns: 1fr; }
  .vbq .banner__art { font-size: 48px; justify-self: end; }
  .vbq .site-header__inner { flex-wrap: wrap; gap: 12px; padding: 12px 16px; align-items: center; }
  .vbq .site-header__inner .search { order: 4; flex-basis: 100%; max-width: none; }
  .vbq .main-nav { display: none; }
  .vbq .vbq-hamburger { display: flex; }            /* show hamburger button */
  .vbq .header-cta { padding: 6px 12px; font-size: 12px; }
  .vbq .compare-table th:first-child,
  .vbq .compare-table td:first-child { padding-left: 12px; }
  .vbq .compare-table th,
  .vbq .compare-table td { padding: 12px 8px; font-size: 13px; }
  .vbq .shop-cell { gap: 8px; }
  .vbq .shop-logo { width: 44px; height: 26px; font-size: 9px; }
  .vbq .btn { padding: 8px 12px; font-size: 12px; }
  /* Product page hero stacks vertically on mobile */
  .vbq .prod-head { grid-template-columns: 1fr; gap: 18px; padding: 16px 0 24px; }
  .vbq .prod-head__title { font-size: 22px; }
  .vbq .prod-head__price-range .price { font-size: 28px; }
  /* Footer columns collapse to 2 then 1 */
  .vbq .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ========== Small phone (480px) — extra tight ========== */
@media (max-width: 480px) {
  .vbq .container { padding: 0 12px; }
  .vbq .brand { font-size: 18px; }
  .vbq .hero { padding: 32px 12px; }
  .vbq .hero__copy h1 { font-size: 24px; }
  .vbq .hero__copy p { font-size: 14px; }
  .vbq .section__head h2 { font-size: 20px; }
  .vbq .section { padding: 28px 0; }
  .vbq .banner__card { padding: 20px 18px; }
  .vbq .banner__title { font-size: 18px; }
  .vbq .carousel-card { flex: 0 0 160px; }
  .vbq .prod-card__name { font-size: 14px; }
  .vbq .prod-card__price { font-size: 16px; }
  .vbq .prod-head__title { font-size: 22px; }
  .vbq .prod-head__price-range .price { font-size: 24px; }
  .vbq .compare-block__head h3 { font-size: 15px; }
  .vbq .detail-block { padding: 16px; }
  .vbq .detail-block h3 { font-size: 16px; }
}

/* ==================================================
 * Categories overview page (/kategorien/) — page-kategorien.php
 * ================================================== */
.vbq .catpage-hero {
  background: linear-gradient(135deg, #f4f0fb 0%, #eaf6f6 100%);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
}
.vbq .catpage-hero h1 {
  font-size: 40px; line-height: 1.15; margin: 8px 0 12px;
  color: var(--ink);
}
.vbq .catpage-hero__lead {
  font-size: 17px; color: var(--ink-soft);
  max-width: 720px; margin: 0;
}
.vbq .breadcrumbs {
  font-size: 13px; color: var(--ink-soft); margin-bottom: 4px;
}
.vbq .breadcrumbs a { color: var(--brand); text-decoration: none; }
.vbq .breadcrumbs a:hover { text-decoration: underline; }
.vbq .breadcrumbs span { margin: 0 6px; }

.vbq .catpage-section { padding: 48px 0 64px; }
.vbq .catpage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vbq .catpage-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.vbq .catpage-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.vbq .catpage-card__hero {
  display: block;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  height: 200px;
  position: relative;
  overflow: hidden;
}
.vbq .catpage-card__hero img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 24px;
  transition: transform 0.3s ease;
}
.vbq .catpage-card:hover .catpage-card__hero img { transform: scale(1.05); }
.vbq .catpage-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.vbq .catpage-card__head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.vbq .catpage-card__icon {
  font-size: 28px;
  background: rgba(14, 165, 164, 0.1);
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.vbq .catpage-card__head h2 { font-size: 20px; margin: 0 0 2px; line-height: 1.2; }
.vbq .catpage-card__head h2 a { color: var(--ink); text-decoration: none; }
.vbq .catpage-card__head h2 a:hover { color: var(--brand); }
.vbq .catpage-card__count { font-size: 13px; color: var(--ink-soft); }
.vbq .catpage-card__sublabel {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin: 6px 0 8px;
}
.vbq .catpage-card__sublist {
  list-style: none; padding: 0; margin: 0 0 16px;
}
.vbq .catpage-card__sublist li { padding: 3px 0; }
.vbq .catpage-card__sublist a {
  color: var(--ink); text-decoration: none;
  font-size: 14px;
}
.vbq .catpage-card__sublist a:hover { color: var(--brand); text-decoration: underline; }
.vbq .catpage-card__chips {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px;
}
.vbq .chip {
  display: inline-block;
  padding: 5px 10px;
  background: #f3f4f6;
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.vbq .chip:hover { background: var(--brand); color: #fff; }
.vbq .catpage-card__more {
  margin-top: auto;
  display: inline-block;
  color: var(--brand);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.vbq .catpage-card__more:hover { text-decoration: underline; }

.vbq .catpage-help {
  background: #f9fafb;
  padding: 40px 0 56px;
  border-top: 1px solid var(--line);
}
.vbq .catpage-help__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.vbq .catpage-help h2 { font-size: 22px; margin: 0 0 6px; }
.vbq .catpage-help p { color: var(--ink-soft); margin: 0; max-width: 480px; }
.vbq .catpage-help .search { background: var(--bg); }

@media (max-width: 1000px) {
  .vbq .catpage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .vbq .catpage-grid { grid-template-columns: 1fr; }
  .vbq .catpage-hero { padding: 36px 0 28px; }
  .vbq .catpage-hero h1 { font-size: 28px; }
  .vbq .catpage-help__inner { grid-template-columns: 1fr; }
}

/* ==================================================
 * Themed gradient hero panels (catpage-card__hero + catdetail-hero__cover)
 * Used on /kategorien/ cards AND individual category archive pages.
 * Theme class is set by the site-config + term meta 'vbq_theme_class'.
 * ================================================== */
.vbq .catpage-card__hero {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.vbq .catpage-card__hero--beauty-parfum        { background: linear-gradient(135deg, #fce7f3 0%, #f9a8d4 60%, #ec4899 100%); }
.vbq .catpage-card__hero--haushalt-kueche      { background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 60%, #f59e0b 100%); }
.vbq .catpage-card__hero--smartwatches-uhren   { background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 60%, #3b82f6 100%); }
.vbq .catpage-card__hero--heimwerken-werkzeuge { background: linear-gradient(135deg, #fef2f2 0%, #fed7aa 60%, #f97316 100%); }
.vbq .catpage-card__hero--elektronik-audio     { background: linear-gradient(135deg, #ede9fe 0%, #c4b5fd 60%, #8b5cf6 100%); }
.vbq .catpage-card__hero--sport-schuhe         { background: linear-gradient(135deg, #d1fae5 0%, #6ee7b7 60%, #10b981 100%); }
/* Default themed background for categories without a matching class */
.vbq .catpage-card__hero--default              { background: linear-gradient(135deg, #e0e7ff 0%, #a5b4fc 100%); }
.vbq .catpage-card__hero-icon {
  font-size: 80px;
  z-index: 2;
  filter: drop-shadow(0 8px 16px rgba(15, 23, 42, 0.18));
  transition: transform 0.3s ease;
  line-height: 1;
}
.vbq .catpage-card:hover .catpage-card__hero-icon { transform: scale(1.1) rotate(-5deg); }
.vbq .catpage-card__hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  z-index: 1;
}
.vbq .catpage-card__hero-shape--1 { width: 100px; height: 100px; top: -25px; left: -25px; }
.vbq .catpage-card__hero-shape--2 { width: 60px; height: 60px; bottom: 10px; right: 16px; background: rgba(255,255,255,0.25); }

/* Big themed cover on individual category archive pages */
.vbq .catdetail-hero__cover {
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}
.vbq .catdetail-hero__cover--beauty-parfum        { background: linear-gradient(135deg, #fce7f3 0%, #f9a8d4 60%, #ec4899 100%); }
.vbq .catdetail-hero__cover--haushalt-kueche      { background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 60%, #f59e0b 100%); }
.vbq .catdetail-hero__cover--smartwatches-uhren   { background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 60%, #3b82f6 100%); }
.vbq .catdetail-hero__cover--heimwerken-werkzeuge { background: linear-gradient(135deg, #fef2f2 0%, #fed7aa 60%, #f97316 100%); }
.vbq .catdetail-hero__cover--elektronik-audio     { background: linear-gradient(135deg, #ede9fe 0%, #c4b5fd 60%, #8b5cf6 100%); }
.vbq .catdetail-hero__cover--sport-schuhe         { background: linear-gradient(135deg, #d1fae5 0%, #6ee7b7 60%, #10b981 100%); }
.vbq .catdetail-hero__symbol {
  font-size: 140px;
  z-index: 3;
  filter: drop-shadow(0 12px 24px rgba(15, 23, 42, 0.15));
  line-height: 1;
}
.vbq .catdetail-hero__watermark {
  position: absolute;
  bottom: 16px;
  right: 22px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  z-index: 3;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.vbq .catdetail-hero__shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  z-index: 1;
}
.vbq .catdetail-hero__shape--1 { width: 180px; height: 180px; top: -40px; left: -40px; }
.vbq .catdetail-hero__shape--2 { width: 110px; height: 110px; bottom: -20px; right: -20px; background: rgba(255,255,255,0.25); }
.vbq .catdetail-hero__shape--3 { width: 50px; height: 50px; top: 30px; right: 50px; background: rgba(255,255,255,0.4); }

/* Article hero — generated SVG (gradient + title) */
.vbq-art-hero {
    margin: 0 0 36px;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1200 / 630;
    background: #1e293b;
}
.vbq-art-hero--generated img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* In-body decorative SVG figure (vbq_generate_body_svg) */
.vbq-art-body-fig {
    margin: 36px 0;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1200 / 375;
    background: #f9fafb;
}
.vbq-art-body-fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* In-body product comparison block */
.vbq-compare-block {
    margin: 36px 0;
    padding: 24px;
    background: #f9fafb;
    border: 1px solid var(--line);
    border-radius: 14px;
}
.vbq-compare-block__heading {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 18px;
    color: #1f2937 !important;
}
.vbq-compare-block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.vbq-compare-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .15s, box-shadow .15s;
}
.vbq-compare-card a {
    display: block;
    text-decoration: none !important;
    color: inherit;
}
.vbq-compare-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.vbq-compare-card__img {
    aspect-ratio: 1 / 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}
.vbq-compare-card__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.vbq-compare-card__body {
    padding: 14px 18px 18px;
    border-top: 1px solid var(--line);
}
.vbq-compare-card__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 8px;
    color: #1f2937 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vbq-compare-card__price {
    font-size: 13px;
    color: var(--ink-soft);
}
.vbq-compare-card__price strong {
    color: var(--brand);
    font-size: 18px;
    font-weight: 700;
}
.vbq-compare-card__shops {
    font-size: 12px;
    color: var(--muted);
    margin: 4px 0 10px;
}
.vbq-compare-card__cta {
    display: inline-block;
    font-size: 13px;
    color: var(--brand);
    font-weight: 600;
}
@media (max-width: 600px) {
    .vbq-compare-block__grid { grid-template-columns: 1fr; }
}

/* Magazin landing-page article cards (with hero image) */
.vbq-mag-card { overflow: hidden; }
.vbq-mag-card__img {
    aspect-ratio: 16 / 9;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0;
}
.vbq-mag-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}
/* Product photos need 'contain' (white space around them) instead of 'cover'
   so the product isn't cropped weird. The cartoon SVG fallbacks use 'cover'. */
.vbq-mag-card--product .vbq-mag-card__img {
    background: #fff;
}
.vbq-mag-card--product .vbq-mag-card__img img {
    object-fit: contain;
    padding: 16px;
}
.vbq-mag-card:hover .vbq-mag-card__img img { transform: scale(1.04); }

/* --- Variant block: colors + sizes inside product head --- */
.variant-block {
    margin: 14px 0 0;
}
.variant-block--inline {
    padding: 0;
    background: none;
    border: 0;
}
.variant-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
}
.variant-row + .variant-row {
    margin-top: 12px;
}
.variant-row__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 56px;
}

/* Color circles — glossy / glass effect */
.color-circles {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 16px;
}
.color-circle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: default;
    font-size: 12px;
    color: var(--ink);
    font-weight: 500;
}
.color-circle__swatch {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid #d1d5db;
    box-shadow:
        inset 0 -2px 5px rgba(0, 0, 0, 0.22),
        inset 0 2px 3px rgba(255, 255, 255, 0.5),
        0 1px 4px rgba(0, 0, 0, 0.1);
    display: block;
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease;
}
.color-circle__swatch::before {
    /* Glossy highlight on the upper-left */
    content: '';
    position: absolute;
    top: 6%;
    left: 12%;
    width: 55%;
    height: 45%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.35) 35%,
        rgba(255, 255, 255, 0) 70%);
    filter: blur(0.5px);
    pointer-events: none;
}
.color-circle__swatch::after {
    /* Subtle bottom shine for depth */
    content: '';
    position: absolute;
    bottom: 8%;
    left: 20%;
    width: 60%;
    height: 18%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0) 75%);
    pointer-events: none;
}
/* Hover lift + brand-color ring is reserved for CLICKABLE circles (variant siblings).
 * Plain informational circles (single-product multi-color displays) stay static
 * to communicate "this is info, not a button". */
a.color-circle:hover .color-circle__swatch {
    transform: scale(1.1);
    border-color: var(--brand);
    box-shadow:
        inset 0 -2px 5px rgba(0, 0, 0, 0.22),
        inset 0 2px 3px rgba(255, 255, 255, 0.55),
        0 3px 10px rgba(0, 0, 0, 0.18);
}
/* Active (current product) color circle — visually highlighted */
.color-circle.is-active .color-circle__swatch {
    border-color: var(--brand);
    border-width: 2px;
    box-shadow:
        inset 0 -2px 5px rgba(0, 0, 0, 0.22),
        inset 0 2px 3px rgba(255, 255, 255, 0.5),
        0 0 0 2px rgba(20, 184, 166, 0.18),
        0 1px 4px rgba(0, 0, 0, 0.1);
}
.color-circle.is-active .color-circle__name {
    color: var(--brand);
    font-weight: 700;
}
/* Sibling variant — rendered as a link so it's clickable */
a.color-circle--sibling {
    text-decoration: none;
    color: var(--ink);
    cursor: pointer;
}
a.color-circle--sibling:hover .color-circle__name {
    color: var(--brand);
}
.color-circle__name {
    max-width: 64px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
}

/* Size cards — compact, just size + price */
.size-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.size-chip {
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    padding: 8px 8px 6px;
    min-width: 60px;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    font: inherit;
    color: var(--ink);
    transition: border-color .15s, background .15s, transform .1s, box-shadow .15s;
    line-height: 1.1;
    white-space: nowrap;
    text-align: center;
}
.size-chip:hover {
    border-color: var(--brand);
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.size-chip.is-active {
    border-color: var(--brand);
    background: var(--brand-soft);
    box-shadow: 0 0 0 2px var(--brand-soft);
}
.size-chip__label {
    font-weight: 700;
    font-size: 16px;
    padding: 0 2px 5px;
}
.size-chip__sep { display: none; }
.size-chip__price {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
    padding: 5px 2px 0;
    border-top: 1px solid #e5e7eb;
    width: 100%;
}

@media (max-width: 600px) {
    .variant-row__label { min-width: 100%; margin-bottom: 4px; }
    .color-circle__swatch { width: 26px; height: 26px; }
    .size-chip { padding: 5px 10px; }
    .size-chip__label { font-size: 13px; }
    .size-chip__price { font-size: 11px; }
}

/* =====================================================
 * Editorial landing pages (Inspiration: Sport, Coffee, Beauty)
 * ===================================================== */
/* Hide Astra's auto-rendered page title — our hero H1 replaces it. */
body.vbq-edt-page .entry-header,
body.vbq-edt-page .entry-title,
body.vbq-edt-page header.page-header,
body.vbq-edt-page .ast-archive-description,
body.vbq-edt-page .page-title { display: none !important; }
body.vbq-edt-page .entry-content { margin-top: 0 !important; padding-top: 0 !important; }
body.vbq-edt-page .ast-container,
body.vbq-edt-page .site-content > .ast-container { max-width: none; padding-left: 0; padding-right: 0; }

.vbq-editorial { max-width: 980px; margin: 0 auto; padding: 0 20px 60px; color: #1f2937; }
.vbq-editorial,
.vbq-editorial p,
.vbq-editorial li,
.vbq-editorial summary,
.vbq-editorial h1,
.vbq-editorial h2,
.vbq-editorial h3,
.vbq-editorial h4 { color: #1f2937; }
.vbq-editorial p,
.vbq-editorial li,
.vbq-editorial summary { font-size: 16px; line-height: 1.65; color: #1f2937; }
.vbq-editorial strong { color: #1f2937; font-weight: 700; }
.vbq-editorial a { color: var(--brand); text-decoration: none; }
.vbq-editorial em { font-style: italic; color: #4b5563; }

/* Hero — 2-column grid: text + icon visual, no overlap */
.vbq-edt-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
    padding: 56px 40px 48px;
    margin: 24px 0 48px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ede9fe 0%, #fae8ff 100%);
    overflow: hidden;
}
.vbq-editorial--coffee  .vbq-edt-hero { background: linear-gradient(135deg, #fef9c3 0%, #fed7aa 100%); }
.vbq-editorial--beauty  .vbq-edt-hero { background: linear-gradient(135deg, #fce7f3 0%, #ccfbf1 100%); }
.vbq-edt-hero__eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
    grid-column: 1 / 2;
}
.vbq-edt-hero__title {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 14px;
    color: #111827 !important;
    letter-spacing: -0.02em;
    grid-column: 1 / 2;
}
.vbq-edt-hero__lead {
    font-size: 17px;
    line-height: 1.55;
    color: #374151 !important;
    margin: 0;
    max-width: 600px;
    grid-column: 1 / 2;
}
.vbq-edt-hero__lead strong { color: #111827 !important; font-weight: 700; }
.vbq-edt-hero__visual {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
    align-self: center;
    margin-top: 36px;           /* nudge icons down so they align with title/lead area, not the eyebrow */
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1;
    opacity: 0.9;
    letter-spacing: 4px;
    pointer-events: none;
    white-space: nowrap;
    flex-shrink: 0;
}
@media (max-width: 720px) {
    .vbq-edt-hero { grid-template-columns: 1fr; padding: 32px 22px 28px; gap: 14px; }
    .vbq-edt-hero__visual { grid-column: 1; grid-row: auto; font-size: 40px; letter-spacing: 2px; margin-top: 4px; }
}

/* ====================================================
 * Live-search dropdown (attached to every input[type=search])
 * ==================================================== */
.vbq-search-dd {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    margin-top: 6px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    max-height: 480px;
    overflow-y: auto;
    overflow-x: hidden;
}
.vbq-search-dd[hidden] { display: none !important; }
.vbq-search-dd__row {
    display: flex;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none !important;
    color: var(--ink) !important;
    border-bottom: 1px solid #f3f4f6;
    transition: background .08s;
    align-items: center;
}
.vbq-search-dd__row:hover { background: var(--brand-soft); }
.vbq-search-dd__img {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    background: #f9fafb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.vbq-search-dd__img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.vbq-search-dd__icon { font-size: 24px; }
.vbq-search-dd__body { flex: 1; min-width: 0; }
.vbq-search-dd__title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    color: var(--ink);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 4px;
}
.vbq-search-dd__meta {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    color: var(--muted);
    flex-wrap: wrap;
}
.vbq-search-dd__cat {
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 500;
}
.vbq-search-dd__price { color: var(--brand); font-weight: 700; }
.vbq-search-dd__shops {}
.vbq-search-dd__all {
    display: block;
    padding: 12px 14px;
    text-align: center;
    background: #f9fafb;
    color: var(--brand) !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
}
.vbq-search-dd__all:hover { background: var(--brand-soft); }
.vbq-search-dd__loading,
.vbq-search-dd__empty {
    padding: 16px 14px;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

/* Meta line under hero */
.vbq-edt-meta {
    font-size: 13px;
    color: #6b7280 !important;
    margin: 0 0 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e7eb;
}
.vbq-edt-meta a { color: var(--brand) !important; }
.vbq-edt-meta time { font-weight: 500; }

/* Table of contents */
.vbq-edt-toc {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 22px 18px 22px;
    margin: 0 0 40px;
}
.vbq-edt-toc strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280 !important;
    margin-bottom: 10px;
}
.vbq-edt-toc ol {
    margin: 0;
    padding-left: 22px;
    columns: 2;
    column-gap: 24px;
}
.vbq-edt-toc li {
    margin-bottom: 6px;
    break-inside: avoid;
    font-size: 14px !important;
}
.vbq-edt-toc a {
    color: var(--brand) !important;
    text-decoration: none;
}
.vbq-edt-toc a:hover { text-decoration: underline; }
@media (max-width: 600px) { .vbq-edt-toc ol { columns: 1; } }

/* Comparison tables */
.vbq-edt-table-wrap {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}
.vbq-edt-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 14px;
}
.vbq-edt-table thead {
    background: #f3f4f6;
}
.vbq-edt-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #374151 !important;
    border-bottom: 1px solid #e5e7eb;
}
.vbq-edt-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    color: #1f2937 !important;
    line-height: 1.4;
}
.vbq-edt-table tr:last-child td { border-bottom: 0; }
.vbq-edt-table tr:hover td { background: #f9fafb; }
.vbq-edt-table strong { color: #111827 !important; font-weight: 700; }

/* H3 within editorial */
.vbq-editorial h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 24px 0 12px;
    color: #111827 !important;
}

/* Sections */
.vbq-edt-section { margin: 0 0 48px; }
.vbq-edt-h2 {
    display: flex;
    align-items: baseline;
    gap: 14px;
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.vbq-edt-h2__num {
    font-size: 14px;
    font-weight: 800;
    color: var(--brand);
    letter-spacing: 1px;
    background: var(--brand-soft);
    padding: 4px 10px;
    border-radius: 6px;
}

/* Card grid for criteria/benefits */
.vbq-edt-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}
.vbq-edt-cards__item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px 20px;
    transition: transform .15s, box-shadow .15s;
}
.vbq-edt-cards__item:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.vbq-edt-cards__icon { font-size: 32px; margin-bottom: 12px; line-height: 1; }
.vbq-edt-cards__item h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.vbq-edt-cards__item p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* Brand-comparison split */
.vbq-edt-brandgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.vbq-edt-brandgrid__item {
    background: var(--bg-alt);
    border-radius: 12px;
    padding: 18px 20px;
    border-left: 4px solid var(--brand);
}
.vbq-edt-brandgrid__item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--brand-dark);
}
.vbq-edt-brandgrid__item p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* Budget tier table */
.vbq-edt-tiers {
    margin-top: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}
.vbq-edt-tiers__row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.vbq-edt-tiers__row:last-child { border-bottom: 0; }
.vbq-edt-tiers__row:nth-child(odd) { background: var(--bg-alt); }
.vbq-edt-tiers__price { font-weight: 700; color: var(--brand); font-size: 16px; }
.vbq-edt-tiers__desc  { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 600px) {
    .vbq-edt-tiers__row { grid-template-columns: 1fr; gap: 4px; }
}

/* Numbered list (How to find deals) */
.vbq-edt-numbered { counter-reset: vbq-list; list-style: none; padding: 0; margin: 16px 0; }
.vbq-edt-numbered li {
    counter-increment: vbq-list;
    position: relative;
    padding: 14px 18px 14px 64px;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    line-height: 1.55;
}
.vbq-edt-numbered li::before {
    content: counter(vbq-list);
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* FAQ accordion */
.vbq-edt-faq__item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0;
    margin-bottom: 10px;
    overflow: hidden;
}
.vbq-edt-faq__item summary {
    cursor: pointer;
    padding: 16px 20px;
    font-weight: 600;
    list-style: none;
    position: relative;
    padding-right: 48px;
    user-select: none;
}
.vbq-edt-faq__item summary::-webkit-details-marker { display: none; }
.vbq-edt-faq__item summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--brand);
    font-weight: 400;
    transition: transform .2s;
}
.vbq-edt-faq__item[open] summary::after { content: '−'; }
.vbq-edt-faq__item p { padding: 0 20px 16px; margin: 0; color: var(--ink-soft); font-size: 15px; }

/* CTA */
.vbq-edt-cta {
    text-align: center;
    padding: 32px 0 0;
    border-top: 1px solid var(--line);
}
.vbq-edt-cta .btn { font-size: 16px; padding: 14px 28px; }

/* Embedded product grid inside editorial pages */
.vbq-editorial .vbq-inspiration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 18px;
}

/* ============================================================================
 * Legal pages (Impressum, Datenschutz, Affiliate-Hinweis, AGB)
 * Long-form reading layout — wide line-height, generous spacing, clean H2s.
 * ============================================================================ */
.vbq-legal-hero {
    max-width: 780px;
    margin: 32px auto 8px;
    padding: 0 20px;
}
.vbq-legal-hero__title {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    line-height: 1.15;
}
.vbq-legal {
    max-width: 780px;
    margin: 0 auto 64px;
    padding: 0 20px;
    color: #1f2937;
    font-size: 16px;
    line-height: 1.7;
}
.vbq-legal h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 36px 0 14px;
    color: #0f172a;
    line-height: 1.3;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
}
.vbq-legal h2:first-of-type {
    border-top: 0;
    padding-top: 0;
    margin-top: 24px;
}
.vbq-legal p { margin: 0 0 16px; }
.vbq-legal ul {
    margin: 0 0 20px;
    padding-left: 22px;
}
.vbq-legal ul li {
    margin-bottom: 8px;
    line-height: 1.65;
}
.vbq-legal a {
    color: var(--brand-dark, #0b8584);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.vbq-legal a:hover {
    color: var(--brand, #0ea5a4);
}
.vbq-legal strong {
    color: #0f172a;
    font-weight: 700;
}
.vbq-legal code {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 0.9em;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.vbq-legal em {
    color: #64748b;
    font-style: italic;
}

/* ============================================================================
 * Mobile navigation — hamburger button + slide-out drawer
 * ============================================================================ */

/* Hamburger button: hidden on desktop, shown on mobile via @media below. */
.vbq .vbq-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    margin-left: auto;
    transition: background 0.15s;
}
.vbq .vbq-hamburger:hover { background: var(--bg-alt, #f8fafc); }
.vbq .vbq-hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--ink, #0f172a);
    border-radius: 2px;
    margin: 0 auto;
    transition: transform 0.2s, opacity 0.2s;
}

/* MOBILE NAV: show hamburger, hide inline nav AND the category icon row
 * (category row content is duplicated inside the drawer). Declared at the
 * END of the file so it wins over earlier display:none declarations. */
@media (max-width: 880px) {
    .vbq .vbq-hamburger { display: flex !important; }
    .vbq .main-nav { display: none !important; }
    .vbq .cat-row { display: none !important; }
}

/* Drawer container — full-viewport overlay; hidden by default. */
.vbq-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}
.vbq-mobile-drawer.is-open {
    pointer-events: auto;
    opacity: 1;
}
.vbq-mobile-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    cursor: pointer;
}
.vbq-mobile-drawer__panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #ffffff;
    box-shadow: -8px 0 32px rgba(15, 23, 42, 0.18);
    padding: 24px 18px 32px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.vbq-mobile-drawer.is-open .vbq-mobile-drawer__panel {
    transform: translateX(0);
}
.vbq-mobile-drawer__close {
    position: absolute;
    top: 12px; right: 14px;
    width: 36px; height: 36px;
    background: transparent;
    border: 0;
    font-size: 28px;
    line-height: 1;
    color: var(--ink-soft, #475569);
    cursor: pointer;
    border-radius: 999px;
    transition: background 0.15s, color 0.15s;
}
.vbq-mobile-drawer__close:hover {
    background: var(--bg-alt, #f1f5f9);
    color: var(--ink, #0f172a);
}

/* Nav lists inside the drawer */
.vbq-mobile-nav {
    display: flex;
    flex-direction: column;
    margin-top: 36px;
    gap: 2px;
}
.vbq-mobile-nav a {
    display: block;
    padding: 12px 14px;
    color: var(--ink, #0f172a);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    transition: background 0.15s, color 0.15s;
}
.vbq-mobile-nav a:hover {
    background: var(--bg-alt, #f1f5f9);
    color: var(--brand, #0ea5a4);
    text-decoration: none;
}
.vbq-mobile-nav__divider {
    margin: 18px 14px 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-soft, #64748b);
    font-weight: 700;
    border-top: 1px solid var(--line, #e2e8f0);
    padding-top: 14px;
}
.vbq-mobile-nav--cats a {
    font-size: 14px;
    font-weight: 400;
}

/* ============================================================================
 * Additional small-screen tightening (phone, <600px)
 * ============================================================================ */
@media (max-width: 600px) {
    /* Body padding and base sizes */
    .vbq .section { padding: 24px 0; }
    /* Inspiration cards — reduce padding so they don't get cramped */
    .vbq .insp-card { padding: 14px 18px 22px; min-height: 360px; }
    .vbq .insp-card__media { height: 160px; margin-top: -80px; }
    .vbq .insp-card__blob { width: 180px; height: 180px; }
    .vbq .insp-card__hero { width: 180px; height: 180px; }
    /* Product card tweaks for tighter grids */
    .vbq .prod-card { min-height: 340px; }
    .vbq .prod-card__name { font-size: 14px; }
    .vbq .prod-card__price { font-size: 20px; }
    /* Container width */
    .vbq .container { padding: 0 12px; }
    /* Legal page hero */
    .vbq-legal-hero { padding: 0 12px; }
    .vbq-legal-hero__title { font-size: 28px; }
    .vbq-legal { padding: 0 12px; font-size: 15px; }
    .vbq-legal h2 { font-size: 19px; }
    /* Drawer slightly slimmer on small screens */
    .vbq-mobile-drawer__panel { width: 290px; padding: 20px 14px 28px; }
}

