/* CannaVergleich — Design v2 (2026)
   Professional cannabis price comparison, Check24-style
   Light, clean, mobile-first */

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

/* CRITICAL: native [hidden] must win over all display declarations */
[hidden] { display: none !important; }

/* ── Design Tokens ── */
:root {
  --green:       #1e7a46;
  --green-dark:  #155e35;
  --green-mid:   #2a9e5c;
  --green-light: #52b87a;
  --green-pale:  #f0faf5;
  --green-pale2: #ddf0e7;
  --green-glow:  rgba(30,122,70,.12);

  --dark:   #0f1923;
  --text:   #1f2937;
  --text-2: #374151;
  --gray:   #6b7280;
  --gray-2: #9ca3af;

  --bg:         #ffffff;
  --bg-subtle:  #f9fafb;
  --bg-mid:     #f3f4f6;
  --border:     #e5e7eb;
  --border-2:   #d1d5db;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm: 0 1px 6px rgba(0,0,0,.07);
  --shadow:    0 4px 16px rgba(0,0,0,.09);
  --shadow-md: 0 8px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.16);

  --font: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', 'Fira Mono', Consolas, monospace;

  --transition: .18s cubic-bezier(.4,0,.2,1);
}

/* ── Base ── */
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; margin: 0; padding: 0; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { line-height: 1.25; color: var(--dark); font-weight: 700; }
p { color: var(--text-2); }

/* ── Container ── */
.cv-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.cv-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 1px 8px rgba(0,0,0,.05);
}
.cv-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 66px;
}

/* Logo */
.cv-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.cv-logo-img { display: block; height: 38px; width: auto; }
.cv-logo:hover { opacity: .88; }

/* ══ Desktop Mega-Nav ══ */
.cv-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  margin-right: 10px;
}
.cv-nav-item { position: relative; }

.cv-nav-link {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 8px 13px;
  border-radius: var(--radius-xs);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.cv-nav-link:hover,
.cv-nav-item.cv-dd-open > .cv-nav-link { background: var(--green-pale); color: var(--green); }

.cv-nav-chevron {
  opacity: .4;
  transition: transform .2s ease, opacity .2s;
  flex-shrink: 0;
  margin-top: 1px;
}
.cv-nav-item.cv-dd-open > .cv-nav-link .cv-nav-chevron { transform: rotate(180deg); opacity: .75; }

/* Header CTA */
.cv-nav-cta { margin-left: 6px; }
@media (max-width: 1100px) { .cv-nav-cta { display: none !important; } }

/* Dropdown panel */
.cv-dd {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,.13), 0 4px 16px rgba(0,0,0,.06);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .16s ease, transform .16s ease;
  z-index: 600;
  min-width: 260px;
}
.cv-nav-item.cv-dd-open > .cv-dd { opacity: 1; pointer-events: auto; transform: translateY(0); }
.cv-dd-right { left: auto; right: 0; }
.cv-dd-sorten { min-width: 500px; }
.cv-dd-kliniken { min-width: 280px; }
.cv-dd-hersteller { min-width: 280px; }
.cv-dd-blog { min-width: 300px; }

/* Dropdown arrow */
.cv-dd::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 22px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(0,0,0,.09);
  border-top: 1px solid rgba(0,0,0,.09);
  transform: rotate(45deg);
  border-radius: 2px 0 0 0;
}
.cv-dd-right::before { left: auto; right: 22px; }

.cv-dd-inner { display: flex; gap: 0; padding: 20px; }

.cv-dd-col { flex: 1; min-width: 0; }
.cv-dd-inner .cv-dd-col + .cv-dd-col { border-left: 1px solid var(--border); padding-left: 18px; margin-left: 6px; }

.cv-dd-heading {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

/* Category tile grid */
.cv-dd-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-bottom: 10px; }
.cv-dd-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 9px 6px 7px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid transparent;
  transition: background .13s, border-color .13s, transform .13s;
}
.cv-dd-cat:hover { background: var(--bg-subtle); border-color: var(--border); transform: translateY(-2px); color: var(--green); }
.cv-ddc-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cv-ddc-label { font-size: .76rem; font-weight: 600; line-height: 1.2; text-align: center; }

/* Generic dropdown row */
.cv-dd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 7px;
  text-decoration: none;
  color: var(--text);
  font-size: .84rem;
  transition: background .12s;
  margin-bottom: 1px;
}
.cv-dd-row:hover { background: var(--bg-subtle); }
.cv-dd-row-name { font-weight: 500; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cv-dd-row-price { font-weight: 700; color: var(--green); font-size: .79rem; white-space: nowrap; flex-shrink: 0; }

/* Post rows */
.cv-dd-post {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 7px;
  text-decoration: none;
  color: var(--text);
  font-size: .84rem;
  font-weight: 500;
  line-height: 1.35;
  transition: background .12s;
  margin-bottom: 1px;
}
.cv-dd-post:hover { background: var(--bg-subtle); color: var(--green); }
.cv-dd-post img { border-radius: 6px; object-fit: cover; flex-shrink: 0; margin-top: 1px; }
.cv-dd-post-ph { width: 52px; height: 36px; background: var(--bg-mid); border-radius: 6px; flex-shrink: 0; }

/* "All" link in dropdowns */
.cv-dd-all {
  display: block;
  padding: 6px 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  border-radius: 6px;
  transition: background .12s, color .12s;
  margin-top: 6px;
}
.cv-dd-all:hover { background: var(--green-pale); color: var(--green-dark); }

/* Responsive */
@media (max-width: 920px) { .cv-nav { display: none; } }
@media (min-width: 921px) { .cv-menu-toggle { display: none; } }
@media (max-width: 920px) { .cv-header-right { margin-left: auto; } }

/* Header Right */
.cv-header-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Search Bar */
.cv-search-form {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-subtle);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.cv-search-form:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
  background: var(--bg);
}
.cv-search-form input {
  border: none;
  outline: none;
  padding: 8px 14px;
  font-size: .875rem;
  width: 185px;
  background: transparent;
  color: var(--text);
}
.cv-search-form input::placeholder { color: var(--gray-2); }
.cv-search-form button {
  background: var(--green);
  border: none;
  color: #fff;
  padding: 9px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.cv-search-form button:hover { background: var(--green-dark); }

/* Hamburger */
.cv-menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius-xs);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 10px 12px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.cv-menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Mobile Nav Drawer ── */
.cv-mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: 88vw;
  max-width: 380px;
  height: 100dvh;
  background: #fff;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,.18);
  overflow: hidden;
}
.cv-mobile-nav.cv-mnav-open { transform: translateX(0); }
.cv-mnav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cv-mnav-backdrop.cv-mnav-open { opacity: 1; pointer-events: auto; }
body.cv-nav-open { overflow: hidden; }

/* Drawer header */
.cv-mnav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cv-mnav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -.02em;
}
.cv-mnav-logo strong { color: var(--green); }
.cv-mnav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border-2);
  border-radius: 50%;
  background: var(--bg-subtle);
  cursor: pointer;
  color: var(--text-2);
  transition: background var(--transition);
  flex-shrink: 0;
}
.cv-mnav-close:hover { background: var(--bg-mid); }

/* Drawer search */
.cv-mnav-search {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cv-mnav-search form {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 10px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.cv-mnav-search form:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
  background: #fff;
}
.cv-mnav-search input {
  border: none;
  outline: none;
  background: transparent;
  font-size: .95rem;
  color: var(--text);
  flex: 1;
  min-width: 0;
}
.cv-mnav-search input::placeholder { color: var(--gray-2); }

/* Drawer body + sections */
.cv-mnav-body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 0 0 24px; }
.cv-mnav-section-label {
  padding: 18px 20px 8px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-2);
}

/* Category list */
.cv-mnav-list { display: flex; flex-direction: column; }
.cv-mnav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 20px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: background var(--transition);
}
.cv-mnav-item:last-child { border-bottom: none; }
.cv-mnav-item:active { background: var(--bg-subtle); }
.cv-mnav-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.cv-mnav-thumb { padding: 0; background: var(--bg-mid); }
.cv-mnav-thumb img { width: 42px; height: 42px; object-fit: cover; display: block; border-radius: 0; }
.cv-mnav-item-info { flex: 1; min-width: 0; }
.cv-mnav-item-info strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.cv-mnav-item-info span {
  font-size: .78rem;
  color: var(--gray-2);
  display: block;
  margin-top: 1px;
}
.cv-mnav-arrow { flex-shrink: 0; }

/* Tools section */
.cv-mnav-tools {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 20px 4px;
}
.cv-mnav-tool-btn {
  display: block;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition);
}
.cv-mnav-tool-outline {
  border: 1.5px solid var(--border-2);
  color: var(--text);
  background: #fff;
}
.cv-mnav-tool-outline:hover { border-color: var(--green); color: var(--green); }
.cv-mnav-tool-dark {
  background: var(--dark);
  color: #fff;
  border: none;
}
.cv-mnav-tool-dark:hover { background: #1a2a38; color: #fff; }

/* Body scroll lock */
body.cv-nav-open { overflow: hidden; }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.cv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.cv-btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 2px 8px rgba(30,122,70,.25);
}
.cv-btn-primary:hover {
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(30,122,70,.35);
  transform: translateY(-1px);
}
.cv-btn-outline {
  border-color: var(--green);
  color: var(--green);
  background: transparent;
}
.cv-btn-outline:hover { background: var(--green); color: #fff; }
.cv-btn-ghost {
  border-color: var(--border-2);
  color: var(--gray);
  background: var(--bg);
}
.cv-btn-ghost:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }
.cv-btn-sm { padding: 7px 15px; font-size: .82rem; }
.cv-btn-lg { padding: 14px 30px; font-size: 1rem; }

/* ══════════════════════════════════════════
   BADGES
══════════════════════════════════════════ */
.cv-badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: var(--radius-xs);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.badge-indica  { background: #6d28d9; color: #fff; }
.badge-sativa  { background: #d97706; color: #fff; }
.badge-hybrid  { background: #0284c7; color: #fff; }
.badge-other   { background: var(--gray); color: #fff; }
.cv-badge-recommended { background: var(--green); color: #fff; font-size: .66rem; padding: 2px 7px; border-radius: 4px; margin-right: 6px; }
.cv-badge-best { background: linear-gradient(90deg,#f59e0b,#fb923c); color: #fff; font-size: .65rem; font-weight: 700; padding: 3px 8px; border-radius: 6px; margin-right: 6px; letter-spacing: .04em; text-transform: uppercase; }
.cv-badge-cheap { position: absolute; top: 8px; left: 8px; background: #16a34a; color: #fff; font-size: .65rem; font-weight: 700; padding: 3px 7px; border-radius: 4px; z-index: 1; }
.cv-price-save { font-size: .72rem; font-weight: 700; color: #16a34a; margin-left: 4px; }
.cv-save-badge { background: #dcfce7; color: #166534; font-size: .72rem; font-weight: 700; padding: 2px 6px; border-radius: 4px; white-space: nowrap; }
.cv-save-max { font-size: .72rem; color: var(--gray-2); }
.cv-col-save { white-space: nowrap; }

/* Similar products */
.cv-similar-section { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.cv-similar-section h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.cv-similar-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) { .cv-similar-grid { grid-template-columns: repeat(2, 1fr); } }

/* ══════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════ */
.cv-breadcrumb { padding: 7px 0; }
.cv-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  font-size: .77rem;
  color: var(--gray);
}
.cv-breadcrumb li { display: flex; align-items: center; white-space: nowrap; }
.cv-breadcrumb li:last-child { white-space: normal; color: var(--text-2); font-weight: 500; }
.cv-breadcrumb li:not(:last-child)::after { content: '/'; margin: 0 6px; opacity: .35; }
.cv-breadcrumb a { color: var(--gray); }
.cv-breadcrumb a:hover { color: var(--green); }

/* ══════════════════════════════════════════
   HERO (Homepage)
══════════════════════════════════════════ */
.cv-hero {
  background: linear-gradient(150deg, #0d2218 0%, #1a3d27 40%, #1e7a46 100%);
  color: #fff;
  padding: 80px 0 68px;
  position: relative;
  overflow: hidden;
}
.cv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cv-hero .cv-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}
.cv-hero-content h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.18;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -.03em;
}
.cv-hero-content h1 span { color: #6ee7a0; }
.cv-hero-sub {
  font-size: 1.1rem;
  opacity: .8;
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.6;
  color: rgba(255,255,255,.8);
}
.cv-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cv-hero-actions .cv-btn-primary {
  background: #fff;
  color: var(--green-dark);
  font-size: .95rem;
}
.cv-hero-actions .cv-btn-primary:hover { background: var(--green-pale); box-shadow: 0 4px 16px rgba(255,255,255,.3); }
.cv-hero-actions .cv-btn-outline {
  border-color: rgba(255,255,255,.4);
  color: #fff;
  background: rgba(255,255,255,.08);
}
.cv-hero-actions .cv-btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.7);
}

.cv-hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.cv-stat { text-align: center; }
.cv-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #6ee7a0;
  line-height: 1;
  letter-spacing: -.04em;
}
.cv-stat span { font-size: .8rem; opacity: .65; margin-top: 4px; display: block; }

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.cv-section { padding: 72px 0; }
.cv-section-light { background: var(--bg-subtle); }
.cv-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 36px;
}
.cv-section-head h2 { font-size: 1.75rem; letter-spacing: -.02em; }
.cv-section-head p { color: var(--gray); margin-top: 6px; font-size: .9rem; }
.cv-link-all { color: var(--green); font-weight: 600; font-size: .875rem; white-space: nowrap; }
.cv-link-all:hover { color: var(--green-dark); text-decoration: underline; }
.cv-section-cta { text-align: center; margin-top: 28px; }
.cv-section-cta a { font-weight: 600; color: var(--green); font-size: .95rem; }

/* ══════════════════════════════════════════
   CLINIC TABLE
══════════════════════════════════════════ */
.cv-clinic-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.cv-clinic-table { width: 100%; border-collapse: collapse; }
.cv-clinic-table thead th {
  background: var(--bg-subtle);
  padding: 12px 16px;
  text-align: left;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1.5px solid var(--border);
}
.cv-clinic-table tbody tr { border-bottom: 1px solid var(--border); transition: background var(--transition); }
.cv-clinic-table tbody tr:last-child { border-bottom: none; }
.cv-clinic-table tbody tr:hover { background: var(--green-pale); }
.cv-clinic-table tbody tr.cv-clinic-top { background: #fef9c3; }
.cv-clinic-table tbody tr.cv-clinic-best { background: #f0fdf4; border-left: 3px solid var(--green); }
.cv-clinic-table td { padding: 14px 16px; font-size: .9rem; }
.cv-clinic-rank { font-weight: 700; color: var(--gray-2); width: 36px; }
.cv-clinic-price { font-size: 1rem; }
.cv-clinic-count { color: var(--gray); }

/* ══════════════════════════════════════════
   PRODUCT GRID & CARDS
══════════════════════════════════════════ */
.cv-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.cv-product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
}
.cv-product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--green-pale2);
}
.cv-product-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-mid);
}
.cv-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cv-product-card:hover .cv-product-img img { transform: scale(1.06); }
.cv-product-img .cv-badge { position: absolute; top: 9px; left: 9px; box-shadow: var(--shadow-xs); }
.cv-product-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8f5ed 0%, #d1ead9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cv-product-img-placeholder::after {
  content: '';
  width: 48px;
  height: 48px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M16 4s-9 6-9 13a9 9 0 0018 0C25 10 16 4 16 4z' fill='%231e7a46' opacity='.25'/%3E%3C/svg%3E") no-repeat center/contain;
  opacity: .4;
}
.cv-product-info { padding: 13px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
.cv-product-info h3 { font-size: .875rem; font-weight: 600; line-height: 1.35; color: var(--dark); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cv-product-attrs { display: flex; gap: 5px; flex-wrap: wrap; }
.cv-attr-thc, .cv-attr-cbd {
  font-size: .72rem;
  padding: 2px 7px;
  border-radius: var(--radius-xs);
  font-weight: 700;
}
.cv-attr-thc { background: #fef3c7; color: #92400e; }
.cv-attr-cbd { background: #d1fae5; color: #065f46; }
.cv-product-price { margin-top: auto; font-size: .875rem; color: var(--gray); padding-top: 6px; }
.cv-product-price strong { color: var(--green); font-size: 1rem; font-weight: 700; }

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.cv-section-how { background: var(--green); color: #fff; text-align: center; }
.cv-section-how h2 { color: #fff; margin-bottom: 44px; font-size: 1.75rem; }
.cv-how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 36px; }
.cv-how-step { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cv-how-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cv-how-step h3 { font-size: 1.05rem; color: #fff; }
.cv-how-step p { opacity: .8; font-size: .875rem; line-height: 1.6; color: rgba(255,255,255,.8); }

/* ══════════════════════════════════════════
   BLOG LISTING
══════════════════════════════════════════ */
.cv-blog-listing { padding: 40px 0; }
.cv-blog-listing-head { margin-bottom: 28px; }
.cv-blog-listing-head h1 { font-size: 2rem; letter-spacing: -.03em; margin-bottom: 8px; }
.cv-blog-listing-head p { color: var(--gray); }
.cv-blog-cats-wrap { position: relative; margin-bottom: 36px; }
.cv-blog-cats { display: flex; flex-wrap: wrap; gap: 8px; }
.cv-blog-img-placeholder { aspect-ratio: 16/9; background: var(--bg-mid); }
.cv-blog-info h2 { font-size: 1rem; line-height: 1.4; font-weight: 600; }

.cv-blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cv-blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
  transition: box-shadow var(--transition), transform var(--transition);
  color: var(--text);
  display: block;
}
.cv-blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cv-blog-img { aspect-ratio: 16/9; overflow: hidden; }
.cv-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cv-blog-card:hover .cv-blog-img img { transform: scale(1.05); }
.cv-blog-info { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.cv-blog-cat { font-size: .7rem; font-weight: 800; text-transform: uppercase; color: var(--green); letter-spacing: .08em; }
.cv-blog-info h3, .cv-blog-info h2 { font-size: 1rem; line-height: 1.45; font-weight: 600; color: var(--dark); }
.cv-blog-info p { font-size: .85rem; color: var(--gray); line-height: 1.5; }
.cv-blog-date { font-size: .78rem; color: var(--gray-2); }

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.cv-trust-bar { background: var(--dark); color: #fff; padding: 20px 0; }
.cv-trust-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; }
.cv-trust-item { font-size: .875rem; opacity: .8; }
.cv-trust-item strong { color: #6ee7a0; margin-right: 5px; }

/* ══════════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════════ */
.cv-product-page { padding: 24px 0 72px; }
.cv-product-hero {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 52px;
  align-items: start;
  margin: 32px 0 52px;
}
.cv-product-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-subtle);
}
.cv-product-hero-img img { width: 100%; filter: drop-shadow(0 8px 24px rgba(0,0,0,.10)); }
.cv-product-hero-info { display: flex; flex-direction: column; gap: 18px; }
.cv-product-hero-info h1 { font-size: 1.9rem; letter-spacing: -.03em; }
.cv-product-hersteller { color: var(--gray); font-size: .9rem; }
.cv-product-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.cv-chip {
  background: var(--bg-subtle);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  text-align: center;
  min-width: 88px;
  transition: transform .15s, box-shadow .15s;
}
.cv-chip:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.cv-chip-thc { background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%); border-color: #fde68a; }
.cv-chip-cbd { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); border-color: var(--green-pale2); }
.cv-chip-label { font-size: .68rem; text-transform: uppercase; color: var(--gray); display: block; letter-spacing: .06em; font-weight: 700; }
.cv-chip-info { opacity: .5; font-size: .6rem; }
.cv-chip-val { font-size: 1.3rem; font-weight: 800; display: block; margin-top: 3px; }
.cv-chip-thc .cv-chip-val { color: #92400e; }
.cv-chip-cbd .cv-chip-val { color: #065f46; }

.cv-price-summary {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1.5px solid var(--green-pale2);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(30,122,70,.08);
}
.cv-price-main { font-size: 1.1rem; color: var(--gray); line-height: 1; }
.cv-price-main strong { color: var(--green); font-size: 2.4rem; font-weight: 800; letter-spacing: -.05em; }
.cv-price-range { font-size: .85rem; color: var(--gray); margin-top: 8px; }
.cv-price-note { font-size: .78rem; color: var(--gray-2); margin-top: 12px; border-top: 1px solid var(--green-pale2); padding-top: 10px; }

.cv-preise-section { margin: 48px 0; }
.cv-preise-section h2 { font-size: 1.45rem; margin-bottom: 6px; letter-spacing: -.02em; }
.cv-preise-intro { color: var(--gray); margin-bottom: 10px; font-size: .9rem; }
.cv-preise-section .cv-clinic-table-wrap { margin-top: 6px; }
.cv-clinic-table-product .cv-clinic-price-col strong { color: var(--green); font-size: 1rem; font-weight: 700; }
.cv-avail { font-size: .82rem; }
.cv-avail-yes { color: var(--green-mid); font-weight: 600; }

.cv-chart-section { margin: 52px 0; }
.cv-chart-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-xs);
}

.cv-product-description { margin: 52px 0; }
.cv-product-description h2 { font-size: 1.45rem; margin-bottom: 18px; letter-spacing: -.02em; }

/* ── FAQ ── */
.cv-faq-section { margin: 52px 0; }
.cv-faq-section h2 { font-size: 1.45rem; margin-bottom: 24px; letter-spacing: -.02em; }
.cv-faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-xs); }
.cv-faq-item { border-bottom: 1px solid var(--border); background: var(--bg); transition: background var(--transition); }
.cv-faq-item:last-child { border-bottom: none; }
.cv-faq-item[open] { background: var(--green-pale); }
.cv-faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  gap: 16px;
}
.cv-faq-item summary::-webkit-details-marker { display: none; }
.cv-faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--green);
  flex-shrink: 0;
  font-weight: 700;
  line-height: 1;
}
.cv-faq-item[open] summary::after { content: '−'; }
.cv-faq-item p { padding: 0 22px 18px; color: var(--gray); font-size: .9rem; line-height: 1.7; }
/* Static FAQ (non-details) */
.cv-faq-q { font-size: 1rem; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.cv-faq-a { font-size: .9rem; color: var(--gray); line-height: 1.7; }
.cv-faq-item:not(details) { padding: 18px 22px; }

/* Rezept Box */
.cv-rezept-box {
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 52px 0;
  overflow: hidden;
}
.cv-rezept-img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
@media (max-width: 640px) {
  .cv-rezept-box { flex-direction: column; }
  .cv-rezept-img { width: 100%; height: 160px; }
}
.cv-rezept-icon { font-size: 2rem; flex-shrink: 0; }
.cv-rezept-box h3 { margin-bottom: 8px; font-size: 1.1rem; }
.cv-rezept-box p { color: var(--gray); margin-bottom: 0; font-size: .9rem; line-height: 1.65; }

/* ══════════════════════════════════════════
   SINGLE POST / BLOG
══════════════════════════════════════════ */
.cv-single { padding-top: 24px; padding-bottom: 72px; }
.cv-single-layout { display: grid; grid-template-columns: 1fr 280px; gap: 52px; margin-top: 32px; }
.cv-post-cats { display: flex; gap: 8px; flex-wrap: wrap; }
.cv-cat-badge {
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 3px 10px;
  border-radius: var(--radius-xs);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.cv-single-main h1 { font-size: 1.9rem; margin: 14px 0; letter-spacing: -.03em; }
.cv-post-meta { color: var(--gray); font-size: .85rem; }
.cv-single-hero-img { border-radius: var(--radius-sm); overflow: hidden; margin: 24px 0; box-shadow: var(--shadow-sm); }
.cv-post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); }
.cv-tag {
  background: var(--bg-subtle);
  color: var(--gray);
  border: 1px solid var(--border);
  padding: 4px 11px;
  border-radius: var(--radius-xl);
  font-size: .78rem;
}

/* Sidebar */
.cv-sidebar-widget {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 20px;
}
.cv-sidebar-widget h3 { font-size: 1rem; margin-bottom: 10px; }
.cv-sidebar-widget p { font-size: .85rem; color: var(--gray); margin-bottom: 14px; line-height: 1.6; }
.cv-sidebar-cta { background: var(--green-pale); border: 1px solid var(--green-pale2); }
.cv-sidebar-clinic-list { list-style: none; }
.cv-sidebar-clinic-list li + li { border-top: 1px solid var(--border); }
.cv-sidebar-clinic-list a { display: block; padding: 9px 0; font-size: .875rem; color: var(--text); }
.cv-sidebar-clinic-list a:hover { color: var(--green); }

/* ── Content Typography ── */
.cv-content h2 { font-size: 1.45rem; margin: 36px 0 14px; letter-spacing: -.02em; }
.cv-content h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.cv-content p { margin-bottom: 18px; line-height: 1.8; color: var(--text-2); }
.cv-content ul, .cv-content ol { margin: 0 0 18px 26px; }
.cv-content li { margin-bottom: 7px; line-height: 1.7; }
.cv-content a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.cv-content strong { font-weight: 700; }
.cv-content blockquote {
  border-left: 4px solid var(--green);
  padding: 14px 22px;
  background: var(--green-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
}
.cv-content table { width: 100%; border-collapse: collapse; margin: 26px 0; font-size: .9rem; }
.cv-content th {
  background: var(--bg-mid);
  padding: 11px 15px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--gray);
}
.cv-content td { padding: 11px 15px; border-bottom: 1px solid var(--border); }

/* ══════════════════════════════════════════
   TELEKLINIK PAGE
══════════════════════════════════════════ */
.cv-teleklinik-page { padding: 24px 0 72px; }
.cv-clinic-header {
  background: linear-gradient(150deg, #0d2218 0%, #1e7a46 100%);
  color: #fff;
  padding: 52px 44px;
  margin: 0 0 52px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.cv-clinic-header-info h1 { font-size: 1.8rem; margin-bottom: 8px; color: #fff; }
.cv-clinic-sub { opacity: .75; font-size: .95rem; }
.cv-clinic-price-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  margin-top: 18px;
  font-size: 1.05rem;
  backdrop-filter: blur(4px);
}
.cv-clinic-price-badge strong { font-size: 1.5rem; }

.cv-clinic-services-section, .cv-clinic-products-section, .cv-clinic-faq, .cv-clinic-content { margin: 52px 0; }
.cv-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.cv-service-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
}
.cv-service-label { font-size: .78rem; color: var(--gray); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.cv-service-price strong { font-size: 1.3rem; color: var(--green); font-weight: 800; }

.cv-product-table { font-size: .88rem; }
.cv-table-more { text-align: center; color: var(--gray); margin-top: 14px; font-size: .85rem; }

.cv-clinic-cta-box {
  background: var(--green-pale);
  border: 1.5px solid var(--green-pale2);
  border-radius: var(--radius-sm);
  padding: 36px;
  text-align: center;
  margin: 52px 0;
}
.cv-clinic-cta-box h3 { font-size: 1.35rem; margin-bottom: 10px; }
.cv-clinic-cta-box p { color: var(--gray); margin-bottom: 22px; }

/* ══════════════════════════════════════════
   ARCHIVE / CATEGORY
══════════════════════════════════════════ */
.cv-archive { padding-top: 24px; padding-bottom: 72px; }
.cv-archive-head { margin: 24px 0 36px; }
.cv-archive-head h1 { font-size: 1.8rem; letter-spacing: -.03em; }
.cv-archive-intro { color: var(--gray); font-size: .95rem; margin-top: 12px; max-width: 720px; line-height: 1.75; }
.cv-archive-count { color: var(--gray-2); font-size: .875rem; margin: 0; }
.cv-archive-meta-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 8px 0 28px; flex-wrap: wrap; }
.cv-archive-sort { display: flex; gap: 6px; }
/* Category hero banner */
.cv-archive-hero { position: relative; border-radius: 16px; overflow: hidden; margin: 16px 0 24px; }
.cv-archive-hero img { width: 100%; height: 320px; object-fit: cover; display: block; }
.cv-archive-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.62) 0%, rgba(0,0,0,.25) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: center; padding: 32px 40px; }
.cv-archive-hero-overlay h1 { color: #fff; font-size: 2rem; letter-spacing: -.03em; margin: 0 0 10px; text-shadow: 0 1px 4px rgba(0,0,0,.3); }
.cv-archive-hero-overlay p { color: rgba(255,255,255,.88); font-size: .95rem; max-width: 560px; line-height: 1.7; margin: 0; }
.cv-archive-excerpt { font-size: .85rem; color: var(--gray); }
.cv-empty { text-align: center; color: var(--gray); padding: 56px; }

/* ══════════════════════════════════════════
   404
══════════════════════════════════════════ */
.cv-404 { padding: 88px 0; text-align: center; }
.cv-404-icon { font-size: 4rem; margin-bottom: 28px; }
.cv-404 h1 { font-size: 2.2rem; margin-bottom: 18px; letter-spacing: -.03em; }
.cv-404 p { color: var(--gray); margin-bottom: 36px; }
.cv-404-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.cv-footer {
  background: #0a1610;
  color: rgba(255,255,255,.65);
  padding: 64px 0 36px;
}
.cv-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.cv-footer-brand .cv-logo { color: #fff; margin-bottom: 14px; }
.cv-footer-brand .cv-logo-text { color: rgba(255,255,255,.85); }
.cv-footer-brand .cv-logo-text strong { color: #6ee7a0; }
.cv-footer-brand p { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.75); }
.cv-footer h4 {
  color: rgba(255,255,255,.9);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
  font-weight: 700;
}
.cv-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cv-footer a { color: rgba(255,255,255,.75); font-size: .85rem; transition: color var(--transition); }
.cv-footer a:hover { color: #6ee7a0; }
.cv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.cv-footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.7); }
.cv-footer-disclaimer { color: rgba(255,255,255,.5); }

/* ══════════════════════════════════════════
   MISC
══════════════════════════════════════════ */
.cv-muted { color: var(--gray); }

/* ══════════════════════════════════════════
   SEARCH PAGE
══════════════════════════════════════════ */
.cv-search-page { padding: 36px 0 72px; }
.cv-search-header { margin-bottom: 36px; }
.cv-search-header h1 { font-size: 1.9rem; letter-spacing: -.03em; margin-bottom: 22px; }
.cv-search-form-page { display: flex; gap: 10px; max-width: 600px; }
.cv-search-form-page input {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text);
}
.cv-search-form-page input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-glow); }
.cv-search-count { color: var(--gray); margin-bottom: 22px; font-size: .9rem; }
.cv-search-results { display: flex; flex-direction: column; gap: 8px; }
.cv-search-result {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: box-shadow var(--transition), border-color var(--transition);
  color: var(--text);
}
.cv-search-result:hover { box-shadow: var(--shadow-sm); border-color: var(--green-pale2); }
.cv-search-icon { font-size: 1.4rem; }
.cv-search-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.cv-search-type { font-size: .7rem; text-transform: uppercase; color: var(--green); font-weight: 800; letter-spacing: .07em; }
.cv-search-info strong { font-size: .95rem; color: var(--dark); }
.cv-search-arrow { color: var(--gray-2); }
.cv-search-hint { color: var(--gray); font-style: italic; }

/* ══════════════════════════════════════════
   COMPARE
══════════════════════════════════════════ */
.cv-compare-page { padding: 36px 0 72px; }
.cv-compare-page h1 { font-size: 1.9rem; margin-bottom: 36px; letter-spacing: -.03em; }
.cv-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.cv-compare-col {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 26px;
  box-shadow: var(--shadow-xs);
}
.cv-compare-img { aspect-ratio: 1; max-width: 200px; margin: 0 auto 18px; overflow: hidden; border-radius: var(--radius-sm); }
.cv-compare-img img { width: 100%; height: 100%; object-fit: cover; }
.cv-compare-col h2 { font-size: 1.25rem; margin: 12px 0 10px; }
.cv-compare-attrs { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: .9rem; }
.cv-compare-attrs th { text-align: left; color: var(--gray); padding: 7px 0; width: 110px; font-weight: 500; }
.cv-compare-attrs td { padding: 7px 0; border-bottom: 1px solid var(--border); }
.cv-compare-prices { margin-top: 18px; }
.cv-compare-prices h3 { font-size: .9rem; color: var(--gray); margin-bottom: 10px; font-weight: 600; }
.cv-compare-price-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.cv-compare-price-row.cv-best { color: var(--green); font-weight: 700; }

/* ══════════════════════════════════════════
   HERSTELLER
══════════════════════════════════════════ */
.cv-hersteller-listing { padding: 40px 0; }
.cv-listing-head { margin-bottom: 36px; }
.cv-listing-head h1 { font-size: 2rem; letter-spacing: -.03em; margin-bottom: 10px; }
.cv-listing-head p { color: var(--gray); }
.cv-hersteller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.cv-hersteller-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--text);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.cv-hersteller-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--green-pale2);
  transform: translateY(-2px);
}
.cv-hersteller-card-name { font-weight: 700; font-size: .95rem; color: var(--dark); }
.cv-hersteller-card-count { font-size: .78rem; color: var(--gray); }

/* Hersteller Stats */
.cv-hersteller-page { padding: 24px 0 72px; }
.cv-hersteller-header { margin: 24px 0 44px; }
.cv-hersteller-header h1 { font-size: 1.9rem; letter-spacing: -.03em; margin-bottom: 18px; }
.cv-hersteller-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.cv-stat-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 26px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.cv-stat-box strong { display: block; font-size: 1.6rem; color: var(--green); font-weight: 800; letter-spacing: -.03em; }
.cv-stat-box span { font-size: .78rem; color: var(--gray); margin-top: 4px; display: block; }

/* ══════════════════════════════════════════
   SHOP
══════════════════════════════════════════ */
.cv-shop-page { padding: 24px 0 72px; }
.cv-shop-header { margin-bottom: 28px; }
.cv-shop-header h1 { font-size: 1.9rem; letter-spacing: -.03em; }
.cv-shop-intro { color: var(--gray); font-size: .95rem; margin: 10px 0 5px; }
.cv-shop-count { color: var(--gray-2); margin-top: 5px; font-size: .875rem; }
.cv-shop-filters {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  margin-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.cv-filter-form { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; width: 100%; }
.cv-filter-group { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cv-filter-group label { font-size: .75rem; font-weight: 800; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.cv-filter-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.cv-pill {
  padding: 6px 15px;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-2);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-2);
  background: var(--bg);
  transition: all var(--transition);
  cursor: pointer;
}
.cv-pill:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }
.cv-pill-active { background: var(--green) !important; color: #fff !important; border-color: var(--green) !important; }
.cv-filter-sort { margin-left: auto; }
.cv-select {
  padding: 8px 14px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius-xs);
  font-size: .875rem;
  background: var(--bg);
  cursor: pointer;
  color: var(--text);
}
.cv-select:focus { outline: none; border-color: var(--green); }
.cv-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
}
.cv-page-info { color: var(--gray); font-size: .9rem; }
.cv-product-grid-shop { grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); }

/* ══════════════════════════════════════════
   GLOSSAR
══════════════════════════════════════════ */
.cv-glossar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 26px; }
.cv-glossar-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  border-left: 4px solid var(--green);
}
.cv-glossar-item h3 { font-size: 1rem; margin-bottom: 7px; color: var(--green-dark); }
.cv-glossar-item p { font-size: .875rem; color: var(--gray); line-height: 1.6; }

/* ══════════════════════════════════════════
   QUIZ
══════════════════════════════════════════ */
.cv-quiz-wrap { max-width: 640px; margin: 0 auto; padding: 28px 0; }
.cv-quiz-intro { color: var(--gray); margin-bottom: 36px; font-size: 1.05rem; }
.cv-quiz-step h2 { font-size: 1.35rem; margin-bottom: 22px; }
.cv-quiz-options { display: flex; flex-direction: column; gap: 10px; }
.cv-quiz-btn {
  padding: 15px 22px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text);
  font-family: var(--font);
}
.cv-quiz-btn:hover { border-color: var(--green); background: var(--green-pale); color: var(--green-dark); }
.cv-quiz-result {
  text-align: center;
  padding: 36px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--green-pale2);
}
.cv-quiz-result h2 { margin-bottom: 14px; }
.cv-quiz-result p { color: var(--gray); margin-bottom: 22px; }

/* ══════════════════════════════════════════
   TELEKLINIK SCORES
══════════════════════════════════════════ */
.cv-tk-scores-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 26px; }
.cv-tk-score-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg);
}
.cv-tk-score-card.cv-tk-top { border-color: var(--green-pale2); background: var(--green-pale); }
.cv-tk-rank { font-size: .72rem; color: var(--gray); font-weight: 700; text-transform: uppercase; }
.cv-tk-name { font-size: .95rem; font-weight: 600; color: var(--dark); }
.cv-tk-price { font-size: .88rem; color: var(--gray); }
.cv-tk-price strong { color: var(--green); font-weight: 700; }
.cv-tk-count { font-size: .8rem; color: var(--gray-2); }

/* ══════════════════════════════════════════
   HERSTELLER DETAIL
══════════════════════════════════════════ */
.cv-hersteller-intro { color: var(--gray); margin: 14px 0 22px; font-size: .95rem; line-height: 1.75; max-width: 680px; }
.cv-hersteller-cta-box {
  margin: 52px 0 28px;
  padding: 30px 36px;
  background: var(--green-pale);
  border: 1.5px solid var(--green-pale2);
  border-radius: var(--radius-sm);
}
.cv-hersteller-cta-box h3 { font-size: 1.2rem; margin-bottom: 10px; }
.cv-hersteller-cta-box p { font-size: .9rem; color: var(--gray); margin-bottom: 18px; line-height: 1.65; }
.cv-hersteller-cta-links { display: flex; gap: 12px; flex-wrap: wrap; }
.cv-hersteller-clinic-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }

/* Clinic + Hersteller pills */
.cv-clinic-pill {
  display: inline-block;
  padding: 6px 15px;
  border: 1.5px solid var(--green-pale2);
  border-radius: var(--radius-xl);
  font-size: .82rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-pale);
  transition: all var(--transition);
}
.cv-clinic-pill:hover { background: var(--green); color: #fff; border-color: var(--green); }

.cv-clinic-hersteller-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 0 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.cv-clinic-hersteller-label {
  font-size: .75rem;
  font-weight: 800;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}

/* Related Products */
.cv-related-section { margin: 52px 0; }
.cv-related-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.cv-related-head h2 { font-size: 1.35rem; margin: 0; letter-spacing: -.02em; }
.cv-related-grid { grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); }

/* ══════════════════════════════════════════
   PILLS / TAGS (global)
══════════════════════════════════════════ */
.cv-pill-indica  { border-color: #ddd6fe; color: #5b21b6; background: #f5f3ff; }
.cv-pill-sativa  { border-color: #fde68a; color: #92400e; background: #fffbeb; }
.cv-pill-hybrid  { border-color: #bae6fd; color: #0369a1; background: #f0f9ff; }
.cv-pill-indica.cv-pill-active  { background: #6d28d9; border-color: #6d28d9; color: #fff; }
.cv-pill-sativa.cv-pill-active  { background: #d97706; border-color: #d97706; color: #fff; }
.cv-pill-hybrid.cv-pill-active  { background: #0284c7; border-color: #0284c7; color: #fff; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cv-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .cv-footer-brand { grid-column: 1 / -1; }
  .cv-product-hero { grid-template-columns: 280px 1fr; gap: 36px; }
  .cv-product-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .cv-product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 768px) {
  .cv-container { padding: 0 16px; }
  .cv-nav { display: none; }
  .cv-search-form { display: none; }
  .cv-menu-toggle { display: flex; }

  /* Hero */
  .cv-hero { padding: 40px 0 36px; }
  .cv-hero-stats { gap: 24px; }
  .cv-hero-content h1 { font-size: 1.65rem; }
  .cv-hero-sub { font-size: .95rem; }
  .cv-hero-actions { flex-direction: column; }
  .cv-hero-actions .cv-btn { width: 100%; justify-content: center; }

  /* Product page — Shopify-style vertical stack */
  .cv-product-hero { display: flex; flex-direction: column; gap: 0; margin: 12px 0 28px; }
  .cv-product-hero-img {
    width: 220px; min-width: unset; max-width: 220px;
    margin: 0 auto 24px;
    border-radius: 24px;
    background: var(--bg-subtle);
    padding: 0;
    border: none;
    box-shadow: none;
  }
  .cv-product-hero-img img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 12px 28px rgba(0,0,0,.12)); }
  .cv-product-hero-info { flex: unset; min-width: unset; overflow: visible; }
  .cv-product-hero-info h1 { font-size: 1.5rem; letter-spacing: -.03em; line-height: 1.25; }
  .cv-product-page { padding-top: 8px; }
  .cv-product-chips { gap: 10px; }
  .cv-chip { min-width: 80px; padding: 10px 16px; }
  .cv-price-summary { border-radius: var(--radius); }
  .cv-price-main strong { font-size: 2.1rem; }
  .cv-btn.cv-btn-lg { width: 100%; justify-content: center; }
  .cv-clinic-table th:nth-child(3),
  .cv-clinic-table td:nth-child(3) { display: none; }

  /* Single post */
  .cv-single-layout { grid-template-columns: 1fr; }
  .cv-single-sidebar { display: none; }

  /* Archive / hersteller */
  .cv-archive-hero img { height: 220px; }
  .cv-archive-hero-overlay { padding: 20px 24px; }
  .cv-archive-hero-overlay h1 { font-size: 1.4rem; }
  .cv-archive-hero-overlay p { font-size: .85rem; }
  .cv-archive-head h1 { font-size: 1.5rem; }
  .cv-hersteller-header h1 { font-size: 1.5rem; }
  .cv-hersteller-cta-links { display: flex; flex-direction: column; gap: 10px; }
  .cv-hersteller-cta-links .cv-btn { width: 100%; justify-content: center; }
  .cv-hersteller-stats { gap: 10px; }
  .cv-stat-box { flex: 1 1 calc(50% - 5px); }

  /* FAQ */
  .cv-faq-item summary { padding: 14px 16px; font-size: .9rem; }
  .cv-faq-item p { padding: 12px 16px 14px; }

  /* Footer */
  .cv-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cv-footer-brand { grid-column: 1 / -1; }
  .cv-footer-bottom { flex-direction: column; }
  .cv-trust-items { gap: 18px; }
  .cv-section { padding: 52px 0; }
  .cv-clinic-header { padding: 36px 24px; }
  .cv-compare-grid { grid-template-columns: 1fr; }

  /* Blog cards full-width on tablet */
  .cv-blog-grid { grid-template-columns: 1fr; }

  /* Pagination */
  .cv-pagination { flex-direction: column; align-items: center; gap: 12px; }
}

@media (max-width: 480px) {
  .cv-product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cv-product-grid-shop { grid-template-columns: repeat(2, 1fr); }
  .cv-blog-grid { grid-template-columns: 1fr; }
  .cv-footer-grid { grid-template-columns: 1fr; }
  .cv-hero-stats { justify-content: space-around; }
  .cv-hersteller-grid { grid-template-columns: repeat(2, 1fr); }
  .cv-services-grid { grid-template-columns: repeat(2, 1fr); }
  .cv-quicklinks-grid { grid-template-columns: repeat(2, 1fr); }
  .cv-usp-grid { grid-template-columns: 1fr; }
  .cv-statsbar-inner { grid-template-columns: repeat(2, 1fr); }
  .cv-statsbar-divider { display: none; }
}

/* ══════════════════════════════════════════
   HOMEPAGE — HERO 2-COLUMN
══════════════════════════════════════════ */
.cv-hero-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}
.cv-hero-eyebrow {
  display: inline-block;
  background: rgba(110,231,160,.15);
  border: 1px solid rgba(110,231,160,.3);
  color: #6ee7a0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-xl);
  margin-bottom: 18px;
}
.cv-hero-content h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -.035em;
}
.cv-hero-content h1 span { color: #6ee7a0; }
.cv-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  line-height: 1.65;
  max-width: 520px;
}
.cv-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.cv-btn-outline-white {
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  background: rgba(255,255,255,.08);
  transition: all var(--transition);
}
.cv-btn-outline-white:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.7);
  color: #fff;
}
.cv-hero-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}
.cv-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.cv-hero-trust span svg { opacity: .85; flex-shrink: 0; }

/* Hero Live Card */
.cv-hero-card-wrap { perspective: 1200px; }
.cv-hero-card {
  background: rgba(255,255,255,.97);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0,0,0,.35), 0 4px 16px rgba(0,0,0,.2);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cv-hero-card-wrap:hover .cv-hero-card { transform: rotateY(0deg) rotateX(0deg); }
.cv-hero-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--green);
  color: #fff;
}
.cv-hero-card-title { font-size: .82rem; font-weight: 700; }
.cv-hero-card-live { display: flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 700; opacity: .9; }
.cv-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ee7a0;
  box-shadow: 0 0 0 0 rgba(110,231,160,.6);
  animation: cv-pulse 2s infinite;
}
@keyframes cv-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(110,231,160,.6); }
  70%  { box-shadow: 0 0 0 6px rgba(110,231,160,0); }
  100% { box-shadow: 0 0 0 0 rgba(110,231,160,0); }
}
.cv-hero-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  text-decoration: none;
  color: var(--text);
}
.cv-hero-row:hover { background: var(--green-pale); }
.cv-hero-row:last-of-type { border-bottom: none; }
.cv-hero-row-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-mid);
}
.cv-hero-row-img img { width: 100%; height: 100%; object-fit: cover; }
.cv-hero-row-img-ph { width: 100%; height: 100%; background: linear-gradient(135deg, var(--green-pale), var(--green-pale2)); }
.cv-hero-row-name { flex: 1; min-width: 0; }
.cv-hero-row-name span { display: block; font-size: .875rem; font-weight: 600; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cv-hero-row-name small { font-size: .72rem; color: var(--gray); }
.cv-hero-row-price { text-align: right; white-space: nowrap; }
.cv-hero-row-price strong { font-size: 1rem; color: var(--green); font-weight: 800; }
.cv-hero-row-price span { font-size: .72rem; color: var(--gray); }
.cv-hero-row-badge { flex-shrink: 0; }
.cv-hero-card-cta {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-pale);
  border-top: 1px solid var(--green-pale2);
  transition: background var(--transition);
}
.cv-hero-card-cta:hover { background: var(--green-pale2); color: var(--green-dark); }

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.cv-statsbar {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 0;
}
.cv-statsbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 0;
}
.cv-statsbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 40px;
  text-align: center;
}
.cv-statsbar-item strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: #6ee7a0;
  letter-spacing: -.03em;
}
.cv-statsbar-item span { font-size: .78rem; color: rgba(255,255,255,.45); }
.cv-statsbar-divider { width: 1px; height: 40px; background: rgba(255,255,255,.1); flex-shrink: 0; }
.cv-stat-green { color: #6ee7a0 !important; }

/* ══════════════════════════════════════════
   QUICK LINKS (Kategorie-Kacheln)
══════════════════════════════════════════ */
.cv-quicklinks-section { padding: 40px 0; background: var(--bg); }
.cv-quicklinks-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.cv-quicklink-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 22px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  text-decoration: none;
  transition: all var(--transition);
  text-align: center;
}
.cv-quicklink-card:hover { border-color: var(--green-pale2); background: var(--green-pale); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.cv-ql-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.cv-quicklink-card:hover .cv-ql-icon { transform: scale(1.08); }
.cv-ql-label { font-size: .925rem; font-weight: 700; color: var(--dark); }
.cv-ql-sub { font-size: .72rem; color: var(--gray); line-height: 1.3; }

.cv-ql-bluete .cv-ql-icon  { background: #e8f5ee; color: #1e7a46; }
.cv-ql-extrakt .cv-ql-icon { background: #e0f2fe; color: #0284c7; }
.cv-ql-indica .cv-ql-icon  { background: #f5f3ff; color: #7c3aed; }
.cv-ql-sativa .cv-ql-icon  { background: #fffbeb; color: #d97706; }
.cv-ql-hybrid .cv-ql-icon  { background: #f0f9ff; color: #0369a1; }
.cv-ql-quiz .cv-ql-icon    { background: var(--green-pale); color: var(--green); }

.cv-ql-indica { border-color: #e9d5ff; }
.cv-ql-indica:hover { background: #f5f3ff; border-color: #a78bfa; }
.cv-ql-sativa { border-color: #fde68a; }
.cv-ql-sativa:hover { background: #fffbeb; border-color: #f59e0b; }
.cv-ql-hybrid { border-color: #bae6fd; }
.cv-ql-hybrid:hover { background: #f0f9ff; border-color: #38bdf8; }
.cv-ql-quiz { border-color: var(--green-pale2); }
.cv-ql-quiz:hover { background: var(--green-pale); border-color: var(--green); }

/* ══════════════════════════════════════════
   HOW IT WORKS (updated)
══════════════════════════════════════════ */
.cv-how-header { text-align: center; margin-bottom: 52px; }
.cv-how-header h2 { font-size: 1.9rem; color: #fff; letter-spacing: -.03em; margin-bottom: 10px; }
.cv-how-header p { color: rgba(255,255,255,.6); font-size: 1rem; }
.cv-how-step { position: relative; }
.cv-how-icon { margin-bottom: 12px; }
.cv-how-num { font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 8px; }
.cv-how-step h3 { font-size: 1.15rem; color: #fff; margin-bottom: 10px; font-weight: 700; }
.cv-how-step p { opacity: .7; font-size: .9rem; line-height: 1.65; color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════
   CLINIC TABLE — RANK MEDALS
══════════════════════════════════════════ */
.cv-rank-medal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 800;
}
.cv-rank-1 { background: #fef08a; color: #713f12; }
.cv-rank-2 { background: #e5e7eb; color: #374151; }
.cv-rank-3 { background: #fed7aa; color: #7c2d12; }
.cv-clinic-top-row { background: #f0fdf4; }
.cv-row-cheap { background: #f0fdf4; }
.cv-price-green { color: var(--green); font-weight: 700; font-size: 1rem; }

/* ══════════════════════════════════════════
   USP SECTION
══════════════════════════════════════════ */
.cv-usp-section {
  padding: 52px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cv-usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.cv-usp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cv-usp-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  border: 1px solid var(--green-pale2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.cv-usp-item h4 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.cv-usp-item p { font-size: .85rem; color: var(--gray); line-height: 1.55; }

/* ══════════════════════════════════════════
   RESPONSIVE — NEW HOMEPAGE ELEMENTS
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cv-quicklinks-grid { grid-template-columns: repeat(3, 1fr); }
  .cv-usp-grid { grid-template-columns: repeat(2, 1fr); }
  .cv-hero-layout { grid-template-columns: 1fr; }
  .cv-hero-card-wrap { display: none; }
}

@media (max-width: 768px) {
  .cv-quicklinks-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .cv-statsbar-inner { gap: 0; padding: 16px; flex-wrap: wrap; }
  .cv-statsbar-item { padding: 8px 20px; }
  .cv-usp-grid { grid-template-columns: 1fr 1fr; }
  .cv-hero-layout { grid-template-columns: 1fr; }
}

/* ── Shop category pills ── */
.cv-shop-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.cv-shop-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius-xl);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-2);
  background: var(--bg);
  transition: all var(--transition);
}
.cv-shop-cat-pill:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }
.cv-ql-indica-pill:hover { border-color: #6d28d9; color: #6d28d9; background: #f5f3ff; }
.cv-ql-sativa-pill:hover { border-color: #d97706; color: #d97706; background: #fffbeb; }
.cv-ql-hybrid-pill:hover { border-color: #0284c7; color: #0284c7; background: #f0f9ff; }
.cv-shop-cat-pill-cta { border-color: var(--green-pale2); color: var(--green-dark); background: var(--green-pale); }
.cv-shop-cat-pill-cta:hover { background: var(--green-pale2); }

/* ── Archive cross-links ── */
.cv-archive-crosslinks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.cv-crosslinks-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-right: 4px;
}

/* ══════════════════════════════════════════
   SOCIAL SHARE
══════════════════════════════════════════ */
.cv-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.cv-share-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray);
  margin-right: 4px;
}
.cv-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-xl);
  font-size: .82rem;
  font-weight: 600;
  border: 1.5px solid var(--border-2);
  background: var(--bg);
  color: var(--text-2);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}
.cv-share-btn:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }
.cv-share-wa { border-color: #dcfce7; color: #15803d; background: #f0fdf4; }
.cv-share-wa:hover { border-color: #16a34a; background: #dcfce7; color: #15803d; }
.cv-share-tg { border-color: #dbeafe; color: #1d4ed8; background: #eff6ff; }
.cv-share-tg:hover { border-color: #2563eb; background: #dbeafe; color: #1d4ed8; }

/* ══════════════════════════════════════════
   RELATED ARTICLES
══════════════════════════════════════════ */
.cv-related-articles {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.cv-related-articles h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.cv-related-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cv-related-article-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.cv-related-article-card:hover { box-shadow: var(--shadow); border-color: var(--border-2); }
.cv-related-article-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-mid); }
.cv-related-article-img img { width: 100%; height: 100%; object-fit: cover; }
.cv-related-article-img-ph { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--green-pale) 0%, var(--green-pale2) 100%); }
.cv-related-article-info { padding: 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.cv-related-article-info strong { font-size: .9rem; font-weight: 700; color: var(--dark); line-height: 1.35; }
.cv-related-article-info span { font-size: .8rem; color: var(--gray); line-height: 1.45; }
@media (max-width: 768px) {
  .cv-related-articles-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   STICKY MOBILE CTA
══════════════════════════════════════════ */
.cv-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  padding: 10px 16px;
  padding-bottom: 10px;
}
.cv-sticky-cta.cv-sticky-cta-visible { display: block; }
.cv-sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}
.cv-sticky-cta-info { display: flex; flex-direction: column; min-width: 0; }
.cv-sticky-cta-info strong { font-size: .88rem; font-weight: 700; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cv-sticky-cta-info span { font-size: .78rem; color: var(--gray); }
.cv-btn-sm { padding: 9px 16px; font-size: .82rem; white-space: nowrap; flex-shrink: 0; }
@media (min-width: 769px) { .cv-sticky-cta { display: none !important; } }

/* ══════════════════════════════════════════
   BACK TO TOP BUTTON
══════════════════════════════════════════ */

/* ── Mobile Sticky Bar ─────────────────── */
.cv-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  padding: 0;
  padding-bottom: 0;
}
.cv-sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 12px;
}
.cv-sticky-bar-info { display: flex; align-items: baseline; gap: 6px; }
.cv-sticky-label { font-size: .78rem; color: var(--gray); }
.cv-sticky-price { font-size: 1.1rem; font-weight: 800; color: var(--green); letter-spacing: -.02em; }
.cv-sticky-kliniken { font-size: .75rem; color: var(--gray-2); }
@media (max-width: 768px) { .cv-sticky-bar { display: block; } }

.cv-back-top {
  position: fixed;
  bottom: 72px;
  right: 16px;
  z-index: 490;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s;
}
.cv-back-top.cv-back-top-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.cv-back-top:hover { background: var(--green-dark); }
@media (min-width: 769px) { .cv-back-top { bottom: 24px; right: 24px; } }

/* ══════════════════════════════════════════
   COOKIE CONSENT BANNER
══════════════════════════════════════════ */
.cv-cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--dark);
  color: #fff;
  padding: 16px;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.cv-cookie-bar.cv-cookie-bar-visible { transform: translateY(0); }
.cv-cookie-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.cv-cookie-bar-text { flex: 1; min-width: 200px; font-size: .85rem; line-height: 1.5; color: rgba(255,255,255,.8); }
.cv-cookie-bar-text a { color: var(--green-light); text-decoration: underline; }
.cv-cookie-bar-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cv-cookie-btn-accept {
  padding: 9px 20px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}
.cv-cookie-btn-accept:hover { background: var(--green-dark); }
.cv-cookie-btn-decline {
  padding: 9px 16px;
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  cursor: pointer;
  transition: all var(--transition);
}
.cv-cookie-btn-decline:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* ══════════════════════════════════════════
   THC/CBD CHIP LINKS
══════════════════════════════════════════ */
.cv-chip-link { text-decoration: none; cursor: pointer; }
.cv-chip-link:hover { opacity: .85; text-decoration: none; }
.cv-chip-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(0,0,0,.12);
  font-size: .6rem;
  font-weight: 800;
  margin-left: 2px;
  vertical-align: middle;
}

/* ══════════════════════════════════════════
   PRICE TIMESTAMP
══════════════════════════════════════════ */
.cv-preise-timestamp {
  font-size: .78rem;
  color: var(--gray);
  margin-bottom: 10px;
}
.cv-preise-timestamp strong { color: var(--text-2); }

/* ══════════════════════════════════════════
   404 PAGE
══════════════════════════════════════════ */
.cv-404 { padding: 80px 16px; }
.cv-404-content { max-width: 560px; margin: 0 auto; text-align: center; }
.cv-404-icon {
  width: 80px; height: 80px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}
.cv-404 h1 { font-size: 1.6rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.cv-404 > .cv-404-content > p { color: var(--gray); margin-bottom: 28px; }
.cv-404-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.cv-404-search { margin-bottom: 40px; }
.cv-404-search form {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}
.cv-404-search input {
  flex: 1;
  padding: 11px 16px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  outline: none;
  transition: border-color var(--transition);
}
.cv-404-search input:focus { border-color: var(--green); }
.cv-404-search button {
  padding: 11px 20px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  font-size: .9rem;
}
.cv-404-cheap h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; text-align: left; }
.cv-404-cheap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  text-align: left;
}
.cv-404-cheap-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}
.cv-404-cheap-card:hover { border-color: var(--green); background: var(--green-pale); }
.cv-404-cheap-card strong { font-size: .88rem; font-weight: 700; color: var(--dark); }
.cv-404-cheap-card span { font-size: .8rem; color: var(--green); font-weight: 700; }
@media (max-width: 480px) { .cv-404-cheap-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   AVAILABILITY STATES
══════════════════════════════════════════ */
.cv-avail { font-size: .82rem; font-weight: 600; }
.cv-avail-yes { color: var(--green); }
.cv-avail-no  { color: var(--gray); }

/* ══════════════════════════════════════════
   SORTENQUIZ
══════════════════════════════════════════ */
.cv-quiz-wrap { max-width: 580px; margin: 0 auto; }
.cv-quiz-intro { color: var(--gray); margin-bottom: 28px; text-align: center; }
.cv-quiz-step { margin-bottom: 8px; }
.cv-quiz-step h2 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.cv-quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cv-quiz-btn {
  padding: 14px 16px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
}
.cv-quiz-btn:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }
.cv-quiz-result { text-align: center; padding: 32px; background: var(--green-pale); border-radius: var(--radius); }
.cv-quiz-result h2 { color: var(--dark); margin-bottom: 12px; }
.cv-quiz-result p { color: var(--gray); margin-bottom: 20px; }
@media (max-width: 480px) { .cv-quiz-options { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   SEARCH PAGE
══════════════════════════════════════════ */
.cv-search-page { padding: 40px 0; }
.cv-search-header { margin-bottom: 32px; }
.cv-search-header h1 { font-size: 1.6rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.cv-search-form-page {
  display: flex;
  gap: 10px;
  max-width: 560px;
}
.cv-search-form-page input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}
.cv-search-form-page input:focus { border-color: var(--green); }
.cv-search-count { font-size: .88rem; color: var(--gray); margin-bottom: 20px; }
.cv-search-results { display: flex; flex-direction: column; gap: 10px; }
.cv-search-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}
.cv-search-result:hover { border-color: var(--green); background: var(--green-pale); }
.cv-search-info { display: flex; flex-direction: column; gap: 3px; }
.cv-search-type {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--green);
}
.cv-search-info strong { font-size: .95rem; color: var(--dark); }
.cv-search-arrow { color: var(--gray-2); font-size: 1.1rem; }
.cv-search-hint { color: var(--gray); font-style: italic; margin-top: 20px; }

/* ══════════════════════════════════════════
   GLOSSAR GRID
══════════════════════════════════════════ */
.cv-glossar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.cv-glossar-item {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
}
.cv-glossar-item h3 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.cv-glossar-item p { font-size: .82rem; color: var(--gray); line-height: 1.5; }
@media (max-width: 768px) {
  .cv-glossar-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .cv-glossar-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   TELEKLINIK SCORES PAGE
══════════════════════════════════════════ */
.cv-tk-scores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.cv-tk-score-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cv-tk-top { border-color: var(--green); background: var(--green-pale); }
.cv-tk-rank { font-size: .72rem; font-weight: 800; letter-spacing: .08em; color: var(--gray-2); text-transform: uppercase; }
.cv-tk-name strong { font-size: .95rem; color: var(--dark); }
.cv-tk-price { font-size: .88rem; color: var(--gray); }
.cv-tk-price strong { color: var(--green); }
.cv-tk-count { font-size: .78rem; color: var(--gray); }
.cv-badge-recommended { background: var(--green); color: #fff; font-size: .65rem; font-weight: 700; padding: 2px 6px; border-radius: 4px; margin-left: 6px; vertical-align: middle; }
@media (max-width: 768px) {
  .cv-tk-scores-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .cv-tk-scores-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   HERSTELLER GRID (special pages)
══════════════════════════════════════════ */
.cv-hersteller-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.cv-hersteller-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}
.cv-hersteller-card:hover { border-color: var(--green); background: var(--green-pale); }
.cv-hersteller-card-name { font-size: .9rem; font-weight: 700; color: var(--dark); }
.cv-hersteller-card-count { font-size: .78rem; color: var(--gray); }
@media (max-width: 768px) {
  .cv-hersteller-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════
   COMPARE PAGE
══════════════════════════════════════════ */
.cv-compare-page { padding: 32px 0; }
.cv-compare-page h1 { font-size: 1.6rem; font-weight: 800; color: var(--dark); margin-bottom: 28px; }
.cv-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.cv-compare-col {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}
.cv-compare-img { aspect-ratio: 1; overflow: hidden; background: var(--bg-mid); }
.cv-compare-img img { width: 100%; height: 100%; object-fit: cover; }
.cv-compare-col h2 {
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 20px 4px;
  color: var(--dark);
}
.cv-compare-col h2 a { color: inherit; text-decoration: none; }
.cv-compare-col h2 a:hover { color: var(--green); }
.cv-compare-col > .cv-badge { margin: 0 20px 16px; display: inline-block; }
.cv-compare-attrs {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.cv-compare-attrs tr { border-top: 1px solid var(--border); }
.cv-compare-attrs th {
  padding: 10px 20px;
  text-align: left;
  font-weight: 600;
  color: var(--gray);
  width: 40%;
  background: var(--bg-subtle);
}
.cv-compare-attrs td { padding: 10px 20px; color: var(--text); }
.cv-compare-prices { padding: 16px 20px; border-top: 1px solid var(--border); }
.cv-compare-prices h3 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--gray); margin-bottom: 10px; }
.cv-compare-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  border-radius: var(--radius-xs);
  font-size: .875rem;
  margin-bottom: 4px;
}
.cv-compare-price-row strong { color: var(--text); }
.cv-compare-price-row.cv-best {
  background: var(--green-pale);
  border: 1px solid var(--green-pale2);
}
.cv-compare-price-row.cv-best strong { color: var(--green); font-size: 1rem; }
.cv-compare-col > .cv-btn { margin: 16px 20px 20px; }
@media (max-width: 600px) {
  .cv-compare-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   SEARCH IMPROVEMENTS
══════════════════════════════════════════ */
.cv-search-excerpt {
  font-size: .8rem;
  color: var(--gray);
  margin-top: 2px;
  display: block;
  line-height: 1.4;
}
.cv-search-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cv-search-price {
  font-size: .82rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

/* ══════════════════════════════════════════
   PRICE TREND INDICATOR
══════════════════════════════════════════ */
.cv-price-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-xl);
  margin-left: 8px;
}
.cv-trend-down   { background: #dcfce7; color: #15803d; }
.cv-trend-up     { background: #fee2e2; color: #dc2626; }
.cv-trend-stable { background: var(--bg-mid); color: var(--gray); }

/* ══════════════════════════════════════════
   READING TIME (Blog)
══════════════════════════════════════════ */
.cv-read-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .78rem;
  color: var(--gray-2);
  margin-left: 8px;
}
.cv-read-time::before { content: '·'; margin-right: 2px; }

/* ══════════════════════════════════════════
   POST META ROW
══════════════════════════════════════════ */
.cv-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
  font-size: .85rem;
  color: var(--gray);
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════
   HERO — AMBIENT ANIMATIONS + 3D CARD
══════════════════════════════════════════ */
.cv-hero-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.cv-hero > .cv-container { position: relative; z-index: 1; }

/* Ambient glow blobs */
.cv-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: cv-blob-drift 9s ease-in-out infinite;
}
.cv-hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,122,70,.45) 0%, transparent 70%);
  top: -140px; right: 8%;
  animation-delay: 0s;
}
.cv-hero-blob-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(110,231,160,.18) 0%, transparent 70%);
  bottom: -80px; left: 18%;
  animation-delay: 3s;
}
.cv-hero-blob-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  top: 35%; left: 3%;
  animation-delay: 6s;
}
@keyframes cv-blob-drift {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-22px) scale(1.06); }
}

/* Floating cannabis leaf SVGs */
.cv-hero-leaf {
  position: absolute;
  animation: cv-leaf-float 11s ease-in-out infinite;
}
.cv-leaf-1 { top: 12%; right: 6%;  animation-delay: 0s;   animation-duration: 13s; }
.cv-leaf-2 { top: 58%; right: 42%; animation-delay: 2.5s; animation-duration: 10s; }
.cv-leaf-3 { bottom: 8%; right: 4%; animation-delay: 5s;  animation-duration: 15s; }
.cv-leaf-4 { top: 38%; left: 2%;   animation-delay: 1.2s; animation-duration: 12s; }
.cv-leaf-5 { bottom: 22%; left: 13%; animation-delay: 4s; animation-duration: 11s; }
@keyframes cv-leaf-float {
  0%, 100% { transform: translateY(0) rotate(0deg);    opacity: .85; }
  33%       { transform: translateY(-18px) rotate(6deg); opacity: .55; }
  66%       { transform: translateY(-9px) rotate(-4deg); opacity: .75; }
}

/* 3D floating hero card */
.cv-hero-card-wrap { perspective: 1400px; }
.cv-hero-card {
  transform: rotateY(-4deg) rotateX(2deg) translateY(0);
  animation: cv-card-float 6s ease-in-out infinite;
  box-shadow: 0 24px 64px rgba(0,0,0,.28), 0 4px 16px rgba(0,0,0,.16);
}
.cv-hero-card-wrap:hover .cv-hero-card {
  transform: rotateY(0deg) rotateX(0deg) translateY(-4px);
  animation-play-state: paused;
  box-shadow: 0 32px 80px rgba(0,0,0,.32), 0 6px 20px rgba(0,0,0,.18);
}
@keyframes cv-card-float {
  0%, 100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0); }
  50%       { transform: rotateY(-4deg) rotateX(2deg) translateY(-8px); }
}

/* ══════════════════════════════════════════
   SEARCH FORM — COMPACT ON MEDIUM SCREENS
══════════════════════════════════════════ */
@media (max-width: 1200px) and (min-width: 921px) {
  .cv-search-form input { width: 140px; }
}

/* ══════════════════════════════════════════
   YOUTUBE EMBED
══════════════════════════════════════════ */
.cv-yt-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin: 28px 0;
  background: #000;
  box-shadow: 0 4px 24px rgba(0,0,0,.14);
}
.cv-yt-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ══════════════════════════════════════════
   HERO V2 — MODERN IMAGE-FORWARD LAYOUT
══════════════════════════════════════════ */
.cv-hero-v2 {
  background: linear-gradient(135deg, #e8f5ee 0%, #f0f6f3 50%, #e4f0ea 100%);
  padding: 48px 0 56px;
  overflow: hidden;
}

.cv-hv2-inner {
  display: grid;
  grid-template-columns: minmax(300px, 2fr) 2fr 1.1fr;
  gap: 16px;
  align-items: stretch;
  min-height: 520px;
}

/* ── Content Panel ── */
.cv-hv2-panel {
  background: #fff;
  border-radius: 24px;
  padding: 36px 40px 40px;
  box-shadow: 0 4px 32px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cv-hv2-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .02em;
}
.cv-live-dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: cv-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(30,122,70,.5);
}
@keyframes cv-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(30,122,70,.5); }
  70%  { box-shadow: 0 0 0 7px rgba(30,122,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(30,122,70,0); }
}

.cv-hv2-panel h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  color: var(--dark);
  font-weight: 800;
  letter-spacing: -.04em;
  margin: 0;
}
.cv-hv2-panel h1 em {
  font-style: normal;
  color: var(--green);
}
.cv-hv2-panel > p {
  color: var(--text-2);
  font-size: .95rem;
  line-height: 1.65;
  margin: 0;
}

.cv-hv2-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.cv-hv2-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
}
.cv-hv2-features li svg { color: var(--green); flex-shrink: 0; }

.cv-hv2-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cv-hv2-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.cv-hv2-stat { text-align: center; }
.cv-hv2-stat strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--green); letter-spacing: -.04em; line-height: 1; }
.cv-hv2-stat span { font-size: .72rem; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; display: block; }
.cv-hv2-stat-div { width: 1px; height: 36px; background: var(--border); }

/* ── Gallery ── */
/* ── Center: Big image column ── */
.cv-hv2-img-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
}
.cv-hv2-img-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.cv-hv2-img-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  z-index: 2;
}

/* ── Right: Product card stack ── */
.cv-hv2-img-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cv-hv2-img-card {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  min-height: 140px;
}
.cv-hv2-img-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cv-hv2-img-card:hover img { transform: scale(1.05); }
.cv-hv2-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
  padding: 14px 14px 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.cv-hv2-card-name {
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  line-height: 1.3;
}
.cv-hv2-card-price {
  background: var(--green);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(30,122,70,.4);
  flex-shrink: 0;
}

/* Floating price widget — inside cv-hv2-img-main */
.cv-hv2-float {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,.97);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.16);
  min-width: 190px;
  max-width: 240px;
  z-index: 3;
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
}
.cv-hv2-float-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-2);
  margin-bottom: 10px;
}
.cv-hv2-float-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: .83rem;
  padding: 4px 0;
  color: var(--text);
}
.cv-hv2-float-row strong { color: var(--green); font-weight: 700; white-space: nowrap; }
.cv-hv2-float-link {
  display: block;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  font-size: .78rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  transition: color .13s;
}
.cv-hv2-float-link:hover { color: var(--green-dark); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .cv-hv2-inner { grid-template-columns: 1fr; gap: 20px; min-height: auto; }
  .cv-hv2-img-main { min-height: 360px; }
  .cv-hv2-img-stack { flex-direction: row; height: 180px; }
  .cv-hv2-float { display: none; }
}
@media (max-width: 680px) {
  .cv-hero-v2 { padding: 32px 0 48px; }
  .cv-hv2-panel { padding: 28px 24px; gap: 16px; border-radius: 18px; }
  .cv-hv2-panel h1 { font-size: 1.8rem; }
  .cv-hv2-img-main { min-height: 260px; }
  .cv-hv2-img-stack { display: none; }
}

/* ══════════════════════════════════════════
   ARCHIVE HERO BANNER
══════════════════════════════════════════ */
.cv-archive-hero { position: relative; border-radius: 16px; overflow: hidden; margin: 16px 0 24px; }
.cv-archive-hero img { width: 100%; height: 320px; object-fit: cover; display: block; }
.cv-archive-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.62) 0%, rgba(0,0,0,.25) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: center; padding: 32px 40px;
}
.cv-archive-hero-overlay h1 { color: #fff; font-size: 2rem; letter-spacing: -.03em; margin: 0 0 10px; text-shadow: 0 1px 4px rgba(0,0,0,.3); }
.cv-archive-hero-overlay p  { color: rgba(255,255,255,.88); font-size: .95rem; max-width: 560px; line-height: 1.7; margin: 0; }
@media (max-width: 768px) {
  .cv-archive-hero img { height: 220px; }
  .cv-archive-hero-overlay { padding: 20px 24px; }
  .cv-archive-hero-overlay h1 { font-size: 1.4rem; }
  .cv-archive-hero-overlay p  { font-size: .85rem; }
}

/* ══════════════════════════════════════════
   TELEKLINIK LISTING PAGE
══════════════════════════════════════════ */
.cv-clinic-listing-grid { margin-top: 24px; }
.cv-clinic-listing-card { gap: 8px; }
.cv-clinic-listing-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cv-clinic-listing-price {
  font-size: .82rem;
  font-weight: 700;
  color: var(--green);
}
.cv-archive-count {
  font-size: .88rem;
  color: var(--gray);
  margin: -8px 0 24px;
}

/* ══════════════════════════════════════════
   APOTHEKEN PAGE
══════════════════════════════════════════ */
.cv-apotheken-intro { margin: 40px 0; }
.cv-apotheken-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
}
.cv-apotheken-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.cv-step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.cv-step-body { flex: 1; }
.cv-step-body strong { display: block; font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.cv-step-body p { font-size: .88rem; color: var(--gray); line-height: 1.6; margin: 0; }

.cv-apotheken-info { margin: 48px 0; }
.cv-apotheken-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.cv-apotheken-info-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}
.cv-apotheken-info-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.cv-apotheken-info-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); padding: 16px 18px 6px; margin: 0; }
.cv-apotheken-info-card p  { font-size: .85rem; color: var(--gray); line-height: 1.6; padding: 0 18px 18px; margin: 0; }

.cv-apotheken-cta-box {
  background: var(--green-pale);
  border: 1.5px solid var(--green-pale2);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  margin: 48px 0;
}
.cv-apotheken-cta-box h2 { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.cv-apotheken-cta-box p  { color: var(--gray); max-width: 560px; margin: 0 auto; line-height: 1.7; }

.cv-apotheken-clinics { margin-top: 48px; }
.cv-apotheken-clinics h2 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 0; }

@media (max-width: 768px) {
  .cv-apotheken-info-grid { grid-template-columns: 1fr; }
  .cv-apotheken-cta-box { padding: 28px 20px; }
}

/* ══════════════════════════════════════════
   STÄDTE PAGE
══════════════════════════════════════════ */
.cv-listing-head { margin-bottom: 32px; }
.cv-listing-head h1 { font-size: 1.8rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.cv-archive-intro { font-size: .95rem; color: var(--gray); max-width: 680px; line-height: 1.7; margin-bottom: 8px; }

.cv-staedte-grid-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.cv-stadt-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  display: block;
  aspect-ratio: 5/3;
}
.cv-stadt-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.cv-stadt-card:hover img { transform: scale(1.04); }
.cv-stadt-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 16px 18px;
}
.cv-stadt-card-overlay span {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}

.cv-staedte-grid-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

@media (max-width: 960px) {
  .cv-staedte-grid-featured { grid-template-columns: repeat(2, 1fr); }
  .cv-staedte-grid-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .cv-staedte-grid-featured { grid-template-columns: 1fr; }
  .cv-staedte-grid-list { grid-template-columns: repeat(2, 1fr); }
  .cv-listing-head h1 { font-size: 1.4rem; }
}

/* ══════════════════════════════════════════
   FEATURE CARDS (text-only, 3-col)
══════════════════════════════════════════ */
.cv-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cv-feature-card {
  padding: 24px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.cv-feature-card:hover { border-color: var(--border-2); box-shadow: var(--shadow); }
.cv-feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cv-feature-card h3 { font-size: .95rem; font-weight: 700; color: var(--dark); margin: 0; }
.cv-feature-card p  { font-size: .86rem; color: var(--gray); line-height: 1.65; margin: 0; }
@media (max-width: 768px) {
  .cv-feature-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ══════════════════════════════════════════
   COOKIE BAR — BODY PADDING TO AVOID OVERLAP
══════════════════════════════════════════ */
body.cv-cookie-bar-open { padding-bottom: 80px; }
@media (max-width: 768px) { body.cv-cookie-bar-open { padding-bottom: 110px; } }

/* ══════════════════════════════════════════
   BLOG CATS — MOBILE HORIZONTAL SCROLL
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .cv-blog-cats {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cv-blog-cats::-webkit-scrollbar { display: none; }
  .cv-blog-cats-wrap::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 48px;
    background: linear-gradient(to right, transparent, #fff 85%);
    pointer-events: none;
    z-index: 1;
  }
  .cv-pill { white-space: nowrap; flex-shrink: 0; }
}

/* ══════════════════════════════════════════
   SHOP PRODUCT CARDS — MOBILE SPACING
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .cv-product-card .cv-product-info { padding: 10px; }
  .cv-product-card h3 { font-size: .82rem; line-height: 1.35; }
  .cv-product-attrs { gap: 4px; flex-wrap: wrap; }
}

/* ══════════════════════════════════════════
   STÄDTE LIST CARDS — INITIAL LETTER
══════════════════════════════════════════ */
.cv-stadt-list-card { flex-direction: row; align-items: center; gap: 10px; }
.cv-stadt-initial {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--green-pale);
  color: var(--green);
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}

/* ══════════════════════════════════════════
   SINGLE POST HERO IMAGE
══════════════════════════════════════════ */
.cv-single-hero-img img { width: 100%; height: auto; border-radius: var(--radius-sm); display: block; }

/* ══════════════════════════════════════════
   HERSTELLER PAGE — HEADER BELOW HERO
══════════════════════════════════════════ */
.cv-hersteller-header { margin-top: 24px; }

/* ══════════════════════════════════════════
   DD HERSTELLER DROPDOWN
══════════════════════════════════════════ */
.cv-dd-hersteller { min-width: 280px; }

/* ══════════════════════════════════════════
   TOOLTIP SYSTEM
══════════════════════════════════════════ */
.cv-tooltip-bubble {
  position: absolute;
  display: none;
  background: #1a2e1d;
  color: #fff;
  font-size: .74rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 6px 12px;
  border-radius: 8px;
  max-width: 220px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease;
  z-index: 9999;
  white-space: normal;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.cv-tooltip-bubble::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1a2e1d;
}

/* ══════════════════════════════════════════
   PRODUCT META PILLS (interne Verlinkung)
══════════════════════════════════════════ */
.cv-product-meta-pills {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cv-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .76rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.cv-meta-pill:hover {
  background: var(--green-pale);
  border-color: var(--green);
  color: var(--green);
  text-decoration: none;
}

/* ══════════════════════════════════════════
   FOOTER LOGO
══════════════════════════════════════════ */
.cv-logo-footer { opacity: .9; }
.cv-logo-footer:hover { opacity: 1; }
.cv-logo-footer-img { filter: brightness(0) invert(1); }


/* ══════════════════════════════════════════
   MOBILE NAV USP STRIP
══════════════════════════════════════════ */
.cv-mnav-usp {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--green-pale);
  border-bottom: 1px solid var(--green-pale2);
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
  flex-shrink: 0;
}
.cv-mnav-usp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: cv-pulse 2s ease-in-out infinite;
}

/* ══════════════════════════════════════════
   PRODUCT PRICE TABLE — MOBILE CARDS (≤480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Non-product clinic tables: just hide button col */
  .cv-clinic-table:not(.cv-clinic-table-product) th:nth-child(4),
  .cv-clinic-table:not(.cv-clinic-table-product) td:nth-child(4) { display: none; }

  /* Product table: transform to vertical cards */
  .cv-clinic-table-wrap:has(.cv-clinic-table-product) {
    overflow-x: visible;
    border: none;
    box-shadow: none;
    background: transparent;
  }
  .cv-clinic-table-product,
  .cv-clinic-table-product thead,
  .cv-clinic-table-product tbody,
  .cv-clinic-table-product tr,
  .cv-clinic-table-product td,
  .cv-clinic-table-product th { display: block; }

  .cv-clinic-table-product thead { display: none; }

  .cv-clinic-table-product tbody tr {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 4px 12px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-xs);
    transition: box-shadow .15s;
  }
  .cv-clinic-table-product tbody tr:last-child { margin-bottom: 0; }
  .cv-clinic-table-product tbody tr.cv-clinic-best {
    border-color: var(--green-pale2);
    border-left: 4px solid var(--green);
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    box-shadow: 0 2px 12px rgba(30,122,70,.1);
  }

  /* Klinik oben — volle Breite */
  .cv-clinic-table-product td.cv-clinic-name {
    grid-column: 1 / -1;
    grid-row: 1;
    padding: 0 0 4px;
    font-weight: 600;
    font-size: .9rem;
  }
  .cv-clinic-table-product td.cv-clinic-name .cv-badge-best {
    display: block;
    margin-bottom: 4px;
  }

  /* Preis groß — links Mitte */
  .cv-clinic-table-product td.cv-clinic-price-col {
    grid-column: 1;
    grid-row: 2;
    padding: 0;
  }
  .cv-clinic-table-product td.cv-clinic-price-col strong {
    font-size: 1.4rem;
    color: var(--green);
    font-weight: 700;
  }

  /* Ersparnis klein — links unten (override 768px hide) */
  .cv-clinic-table-product td.cv-col-save {
    grid-column: 1;
    grid-row: 3;
    padding: 0;
    display: block !important;
  }

  /* Button — rechts, Mitte+unten */
  .cv-clinic-table-product td:last-child {
    grid-column: 2;
    grid-row: 2 / 4;
    padding: 0;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
  }
  .cv-clinic-table-product td:last-child .cv-btn {
    font-size: .8rem;
    padding: 8px 12px;
    white-space: nowrap;
  }
}

/* ══════════════════════════════════════════
   SHOP — TRUST BAR
══════════════════════════════════════════ */
.cv-shop-trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 10px 0 0;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.cv-shop-trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
  cursor: default;
}
.cv-shop-trust-bar svg { color: var(--green); flex-shrink: 0; }

/* ══════════════════════════════════════════
   SHOP — CATEGORY SHOWCASE CARDS
══════════════════════════════════════════ */
.cv-shop-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0 28px;
}
@media (max-width: 768px) { .cv-shop-cats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .cv-shop-cats-grid { grid-template-columns: 1fr 1fr; gap: 8px; } }

.cv-shop-cat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: border-color .15s, box-shadow .15s, transform .15s;
  position: relative;
}
.cv-shop-cat-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(30,122,70,.1);
  transform: translateY(-2px);
  text-decoration: none;
}
.cv-shop-cat-card-cta { border-color: var(--green); }
.cv-shop-cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cv-shop-cat-text { flex: 1; min-width: 0; }
.cv-shop-cat-text strong { display: block; font-size: .9rem; font-weight: 700; color: var(--dark); }
.cv-shop-cat-text span { display: block; font-size: .72rem; color: var(--gray); margin-top: 2px; }
.cv-shop-cat-arr { color: var(--green); font-weight: 700; font-size: .9rem; flex-shrink: 0; }
.cv-shop-cat-pill-active { background: var(--green); color: #fff; border-color: var(--green); }

/* ══════════════════════════════════════════
   TELEKLINIK — TRUST BADGES + TOP3 WIDGET
══════════════════════════════════════════ */
.cv-clinic-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cv-clinic-header-info { flex: 1; min-width: 0; }
.cv-clinic-trust-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.cv-clinic-tbadge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  font-size: .76rem;
  font-weight: 600;
  color: var(--text);
  cursor: default;
}
.cv-clinic-tbadge-price {
  background: var(--green-pale);
  border-color: var(--green);
  color: var(--green);
}

.cv-clinic-top3 {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  min-width: 220px;
  flex-shrink: 0;
}
.cv-clinic-top3-head {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.cv-clinic-top3-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  font-size: .85rem;
  transition: color .15s;
}
.cv-clinic-top3-row:last-of-type { border-bottom: none; }
.cv-clinic-top3-row:hover { color: var(--green); text-decoration: none; }
.cv-clinic-top3-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cv-clinic-top3-price { color: var(--green); font-weight: 700; white-space: nowrap; flex-shrink: 0; }
.cv-clinic-top3-all {
  display: block;
  margin-top: 10px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}
.cv-clinic-top3-all:hover { text-decoration: underline; }
@media (max-width: 680px) { .cv-clinic-top3 { width: 100%; } }

/* ══════════════════════════════════════════
   PRODUCT CARD — HERSTELLER ATTRIBUTION
══════════════════════════════════════════ */
.cv-card-hersteller {
  font-size: .7rem;
  color: var(--gray-2);
  margin-top: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ══════════════════════════════════════════
   PRODUCT CARD — THC PROGRESS BAR
══════════════════════════════════════════ */
.cv-thc-bar-wrap { margin-top: 5px; }
.cv-thc-bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .67rem;
  color: var(--gray-2);
  margin-bottom: 3px;
  letter-spacing: .02em;
}
.cv-thc-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.cv-thc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #4a9e6e 0%, #92400e 100%);
  border-radius: 2px;
}

/* ══════════════════════════════════════════
   ARCHIVE — HERSTELLER CHIPS SECTION
══════════════════════════════════════════ */
.cv-archive-hersteller {
  padding: 26px 0 8px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}
.cv-archive-hersteller h3 {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin: 0 0 13px;
}
.cv-hersteller-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.cv-hersteller-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 13px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .8rem;
  color: var(--dark);
  text-decoration: none;
  transition: border-color .15s, background .15s, color .15s;
  white-space: nowrap;
}
.cv-hersteller-chip:hover {
  border-color: var(--green-pale2);
  background: var(--green-pale);
  color: var(--green);
  text-decoration: none;
}
.cv-hersteller-chip-count { font-size: .68rem; color: var(--gray-2); }
.cv-hersteller-chip:hover .cv-hersteller-chip-count { color: var(--green); }

/* ══════════════════════════════════════════
   PRODUCT CARD — TOP BADGE
══════════════════════════════════════════ */
.cv-badge-top {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #7c3aed;
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   PRODUCT CARD — HOVER RING ACCENT
══════════════════════════════════════════ */
.cv-product-card {
  outline: 2px solid transparent;
  outline-offset: 0;
  transition: transform .18s ease, box-shadow .18s ease, outline-color .18s ease, border-color .18s ease;
}
.cv-product-card:hover { outline-color: var(--green-pale2); }

/* ══════════════════════════════════════════
   LEGAL PAGES (Impressum, Datenschutz)
══════════════════════════════════════════ */
.cv-legal-page { padding: 32px 0 64px; }
.cv-legal-wrap { max-width: 780px; margin: 0 auto; }
.cv-legal-wrap h1 { font-size: 2rem; font-weight: 800; color: var(--dark); margin: 24px 0 32px; letter-spacing: -.03em; }
.cv-legal-section { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.cv-legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cv-legal-section h2 { font-size: 1rem; font-weight: 700; color: var(--dark); margin: 0 0 12px; letter-spacing: -.01em; }
.cv-legal-section p { font-size: .92rem; color: var(--gray); line-height: 1.7; margin: 0 0 10px; }
.cv-legal-section p:last-child { margin-bottom: 0; }
.cv-legal-section a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.cv-legal-section a:hover { color: var(--green-dark); }
.cv-legal-notice { background: var(--bg-subtle); border-radius: 12px; padding: 20px 24px; border: 1px solid var(--border); }
.cv-legal-notice h2 { color: var(--green); }

/* ══════════════════════════════════════════
   SHOP — MOBILE FILTER TOGGLE & DRAWER
══════════════════════════════════════════ */
.cv-filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg);
  border: 1.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  margin-bottom: 12px;
  transition: border-color .15s, background .15s;
}
.cv-filter-toggle:hover { border-color: var(--green); background: var(--green-pale); }

.cv-filter-close {
  display: none;
  position: absolute;
  top: 6px;
  right: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.cv-filter-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1000;
  opacity: 0;
  transition: opacity .22s;
}
.cv-filter-backdrop.cv-filter-open { opacity: 1; }

@media (max-width: 768px) {
  .cv-filter-toggle { display: flex; }
  .cv-filter-close { display: flex; }
  .cv-filter-backdrop { display: block; pointer-events: none; }
  .cv-filter-backdrop.cv-filter-open { pointer-events: auto; }

  .cv-filter-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--bg);
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -4px 32px rgba(0,0,0,.14);
    padding: 24px 20px 32px;
    transform: translateY(100%);
    transition: transform .25s ease;
    max-height: 75vh;
    overflow-y: auto;
  }
  .cv-filter-drawer.cv-filter-open { transform: translateY(0); }

  .cv-filter-form { flex-direction: column; align-items: flex-start; gap: 18px; }
  .cv-filter-group { flex-direction: column; align-items: flex-start; gap: 8px; width: 100%; }
  .cv-filter-pills { flex-wrap: wrap; gap: 8px; }
  .cv-pill { padding: 9px 16px; font-size: .88rem; min-height: 40px; }
  .cv-filter-sort { margin-left: 0; width: 100%; }
  .cv-select { width: 100%; }
}

/* ══════════════════════════════════════════
   QUIZ — PROGRESS INDICATOR
══════════════════════════════════════════ */
.cv-quiz-progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.cv-quiz-step-count {
  font-size: .82rem;
  font-weight: 700;
  color: var(--gray);
  white-space: nowrap;
  min-width: 36px;
}
.cv-quiz-progress-bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.cv-quiz-progress-fill {
  height: 100%;
  background: var(--green);
  border-radius: 99px;
  transition: width .3s ease;
}

/* ══════════════════════════════════════════
   PRODUCT PRICE TABLE — wrapper class fix (replaces :has() for compat)
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .cv-clinic-table-wrap-product {
    overflow-x: visible;
    border: none;
    box-shadow: none;
    background: transparent;
  }
}

/* ══════════════════════════════════════════
   TELEKLINIK LISTING CARDS — mehr Info
══════════════════════════════════════════ */
.cv-clinic-listing-card { position: relative; display: flex; flex-direction: column; gap: 6px; padding: 16px; }
.cv-clinic-listing-best { border-color: var(--green) !important; background: #f0fdf4 !important; }
.cv-clinic-listing-badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 2px;
}
.cv-clinic-listing-meta { display: flex; flex-direction: column; gap: 3px; }
.cv-clinic-listing-price { font-size: .88rem; color: var(--text); }
.cv-clinic-listing-price strong { color: var(--green); font-size: 1rem; }
.cv-clinic-listing-rezept { font-size: .78rem; color: var(--gray); }
.cv-clinic-listing-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; border-top: 1px solid var(--border); padding-top: 8px; }
.cv-clinic-listing-count { font-size: .78rem; color: var(--gray-2); }
.cv-clinic-listing-cta { font-size: .8rem; font-weight: 700; color: var(--green); }

/* ══════════════════════════════════════════
   QUIZ — ZURÜCK-BUTTON
══════════════════════════════════════════ */
.cv-quiz-back {
  background: none;
  border: none;
  color: var(--gray);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.cv-quiz-back:hover { color: var(--green); }

/* ══════════════════════════════════════════
   RATGEBER — STICKY READ CTA
══════════════════════════════════════════ */
.cv-sticky-read-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cv-sticky-read-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  flex-wrap: wrap;
}
.cv-sticky-read-label { font-size: .85rem; font-weight: 600; color: var(--dark); }
.cv-sticky-read-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--gray);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) { .cv-sticky-read-cta { display: none; } }

/* ══════════════════════════════════════════
   PRODUCT CARDS — title clamp (Hersteller + Similar)
══════════════════════════════════════════ */
.cv-product-card h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ══════════════════════════════════════════
   SIMILAR SORTEN — horizontal scroll + fade on mobile
══════════════════════════════════════════ */
@media (max-width: 600px) {
  .cv-similar-section { position: relative; }
  .cv-similar-grid {
    grid-template-columns: repeat(4, 170px) !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    margin-right: -16px;
  }
  .cv-similar-grid > * { scroll-snap-align: start; }
  .cv-similar-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 40px;
    bottom: 10px;
    width: 52px;
    background: linear-gradient(to right, transparent, #fff 85%);
    pointer-events: none;
  }
}

/* ══════════════════════════════════════════
   PAGE — MIN HEIGHT (Quiz/Glossar etc. nicht am Footer kleben)
══════════════════════════════════════════ */
.cv-page { min-height: 72vh; }

/* ══════════════════════════════════════════
   CANNAZEN PARTNER POPUP
══════════════════════════════════════════ */
.cv-partner-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 8000;
  width: 280px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  overflow: hidden;
  border: 1px solid var(--border);
  animation: cv-popup-in .3s ease;
}
@keyframes cv-popup-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cv-partner-popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: rgba(255,255,255,.85);
  border: none;
  font-size: 1.1rem;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.cv-partner-popup-img { width: 100%; height: 150px; overflow: hidden; }
.cv-partner-popup-img img,
.cv-partner-popup-img video { width: 100%; height: 100%; object-fit: cover; display: block; }
.cv-partner-popup-body { padding: 14px 16px 16px; }
.cv-partner-popup-label {
  display: inline-block;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 6px;
}
.cv-partner-popup-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 6px;
  line-height: 1.35;
}
.cv-partner-popup-text {
  font-size: .78rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0 0 12px;
}
.cv-partner-popup-cta { width: 100%; justify-content: center; text-align: center; }

@media (max-width: 480px) {
  .cv-partner-popup { bottom: 16px; right: 12px; left: 12px; width: auto; }
}

/* ══════════════════════════════════════════
   PRODUCT — SOLO CLINIC CARD (1 Klinik)
══════════════════════════════════════════ */
.cv-solo-clinic-card {
  background: var(--green-pale);
  border: 1.5px solid var(--green);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 12px;
}
.cv-solo-clinic-notice {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 16px;
}
.cv-solo-clinic-body {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.cv-solo-clinic-name a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}
.cv-solo-clinic-name a:hover { color: var(--green); }
.cv-solo-clinic-price strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -.04em;
}
.cv-solo-clinic-price span { font-size: .9rem; color: var(--gray); }
.cv-solo-clinic-note { font-size: .75rem; color: var(--gray); margin: 0; }

/* ══════════════════════════════════════════
   GÜNSTIG PAGE — INTRO STATS BAR
══════════════════════════════════════════ */
.cv-guenstig-intro-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #f0fdf4 0%, #e8f5ee 100%);
  border: 1px solid var(--green-pale2);
  border-radius: var(--radius);
  padding: 16px 22px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.cv-guenstig-intro-stat { display: flex; flex-direction: column; gap: 2px; }
.cv-guenstig-intro-stat strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -.03em;
  line-height: 1;
}
.cv-guenstig-intro-stat span {
  font-size: .68rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 3px;
}
.cv-guenstig-intro-div { width: 1px; height: 36px; background: var(--border); }
@media (max-width: 480px) {
  .cv-guenstig-intro-bar { gap: 14px; padding: 14px 16px; }
  .cv-guenstig-intro-div { display: none; }
}

/* ══════════════════════════════════════════
   GÜNSTIG PAGE — RANK BADGES (top 3)
══════════════════════════════════════════ */
.cv-guenstig-rank {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.cv-guenstig-rank-1 { background: #fef08a; color: #713f12; }
.cv-guenstig-rank-2 { background: #e5e7eb; color: #374151; }
.cv-guenstig-rank-3 { background: #fed7aa; color: #7c2d12; }

/* ══════════════════════════════════════════
   HERSTELLER — EDITORIAL ABOUT SECTION
══════════════════════════════════════════ */
.cv-hersteller-about {
  margin: 32px 0;
  padding: 28px 32px;
  background: #f9fafb;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.cv-hersteller-about h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 16px;
}
.cv-hersteller-about-text p {
  color: var(--gray);
  line-height: 1.8;
  margin: 0 0 14px;
  font-size: .95rem;
}
.cv-hersteller-about-text p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .cv-hersteller-about { padding: 20px 18px; }
}

/* ══════════════════════════════════════════
   MOBILE UX FIXES — COMPREHENSIVE PASS
   (2026-04-27, 80% mobile users)
══════════════════════════════════════════ */

/* ── 1. Global Touch UX ── */
a, button, [role="button"], label, summary,
.cv-pill, .cv-chip, .cv-btn,
.cv-mnav-item, .cv-product-card,
.cv-blog-card, .cv-hersteller-card,
.cv-clinic-listing-card {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* ── 2. Sticky Bar — Safe Area Fix (already set inline, reinforce) ── */
@media (max-width: 768px) {
  .cv-back-top {
    bottom: 70px;
  }
}

/* ── 3. Cookie Banner — Compact Mobile ── */
@media (max-width: 600px) {
  .cv-cookie-bar { padding: 14px 16px; }
  .cv-cookie-bar-inner { flex-direction: column; gap: 10px; }
  .cv-cookie-bar-text { min-width: 0; font-size: .82rem; }
  .cv-cookie-bar-actions { width: 100%; }
  .cv-cookie-bar-actions .cv-cookie-btn-accept,
  .cv-cookie-bar-actions .cv-cookie-btn-decline { flex: 1; text-align: center; justify-content: center; }
  body.cv-cookie-bar-open { padding-bottom: 140px; }
}

/* ── 4. Mobile Nav — Safe Area + Touch Targets ── */
.cv-mnav-body {
  padding-bottom: 24px;
}
.cv-mnav-close { width: 40px; height: 40px; }
.cv-mnav-item-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cv-mnav-item-info span { font-size: .82rem; }

/* ── 5. Filter Drawer — Safe Area ── */
@media (max-width: 768px) {
  .cv-filter-drawer {
    padding-bottom: 32px;
  }
}

/* ── 6. Archive Hero — Smaller on 480px ── */
@media (max-width: 480px) {
  .cv-archive-hero img { height: 160px; }
  .cv-archive-hero-overlay { padding: 14px 18px; }
  .cv-archive-hero-overlay h1 { font-size: 1.15rem; margin-bottom: 0; }
  .cv-archive-hero-overlay p { display: none; }
  .cv-archive-meta-bar { margin-top: 12px; }
}

/* ── 7. Homepage hv2 — Full-width CTAs on 480px ── */
@media (max-width: 480px) {
  .cv-hv2-actions { flex-direction: column; }
  .cv-hv2-actions .cv-btn { width: 100%; justify-content: center; text-align: center; }
  .cv-hv2-panel { padding: 22px 18px 24px; }
  .cv-hv2-panel h1 { font-size: 1.55rem; }
  .cv-hv2-stats { gap: 12px; }
  .cv-hv2-stat strong { font-size: 1.2rem; }
  .cv-hv2-stat-div { height: 28px; }
}

/* ── 8. Blog Category Label — Readability ── */
.cv-blog-cat { font-size: .75rem; }

/* ── 9. Active feedback on touch ── */
@media (hover: none) {
  .cv-btn:active { opacity: .82; }
  .cv-pill:active { opacity: .82; }
  .cv-product-card:active { transform: scale(.98); }
  .cv-hersteller-card:active { transform: scale(.98); }
  .cv-blog-card:active { transform: scale(.99); }
}

/* ── 10. Product Chips — Small Phone ── */
@media (max-width: 400px) {
  .cv-product-chips { gap: 6px; }
  .cv-chip { min-width: 60px; padding: 8px 10px; }
  .cv-chip-val { font-size: 1.1rem; }
  .cv-chip-label { font-size: .65rem; }
  .cv-product-hero-img { width: 110px; min-width: 110px; max-width: 110px; }
  .cv-product-hero-img img { width: 110px; height: 110px; }
}

/* ── 11. Shop Trust Bar — Wrap Tight ── */
@media (max-width: 480px) {
  .cv-shop-trust-bar { gap: 10px; }
  .cv-shop-trust-bar span { font-size: .75rem; }
}

/* ── 12. Sticky Product CTA — ensure above nav bar ── */
@media (max-width: 768px) {
  .cv-sticky-cta {
    padding-bottom: 10px;
  }
}

/* ── 13. Breadcrumb — Horizontal Scroll on Mobile ── */
@media (max-width: 480px) {
  .cv-breadcrumb { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; }
  .cv-breadcrumb ol { flex-wrap: nowrap; white-space: nowrap; padding-bottom: 2px; }
  .cv-breadcrumb li:last-child { white-space: nowrap; }
}

/* ── 14. Archive Sort+Filter Row — responsive ── */
@media (max-width: 360px) {
  .cv-archive-sort { gap: 6px; }
  .cv-archive-sort .cv-pill { padding: 7px 10px; font-size: .8rem; }
}

/* ── 15. Teleklinik Listing — Cards compact on 360px ── */
@media (max-width: 380px) {
  .cv-clinic-listing-card { padding: 16px; }
  .cv-clinic-listing-meta { gap: 6px; }
}

/* ── 16. Hersteller Grid — reduce gap on 360px ── */
@media (max-width: 380px) {
  .cv-hersteller-grid { gap: 8px; }
  .cv-hersteller-card-name { font-size: .88rem; }
  .cv-hersteller-card-count { font-size: .75rem; }
}

/* ── 17. Product Grid Cards — min-height on 2-col mobile ── */
@media (max-width: 480px) {
  .cv-product-card { min-height: 0; }
  .cv-product-info h3 { font-size: .88rem; line-height: 1.35; }
  .cv-product-price { font-size: .88rem; }
  .cv-product-price strong { font-size: .92rem; }
  .cv-thc-bar-row { font-size: .75rem; }
}

/* ── 18. FAQ Touch Targets ── */
@media (max-width: 480px) {
  .cv-faq-item summary { padding: 16px; min-height: 48px; display: flex; align-items: center; justify-content: space-between; }
}

/* ── 19. Hersteller About Section Mobile ── */
@media (max-width: 480px) {
  .cv-hersteller-about { padding: 16px; }
  .cv-hersteller-about-text p { font-size: .88rem; line-height: 1.7; }
}

/* ── 20. Pagination Touch Targets ── */
@media (max-width: 480px) {
  .cv-pagination .cv-btn { min-height: 44px; }
}

/* ══════════════════════════════════════════
   MOBILE BOTTOM NAVIGATION
══════════════════════════════════════════ */
.cv-bot-nav { display: none; }

@media (max-width: 767px) {
  /* Nav bar */
  .cv-bot-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 950;
    background: #fff;
    border-top: 1px solid #e8e8e8;
    height: 58px;
    align-items: stretch;
    box-shadow: 0 -2px 14px rgba(0,0,0,.09);
    padding-bottom: 0;
  }

  /* Tab items */
  .cv-bot-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    color: #aaa;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .01em;
    padding: 6px 2px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: color .15s;
  }
  .cv-bot-nav-item.is-active { color: #1e7a46; }
  .cv-bot-nav-item svg { transition: stroke .15s; }

  /* Center (Kliniken) raised bubble */
  .cv-bot-nav-center {
    position: relative;
    justify-content: flex-end;
    padding-bottom: 6px;
  }
  .cv-bot-nav-center span:last-child { margin-top: 2px; }
  .cv-bot-nav-bubble {
    width: 42px;
    height: 42px;
    background: #1e7a46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -18px;
    box-shadow: 0 3px 14px rgba(30,122,70,.38);
    flex-shrink: 0;
  }
  .cv-bot-nav-center.is-active .cv-bot-nav-bubble { background: #155e35; }
  .cv-bot-nav-center.is-active { color: #1e7a46; }

  /* Body bottom clearance */
  body { padding-bottom: 58px; }
  body.cv-cookie-bar-open { padding-bottom: 168px; }

  /* Sticky product CTA above nav */
  .cv-sticky-cta {
    bottom: 58px;
    padding-bottom: 10px;
  }

  /* Sticky bar (shop/archive/etc.) above nav */
  .cv-sticky-bar {
    bottom: 58px;
    padding-bottom: 0;
  }

  /* Cookie bar above nav */
  .cv-cookie-bar {
    bottom: 58px;
  }

  /* Back-to-top above nav */
  .cv-back-top {
    bottom: 82px;
  }

  /* Sticky read CTA (single posts) above nav */
  .cv-sticky-read-cta {
    bottom: 58px;
    padding-bottom: 0;
  }

  /* Partner popup above nav */
  .cv-partner-popup {
    bottom: 66px;
    right: 12px;
    left: 12px;
    width: auto;
  }
}

/* ══════════════════════════════════════════
   GLOSSAR ALPHABET NAV — MOBILE TOUCH TARGETS
══════════════════════════════════════════ */
.cv-glossar-alpha {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.cv-glossar-alpha-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  padding: 4px 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-dark);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  text-decoration: none;
  transition: background .15s, border-color .15s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.cv-glossar-alpha-btn:hover,
.cv-glossar-alpha-btn.is-active {
  background: var(--green-pale);
  border-color: var(--green-light);
  color: var(--green-dark);
}
@media (max-width: 480px) {
  .cv-glossar-alpha-btn { min-width: 40px; min-height: 40px; font-size: .82rem; }
}

/* ── Clinic table headers — mobile readability ── */
@media (max-width: 480px) {
  .cv-clinic-table thead th { font-size: .8rem; padding: 10px 12px; }
  .cv-clinic-table td { padding: 12px 12px; }
}

/* ══════════════════════════════════════════
   COOKIE BANNER — MOBILE
══════════════════════════════════════════ */
.cv-cookie-text-short { display: none; }
.cv-cookie-text-long  { display: inline; }

@media (max-width: 600px) {
  .cv-cookie-text-long  { display: none; }
  .cv-cookie-text-short { display: inline; }

  .cv-cookie-bar { padding: 10px 14px; }
  .cv-cookie-bar-inner {
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
  }
  .cv-cookie-bar-text {
    flex: 1;
    min-width: 0;
    font-size: .82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .cv-cookie-bar-actions { gap: 6px; flex-shrink: 0; }
  .cv-cookie-btn-accept,
  .cv-cookie-btn-decline {
    padding: 10px 14px;
    min-height: 44px;
    font-size: .82rem;
    white-space: nowrap;
  }
}

/* ══════════════════════════════════════════
   v32 — Ultra SEO / Modern additions
══════════════════════════════════════════ */

/* ── Product card lift on hover ── */
.cv-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
}

/* ── FAQ open state — green left accent ── */
.cv-faq-item summary {
  border-left: 3px solid transparent;
  transition: border-color .15s, color .15s;
}
.cv-faq-item[open] > summary {
  border-left-color: var(--green);
  color: var(--green);
}

/* ── Klinik-Direktlinks ── */
.cv-klinik-direktlinks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 14px 0 0;
}
.cv-klinik-direktlinks-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-2);
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Sortenguide section ── */
.cv-sortenguide {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px 0;
}
.cv-sortenguide-inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  min-height: 220px;
}
.cv-sortenguide-content {
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cv-sortenguide-content h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.cv-sortenguide-content > p {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
}
.cv-sortenguide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}
.cv-sortenguide-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  color: var(--text);
}
.cv-sortenguide-list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.2'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center/9px 9px;
}
.cv-sortenguide-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cv-sortenguide-media {
  position: relative;
  overflow: hidden;
  background: var(--bg-mid);
}
.cv-sortenguide-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .cv-sortenguide-inner { grid-template-columns: 1fr; }
  .cv-sortenguide-media { height: 180px; }
  .cv-sortenguide-content { padding: 18px; }
  .cv-sortenguide-list { grid-template-columns: 1fr; }
}

/* ── Compare Widget ── */
.cv-compare-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin: 20px 0;
  flex-wrap: wrap;
}
.cv-compare-widget > svg { color: var(--green); flex-shrink: 0; }
.cv-compare-widget > span {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray);
  white-space: nowrap;
}

/* ── Archive Stats Strip ── */
.cv-archive-stats {
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, #f0fdf4 0%, #f9fafb 100%);
  border: 1px solid var(--green-pale2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}
.cv-archive-stat {
  flex: 1;
  padding: 12px 18px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.cv-archive-stat:last-child { border-right: none; }
.cv-archive-stat strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -.03em;
  line-height: 1;
}
.cv-archive-stat span {
  display: block;
  font-size: .67rem;
  color: var(--gray-2);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 3px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .cv-archive-stats { flex-wrap: wrap; }
  .cv-archive-stat { flex: 1 1 45%; border-bottom: 1px solid var(--border); }
  .cv-archive-stat:nth-child(even) { border-right: none; }
}

/* ── Clinic Cross-Links (teleklinik pages) ── */
.cv-clinic-crosslinks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 20px 0 24px;
  border-top: 1px solid var(--border);
}

/* ── Author Box (single posts) ── */
.cv-author-box {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin: 36px 0 28px;
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: auto auto;
  gap: 0 20px;
}
.cv-author-avatar {
  grid-row: 1 / 3;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cv-author-info { grid-column: 2; }
.cv-author-name {
  font-weight: 800;
  font-size: .95rem;
  color: var(--dark);
}
.cv-author-jobtitle {
  font-size: .78rem;
  color: var(--primary);
  font-weight: 600;
  margin: 2px 0 8px;
}
.cv-author-bio {
  font-size: .82rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}
.cv-author-reviewed {
  grid-column: 2;
  margin-top: 12px;
  font-size: .76rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.cv-author-reviewed a { color: var(--dark); font-weight: 600; }
@media (max-width: 480px) {
  .cv-author-box { grid-template-columns: 48px 1fr; }
  .cv-author-avatar { width: 48px; height: 48px; font-size: .9rem; }
}

/* ── Team Cards (ueber-uns) ── */
.cv-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.cv-team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.cv-team-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.cv-team-card-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.cv-team-card-name { font-weight: 800; font-size: .95rem; color: var(--dark); }
.cv-team-card-title { font-size: .78rem; color: var(--primary); font-weight: 600; margin-top: 2px; }
.cv-team-card-bio { font-size: .84rem; color: var(--gray); line-height: 1.65; margin: 0; }
.cv-publisher-card {
  background: var(--primary-light, #f0fdf4);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.cv-publisher-card-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.cv-publisher-card-name { font-weight: 900; font-size: 1.1rem; color: var(--dark); }
.cv-publisher-card-title { font-size: .82rem; color: var(--primary); font-weight: 700; margin: 3px 0 10px; }
.cv-publisher-card-bio { font-size: .88rem; color: var(--gray); line-height: 1.7; margin: 0 0 12px; }
@media (max-width: 480px) {
  .cv-publisher-card { flex-direction: column; }
}

/* ── Autor-Seite ── */
.cv-autor-post-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.cv-autor-post-card:hover { border-color: var(--primary); box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.cv-autor-post-card img { width: 80px; height: 60px; object-fit: cover; border-radius: 6px; }
.cv-autor-post-thumb-ph { width: 80px; height: 60px; border-radius: 6px; }
.cv-autor-post-title { font-weight: 700; font-size: .88rem; color: var(--dark); line-height: 1.4; }
.cv-autor-post-date { font-size: .74rem; color: var(--gray); margin-top: 4px; }

/* ── Kostenrechner ── */
.cv-rechner-page .cv-field input[type=range] { width: 100%; height: 6px; }
@media (max-width: 480px) {
  #rc-result > div:last-child { grid-template-columns: 1fr 1fr; }
}

/* ── cannabis-rezept Hub-Page ── */
.cv-rezept-cta-box { background: var(--cv-green-light, #f0faf3); border: 1px solid var(--cv-green, #22c55e); border-radius: 10px; padding: 1rem 1.25rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin: 1.25rem 0 1.5rem; }
.cv-rezept-cta-box strong { flex: 1; min-width: 180px; }
.cv-rezept-table { width: 100%; font-size: .92rem; }
.cv-rezept-table th { white-space: nowrap; }
.cv-kliniken-table-wrap { overflow-x: auto; margin: 1rem 0 1.5rem; border-radius: 8px; border: 1px solid #e5e7eb; }

/* ── Andere Kliniken im Vergleich (single.php) ── */
.cv-other-clinics-block { margin-top: 2rem; padding: 1.5rem; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; }
.cv-other-clinics-block h3 { margin: 0 0 .4rem; font-size: 1.1rem; }
.cv-other-clinics-block > p { margin: 0 0 1rem; color: #64748b; font-size: .92rem; }
.cv-other-clinics-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .6rem; }
.cv-other-clinic-card { display: flex; flex-direction: column; gap: .15rem; padding: .75rem 1rem; background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; text-decoration: none; color: inherit; transition: border-color .15s, box-shadow .15s; }
.cv-other-clinic-card:hover { border-color: var(--cv-green, #22c55e); box-shadow: 0 2px 8px rgba(34,197,94,.12); }
.cv-other-clinic-card strong { font-size: .9rem; color: #1e293b; }
.cv-other-clinic-card span { font-size: .82rem; color: var(--cv-green-dark, #16a34a); font-weight: 600; }
.cv-other-clinic-card small { font-size: .75rem; color: #94a3b8; }
