/*
 * Vibequelle skin: Bold (brutalist editorial)
 *
 * Aggressive editorial look: oversized sans-serif headlines, pure white
 * background, near-black ink, zero border-radius, no shadows, one signal-red
 * accent for CTAs and price highlights. Heavy black borders frame every
 * product card. Designed to grab attention on the first scroll.
 *
 * Major skeleton differences vs Default:
 *   Header: SOLID BLACK BAND (vs default white), all-uppercase nav letterspaced
 *   Hero: LEFT-ALIGNED 96px+ headline (vs default 56px) + red accent dot
 *   Cards: HARD black 2px borders, zero radius, NO hover shadow — only
 *          background flip on hover (white → black, text inverts)
 *   Trust row: 4 columns separated by thick vertical black lines
 *   Footer: solid black with white text + thick red top border
 *
 * Override scope: this CSS loads ON TOP of the base theme stylesheet,
 * so we only redefine what diverges from the base.
 */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700;900&display=swap');

body.vbq {
  --brand: #0a0a0a;
  --brand-dark: #000000;
  --brand-soft: #fafafa;
  --ink: #0a0a0a;
  --ink-soft: #262626;
  --muted: #737373;
  --line: #0a0a0a;
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --accent: #ef4444;
  --accent-dark: #b91c1c;
  --display: 'Archivo Black', 'Inter', system-ui, sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

/* ─── Brutalist typography — sans-serif, oversized, tight tracking ──── */
body.vbq h1,
body.vbq h2,
body.vbq h3,
body.vbq h4 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  text-transform: none;
}
body.vbq h1 { font-size: 96px; letter-spacing: -0.04em; }
body.vbq h2 { font-size: 48px; }
body.vbq h3 { font-size: 26px; letter-spacing: -0.02em; }
body.vbq p  { font-family: var(--sans); font-size: 17px; line-height: 1.55; color: var(--ink-soft); }
body.vbq a  { color: var(--ink); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
body.vbq a:hover { color: var(--accent); }
body.vbq .container { max-width: 1180px; }

/* ─── Header — SOLID BLACK bar, white nav, no curves ───────────────── */
body.vbq .site-header {
  background: var(--ink) !important;
  color: #fff;
  border-bottom: 4px solid var(--accent);
  padding: 22px 0;
}
body.vbq .site-header__inner { padding: 0 24px; }
body.vbq .brand {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
}
body.vbq .brand .dot { color: var(--accent); }
body.vbq .main-nav a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fff;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.12s, color 0.12s;
}
body.vbq .main-nav a:hover { color: var(--accent); border-bottom-color: var(--accent); }
body.vbq .search input {
  border: 2px solid #fff;
  background: var(--ink);
  border-radius: 0;
  padding: 10px 16px;
  font-family: var(--sans);
  font-size: 13px;
  color: #fff;
}
body.vbq .search input::placeholder { color: #a3a3a3; }

/* Category row — black strip continuing the header */
body.vbq .cat-row {
  background: var(--ink);
  border-bottom: 1px solid #262626;
  padding: 12px 24px;
  font-family: var(--sans);
}
body.vbq .cat-row a {
  font-size: 12px;
  font-weight: 700;
  color: #d4d4d4;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
}
body.vbq .cat-row a:hover { color: var(--accent); }

/* ─── Hero — left-aligned, monstrous headline + red accent ────────── */
body.vbq .hero,
body.vbq section[style*="linear-gradient(135deg"] {
  background: var(--bg) !important;
  color: var(--ink) !important;
  padding: 96px 0 80px !important;
  border-bottom: 4px solid var(--ink);
}
body.vbq .hero .container,
body.vbq section[style*="linear-gradient(135deg"] .container { position: relative; }
body.vbq .hero h1,
body.vbq section[style*="linear-gradient(135deg"] h1 {
  color: var(--ink) !important;
  font-size: 112px !important;
  line-height: 0.95 !important;
  max-width: 980px;
  font-weight: 900;
  letter-spacing: -0.045em !important;
}
body.vbq .hero h1::after,
body.vbq section[style*="linear-gradient(135deg"] h1::after {
  content: '.';
  color: var(--accent);
  display: inline;
}
body.vbq .hero p,
body.vbq section[style*="linear-gradient(135deg"] p {
  color: var(--ink-soft) !important;
  font-family: var(--sans);
  font-size: 19px !important;
  line-height: 1.5 !important;
  max-width: 620px;
  font-weight: 500;
  opacity: 1 !important;
  margin-top: 28px;
}
body.vbq .hero a[style*="background:#fff"],
body.vbq section[style*="linear-gradient(135deg"] a[style*="background:#fff"] {
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  font-family: var(--sans);
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 30px !important;
  border-radius: 0 !important;
  text-decoration: none !important;
}
body.vbq .hero a[style*="rgba(255,255,255"],
body.vbq section[style*="linear-gradient(135deg"] a[style*="rgba(255,255,255"] {
  background: transparent !important;
  color: var(--ink) !important;
  border: 2px solid var(--ink) !important;
  font-family: var(--sans);
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 28px !important;
  border-radius: 0 !important;
  text-decoration: none !important;
}

/* ─── Trust badges — 4 columns, thick black dividers ──────────────── */
body.vbq .section > .container > div[style*="grid-template-columns:repeat(3"] {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 0 !important;
  background: var(--bg);
  gap: 0 !important;
}
body.vbq .section > .container > div[style*="grid-template-columns:repeat(3"] > div {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 32px 24px !important;
  border-right: 2px solid var(--ink);
}
body.vbq .section > .container > div[style*="grid-template-columns:repeat(3"] > div:last-child { border-right: none; }
body.vbq .section > .container > div[style*="grid-template-columns:repeat(3"] h3 {
  font-family: var(--display);
  font-size: 22px !important;
  letter-spacing: -0.015em;
  margin-bottom: 6px !important;
  text-transform: none;
}
body.vbq .section > .container > div[style*="grid-template-columns:repeat(3"] p {
  font-family: var(--sans);
  font-size: 14px !important;
  color: var(--ink-soft) !important;
  line-height: 1.45;
}

/* ─── Section heads — thick underline, oversized title ─────────────── */
body.vbq .section { padding: 80px 0; }
body.vbq .section__head {
  border-bottom: 4px solid var(--ink);
  padding-bottom: 18px;
  margin-bottom: 40px;
  align-items: end;
}
body.vbq .section__head h2 {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
body.vbq .section__head a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-decoration: none;
  padding: 8px 14px;
  border: 2px solid var(--accent);
  transition: background 0.12s, color 0.12s;
}
body.vbq .section__head a:hover { background: var(--accent); color: #fff; }

/* ─── Product cards — hard black borders, no radius, no shadow ────── */
body.vbq .prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}
/* ─── Responsive — scale oversized brutalist type down on smaller viewports
       so 112px hero doesn't overflow on mobile + section/banner pad shrinks  */
@media (max-width: 1100px) {
  body.vbq .hero h1,
  body.vbq section[style*="linear-gradient(135deg"] h1 { font-size: 88px !important; }
  body.vbq .section__head h2 { font-size: 48px; }
}
@media (max-width: 900px) {
  body.vbq .prod-grid { grid-template-columns: repeat(2, 1fr) !important; }
  body.vbq .hero,
  body.vbq section[style*="linear-gradient(135deg"] { padding: 64px 0 56px !important; }
  body.vbq .hero h1,
  body.vbq section[style*="linear-gradient(135deg"] h1 { font-size: 64px !important; }
  body.vbq .hero p,
  body.vbq section[style*="linear-gradient(135deg"] p { font-size: 17px !important; }
  body.vbq .section { padding: 56px 0; }
  body.vbq .section__head { padding-bottom: 14px; margin-bottom: 28px; flex-wrap: wrap; gap: 10px; }
  body.vbq .section__head h2 { font-size: 36px; }
  body.vbq .section > .container > div[style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
  body.vbq .section > .container > div[style*="grid-template-columns:repeat(3"] > div { border-right: none; border-bottom: 2px solid var(--ink); }
  body.vbq .section > .container > div[style*="grid-template-columns:repeat(3"] > div:last-child { border-bottom: none; }
  body.vbq .banner__card { padding: 32px 24px !important; }
  body.vbq h1 { font-size: 64px; }
}
@media (max-width: 540px) {
  body.vbq .prod-grid { grid-template-columns: 1fr !important; }
  body.vbq .hero h1,
  body.vbq section[style*="linear-gradient(135deg"] h1 { font-size: 44px !important; letter-spacing: -0.03em !important; }
  body.vbq .hero,
  body.vbq section[style*="linear-gradient(135deg"] { padding: 48px 0 40px !important; }
  body.vbq .hero p,
  body.vbq section[style*="linear-gradient(135deg"] p { font-size: 15px !important; }
  body.vbq .section__head h2 { font-size: 28px; }
  body.vbq h1 { font-size: 44px; }
  body.vbq h2 { font-size: 30px; }
  body.vbq .main-nav { gap: 12px; }
  body.vbq .main-nav a { font-size: 11px; letter-spacing: 0.12em; }
  body.vbq .prod-card__name { font-size: 14px; }
  body.vbq .prod-card__price { font-size: 18px; }
}

body.vbq .prod-card {
  background: var(--bg);
  border: none;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  transition: background 0.12s, color 0.12s;
}
body.vbq .prod-card:hover {
  background: var(--ink);
  box-shadow: none;
  transform: none;
}
body.vbq .prod-card:hover .prod-card__cat,
body.vbq .prod-card:hover .prod-card__name,
body.vbq .prod-card:hover .prod-card__price-label,
body.vbq .prod-card:hover .prod-card__shops { color: #fff !important; }
body.vbq .prod-card:hover .prod-card__price { color: var(--accent) !important; }
body.vbq .prod-card a { display: block; text-decoration: none; }
body.vbq .prod-card__img {
  background: var(--bg-alt);
  border-radius: 0;
  border: none;
  border-bottom: 2px solid var(--ink);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
body.vbq .prod-card__img img { max-height: 200px; object-fit: contain; }
body.vbq .prod-card__body { padding: 18px 20px 20px; }
body.vbq .prod-card__cat {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 8px;
  transition: color 0.12s;
}
body.vbq .prod-card__name {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 14px;
  transition: color 0.12s;
  /* Truncate at 2 lines so long product titles never bleed past the
   * hard card border. Reserve min-height so meta row stays aligned even
   * when a title is just 1 line. */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.5em;
}
body.vbq .prod-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
body.vbq .prod-card__price-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}
body.vbq .prod-card__price {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--accent);
}
body.vbq .prod-card__shops {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
body.vbq .prod-card__shops-badge {
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0;
}

/* Rating badge — keep amber but make it sharp and bold */
body.vbq .prod-card__rating-badge {
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 8px;
  border-radius: 0;
}

/* ─── Footer ─────────────────────────────────────────────────────── */
body.vbq .site-footer {
  background: var(--ink) !important;
  color: #fff !important;
  padding: 64px 0 32px !important;
  margin-top: 96px !important;
  border-top: 6px solid var(--accent);
}
body.vbq .site-footer h4 {
  font-family: var(--display) !important;
  font-size: 15px !important;
  letter-spacing: 0.04em !important;
  color: #fff !important;
}
body.vbq .site-footer ul li a {
  font-family: var(--sans) !important;
  font-size: 14px;
  font-weight: 500;
  color: #d4d4d4 !important;
}
body.vbq .site-footer ul li a:hover { color: var(--accent) !important; text-decoration: underline; }

/* ─── Single product page ────────────────────────────────────────── */
body.vbq .vbq-product h1 {
  font-family: var(--display);
  font-size: 64px;
  letter-spacing: -0.035em;
  font-weight: 900;
}
body.vbq .vbq-product .vbq-offer-table > div:last-child {
  border-radius: 0 !important;
  border: 2px solid var(--ink) !important;
}
body.vbq .vbq-product a[style*="background:#0ea5a4"] {
  background: var(--accent) !important;
  border-radius: 0 !important;
  font-family: var(--sans);
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 24px !important;
}
body.vbq .vbq-product a[style*="background:#0ea5a4"]:hover { background: var(--ink) !important; color: #fff !important; }
