/* CannaVape Components CSS */

/* ===== SINGLE POST ===== */
.cv-single-post { }
.cv-post-cats { margin-bottom: .75rem; }
.cv-cat-badge {
  display: inline-block;
  background: var(--cv-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 20px;
  text-decoration: none;
  margin-right: 4px;
}
.cv-cat-badge:hover { background: #0da847; }
.cv-post-meta { color: #888; font-size: 13px; margin-bottom: 1.5rem; }
.cv-post-featured-img { margin: 0 0 2rem; border-radius: var(--cv-radius); overflow: hidden; }
.cv-post-featured-img img { width: 100%; height: auto; display: block; }
.entry-content { line-height: 1.8; color: var(--cv-text); }
.entry-content h2 { margin: 2rem 0 .75rem; font-size: 1.5rem; }
.entry-content h3 { margin: 1.5rem 0 .5rem; font-size: 1.25rem; }
.entry-content p { margin-bottom: 1rem; }
.entry-content ul, .entry-content ol { margin: 0 0 1rem 1.5rem; }
.entry-content li { margin-bottom: .4rem; }
.entry-content a { color: var(--cv-green); }
.entry-content a:hover { text-decoration: underline; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.entry-content th, .entry-content td { border: 1px solid var(--cv-border); padding: .6rem .8rem; text-align: left; }
.entry-content th { background: var(--cv-light); font-weight: 600; }
.entry-content strong { font-weight: 700; }
.entry-content img { max-width: 100%; height: auto; border-radius: 6px; }

/* ===== TAGS ===== */
.cv-post-tags { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--cv-border); }
.cv-tag {
  display: inline-block;
  border: 1px solid var(--cv-border);
  color: #555;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 20px;
  text-decoration: none;
  margin: 0 4px 4px 0;
}
.cv-tag:hover { border-color: var(--cv-green); color: var(--cv-green); }

/* ===== RELATED POSTS ===== */
.cv-related-posts { margin-top: 3rem; }
.cv-related-posts h3 { font-size: 1.25rem; margin-bottom: 1.25rem; }

/* ===== POSTS GRID ===== */
.cv-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) { .cv-posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .cv-posts-grid { grid-template-columns: 1fr; } }

.cv-post-card {
  background: #fff;
  border-radius: var(--cv-radius);
  box-shadow: var(--cv-shadow);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid var(--cv-border);
}
.cv-post-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.cv-post-card a { text-decoration: none; color: inherit; display: block; }
.cv-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--cv-light); }
.cv-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cv-card-img-placeholder { background: linear-gradient(90deg, #e8f5e9 0%, #d4f0db 40%, #e8f5e9 80%); background-size: 200% 100%; animation: cv-shimmer 1.8s ease-in-out infinite; }
@keyframes cv-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.cv-card-body { padding: 1rem; }
.cv-card-title { font-size: 1rem; font-weight: 700; margin: .4rem 0 .5rem; line-height: 1.4; }
/* Override Enfold h3 margins inside post cards */
.cv-post-card h3 { font-size: 1rem; font-weight: 700; margin: .35rem 0 .4rem !important; line-height: 1.4; color: #1a1a2e; }
.cv-card-excerpt { font-size: .875rem; color: #666; margin-bottom: .5rem; line-height: 1.5; }
.cv-card-date { font-size: .75rem; color: #999; }
.cv-card-cta { display: inline-block; font-size: .8rem; font-weight: 600; color: var(--cv-green); margin-top: .25rem; }

/* ===== VERGLEICH GRID ===== */
.cv-vergleich-grid-section { margin-top: 3rem; padding-top: 2rem; border-top: 2px solid var(--cv-border); }
.cv-vergleich-grid-section h2 { font-size: 1.6rem; margin-bottom: 1.5rem; }

/* ===== ARCHIVE HEADER ===== */
.cv-archive-header { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 2px solid var(--cv-green); }
.cv-archive-header h1 { font-size: 2rem; margin-bottom: .5rem; }
.cv-archive-header p { color: #666; }
.cv-archive-intro { background: #f8f9fa; border-left: 4px solid var(--cv-green); border-radius: 0 8px 8px 0; padding: 1rem 1.25rem; margin-bottom: 2rem; }
.cv-archive-intro p { margin: 0; color: #444; font-size: .95rem; line-height: 1.7; }

/* ===== BREADCRUMB ===== */
.cv-breadcrumb { padding: .75rem 0; margin-bottom: 1.25rem; }
.cv-breadcrumb ol {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .3rem;
}
.cv-breadcrumb li {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .85rem;
  color: #888;
}
.cv-breadcrumb li:not(:last-child)::after { content: '›'; color: #ccc; }
.cv-breadcrumb a { color: #666 !important; text-decoration: none !important; }
.cv-breadcrumb a:hover { color: var(--cv-green) !important; }
.cv-breadcrumb [aria-current="page"] { color: #999; }

/* ===== HOME HERO ===== */
.cv-home-hero {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 100vw;
  margin-left: 0;
  margin-right: 0;
  margin-top: -2rem;
  margin-bottom: 0;
  min-height: 540px;
  display: flex;
  align-items: center;
  background: url('https://cannavape.de/wp-content/uploads/2025/05/vaporizer-shop-sommer-pen-rot-thc-cannabis.jpg') #0d1a0f center/cover no-repeat;
  color: #fff;
  padding: 5rem 2rem 4.5rem;
  overflow: hidden;
}
.cv-home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(4,15,7,.90) 0%, rgba(8,28,12,.62) 50%, rgba(0,0,0,.72) 100%);
}
.cv-home-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.cv-home-hero h1 {
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -.025em;
  text-shadow: 0 2px 24px rgba(0,0,0,.55);
}
.cv-home-hero p {
  font-size: 1.1rem;
  opacity: .85;
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: .01em;
}
.cv-home-hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
@media (max-width: 700px) {
  .cv-home-hero { min-height: 360px; padding: 3rem 1.25rem 2.75rem; }
  .cv-home-hero h1 { font-size: 1.7rem; }
  .cv-home-hero p { font-size: .95rem; margin-bottom: 1.75rem; }
}
@media (max-width: 400px) {
  .cv-home-hero { min-height: 320px; padding: 2.5rem 1rem 2.25rem; }
  .cv-home-hero h1 { font-size: 1.45rem; }
}

/* ===== QUICKNAV ===== */
.cv-home-quicknav { margin: 0 0 3rem; }
.cv-quicknav-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .75rem;
}
.cv-quicknav-grid.cv-qng-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 700px) { .cv-quicknav-grid.cv-qng-3 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) {
  .cv-quicknav-grid { grid-template-columns: repeat(2, 1fr); }
  .cv-quicknav-card { height: 120px; }
}

.cv-quicknav-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 158px;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: #132a18 center/cover no-repeat;
  transition: transform .22s, box-shadow .22s;
}
.cv-quicknav-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.22) 55%, rgba(0,0,0,.04) 100%);
  transition: opacity .22s;
}
.cv-quicknav-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(16,201,86,.22); }
.cv-quicknav-card:hover::before { opacity: .88; }
.cv-qn-inner {
  position: relative;
  z-index: 1;
  padding: .85rem .9rem;
}
.cv-qn-inner strong {
  display: block;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .18rem;
}
.cv-qn-inner span { font-size: .70rem; opacity: .78; line-height: 1.3; display: block; }
.cv-qn-icon { display: none; }

/* ===== HOME POSTS ===== */
.cv-home-posts h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }

/* ===== BUTTONS ===== */
.cv-btn-primary, .cv-btn-secondary {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: opacity .2s;
}
.cv-btn-primary { background: var(--cv-green); color: #fff; }
.cv-btn-primary:hover { opacity: .88; }
.cv-btn-secondary { background: rgba(255,255,255,.2); color: #fff; border: 2px solid rgba(255,255,255,.6); }
.cv-btn-secondary:hover { background: rgba(255,255,255,.3); }
.cv-btn-inline {
  display: inline-block;
  color: var(--cv-green);
  font-weight: 600;
  padding: .5rem 1rem;
  border: 2px solid var(--cv-green);
  border-radius: 6px;
  text-decoration: none;
  font-size: .9rem;
}
.cv-btn-inline:hover { background: var(--cv-green); color: #fff; }

/* ===== PAGINATION ===== */
.cv-pagination { text-align: center; margin: 2rem 0; }
.cv-page-num {
  display: inline-block;
  padding: .4rem .75rem;
  margin: 0 2px;
  border: 1px solid var(--cv-border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--cv-text);
  font-size: .875rem;
}
.cv-page-num.active { background: var(--cv-green); color: #fff; border-color: var(--cv-green); }
.cv-page-num:hover:not(.active) { border-color: var(--cv-green); color: var(--cv-green); }

/* ===== 404 ===== */
.cv-404 { text-align: center; padding: 4rem 1rem; }
.cv-404 h1 { font-size: 2rem; margin-bottom: 1rem; }
.cv-404 p { color: #666; margin-bottom: 2rem; }

/* ===== SEARCH ===== */
.cv-search-form { display: flex; gap: .5rem; margin-top: 1rem; }
.cv-search-form input { flex: 1; padding: .6rem 1rem; border: 1px solid var(--cv-border); border-radius: 6px; font-size: 1rem; }
.cv-search-form button { padding: .6rem 1.25rem; background: var(--cv-green); color: #fff; border: none; border-radius: 6px; cursor: pointer; font-weight: 700; }

/* ===== USP STRIP ===== */
.cv-usp-strip { background: var(--cv-dark); color: #fff; padding: 1.25rem 0; margin-bottom: 2rem; }
.cv-usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
@media (max-width: 700px) { .cv-usp-grid { grid-template-columns: repeat(2, 1fr); } }
.cv-usp-num { display: block; font-size: 2rem; font-weight: 800; color: var(--cv-green); line-height: 1.1; }
.cv-usp-label { font-size: .8rem; opacity: .8; }

/* ===== SECTION HEADER ===== */
.cv-section-header { margin-bottom: 1.75rem; }
.cv-section-header h2 { font-size: 1.6rem; margin-bottom: .4rem; }
.cv-section-header p { color: #666; font-size: .95rem; }

/* ===== SHOP TEASER ===== */
.cv-home-vergleich { margin-bottom: 2rem; }
.cv-shop-teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
@media (max-width: 700px) { .cv-shop-teaser-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cv-shop-teaser-grid { grid-template-columns: 1fr; } }
.cv-shop-teaser-card { display: flex; align-items: center; gap: .75rem; background: #fff; border: 1px solid var(--cv-border); border-radius: var(--cv-radius); padding: .75rem; text-decoration: none; color: inherit; transition: border-color .2s, box-shadow .2s; }
.cv-shop-teaser-card:hover { border-color: var(--cv-green); box-shadow: 0 4px 12px rgba(16,201,86,.12); }
.cv-shop-teaser-img { width: 52px; height: 52px; flex-shrink: 0; border-radius: 6px; overflow: hidden; background: var(--cv-light); }
.cv-shop-teaser-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cv-shop-teaser-placeholder { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.cv-shop-teaser-body strong { display: block; font-size: .85rem; font-weight: 700; margin-bottom: .1rem; line-height: 1.3; }
.cv-shop-teaser-body span { font-size: .78rem; color: var(--cv-green); }

/* ===== CITIES GRID ===== */
.cv-home-cities { margin-bottom: 3rem; }
.cv-cities-grid { display: flex; flex-wrap: wrap; gap: .6rem; }
.cv-city-chip { display: inline-flex; align-items: center; gap: .4rem; background: #fff; border: 1px solid var(--cv-border); border-radius: 20px; padding: .4rem 1rem; text-decoration: none; color: var(--cv-dark); font-size: .875rem; font-weight: 500; transition: border-color .2s, background .2s; }
.cv-city-chip:hover { border-color: var(--cv-green); background: #f0fff4; }
.cv-city-cnt { background: var(--cv-green); color: #fff; border-radius: 50%; font-size: .65rem; font-weight: 700; padding: 0; min-width: 1.5em; height: 1.5em; display: inline-flex; align-items: center; justify-content: center; line-height: 1; flex-shrink: 0; }

/* ===== CANNZEN CTA BANNER ===== */
.cv-cz-banner { background: linear-gradient(135deg, #0a8c3c 0%, #10c956 100%); border-radius: var(--cv-radius); padding: 1.5rem 2rem; margin: 2rem 0 3rem; }
.cv-cz-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cv-cz-text { color: #fff; }
.cv-cz-text strong { display: block; font-size: 1.2rem; font-weight: 800; margin-bottom: .2rem; }
.cv-cz-text span { font-size: .9rem; opacity: .9; }
.cv-cz-btn { background: #fff; color: var(--cv-green); padding: .75rem 1.75rem; border-radius: 6px; font-weight: 800; font-size: .95rem; text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: opacity .2s; }
.cv-cz-btn:hover { opacity: .9; }

/* ===== INLINE POST CTA ===== */
.cv-inline-cta { background: #f0fff4; border: 1px solid #b7ebc5; border-left: 4px solid var(--cv-green); border-radius: 0 var(--cv-radius) var(--cv-radius) 0; padding: 1rem 1.25rem; margin: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.cv-inline-cta-text strong { display: block; font-size: .95rem; font-weight: 700; color: var(--cv-dark); }
.cv-inline-cta-text span { font-size: .85rem; color: #555; }
.cv-inline-cta-btn:hover { opacity: .88; }

/* ===== BOTTOM POST CTA ===== */
.cv-bottom-cta { background: linear-gradient(135deg, #0a8c3c 0%, #10c956 100%); border-radius: var(--cv-radius); padding: 2rem; margin: 2.5rem 0; text-align: center; color: #fff; }
.cv-bottom-cta h3 { font-size: 1.3rem; margin-bottom: .5rem; color: #fff; }
.cv-bottom-cta p { opacity: .9; margin-bottom: 1.25rem; font-size: .95rem; color: #fff; }

/* ===== NAV HUB ===== */
.cv-nav-hub { margin: 2.5rem 0; }
.cv-nav-hub h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.cv-nav-hub-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
@media (max-width: 700px) { .cv-nav-hub-grid { grid-template-columns: repeat(2, 1fr); } }
.cv-hub-card { display: block; background: #fff; border: 1px solid var(--cv-border); border-radius: var(--cv-radius); padding: 1rem; text-decoration: none; color: var(--cv-dark); text-align: center; transition: border-color .2s, box-shadow .2s; }
.cv-hub-card:hover { border-color: var(--cv-green); box-shadow: 0 4px 12px rgba(16,201,86,.12); }
.cv-hub-icon { font-size: 1.5rem; margin-bottom: .35rem; display: block; }
.cv-hub-card strong { display: block; font-size: .875rem; font-weight: 700; margin-bottom: .15rem; }
.cv-hub-card span { font-size: .75rem; color: #888; }

/* ===== PAGE HEADER ===== */
.cv-page-header { margin-bottom: 2rem; }
.cv-page-header h1 { font-size: 2rem; margin-bottom: .5rem; }
.cv-page-header p { font-size: 1rem; color: #666; }

/* ===== CITY PAGE ===== */
.cv-city-header { margin-bottom: 2rem; }
.cv-city-stores { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (max-width: 600px) { .cv-city-stores { grid-template-columns: 1fr; } }
.cv-store-card { background: #fff; border: 1px solid var(--cv-border); border-radius: var(--cv-radius); padding: 1rem; }
.cv-store-card h3 { font-size: 1rem; margin-bottom: .25rem; }
.cv-store-card p { font-size: .875rem; color: #666; margin: .2rem 0; }
.cv-store-card a { color: var(--cv-green); font-size: .875rem; }

/* ===== FOOTER ===== */
#footer { padding: 3rem 1.5rem 2rem; background: #fff; border-top: 1px solid var(--cv-border); }
.cv-footer-inner {
  max-width: var(--cv-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1fr 1fr 1fr;
  gap: 2.5rem;
}
.cv-footer-col { display: flex; flex-direction: column; gap: .1rem; }
.cv-footer-brand img { display: block; margin-bottom: .75rem; }
.cv-footer-brand a, .cv-footer-col a {
  display: block;
  color: #444;
  text-decoration: none;
  padding: .25rem 0;
  font-size: .9rem;
  white-space: nowrap;
  line-height: 1.4;
}
.cv-footer-col a span {
  display: block;
  font-size: .75rem;
  color: #aaa;
  line-height: 1.2;
}
.cv-footer-col a:hover { color: var(--cv-green); }
.cv-footer-heading {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #999;
  margin-bottom: .5rem;
}
#socket { padding: 1rem 1.5rem; border-top: 1px solid var(--cv-border); }
#socket .copyright { font-size: .8rem; color: #666; }
#socket a { color: #444; }
@media (max-width: 900px) {
  .cv-footer-inner { grid-template-columns: 1fr 1fr; }
  .cv-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .cv-footer-inner { grid-template-columns: 1fr; }
}

/* ===== INLINE CTA BUTTON: text must be white even inside .entry-content ===== */
.entry-content .cv-inline-cta-btn,
.cv-inline-cta-btn { background: var(--cv-green); color: #fff !important; padding: .5rem 1.25rem; border-radius: 6px; font-weight: 700; font-size: .875rem; text-decoration: none !important; white-space: nowrap; flex-shrink: 0; transition: opacity .2s; }

/* ===== MOBILE DRAWER ===== */
#cvp-mnav {
  position: fixed;
  top: 0; right: 0;
  width: 88vw; max-width: 380px;
  height: 100dvh;
  background: #fff;
  z-index: 999999;
  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,.2);
  overflow: hidden;
}
#cvp-mnav.cvp-open { transform: translateX(0); }
#cvp-mnav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 999998;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
#cvp-mnav-overlay.cvp-open { opacity: 1; pointer-events: auto; }
body.cvp-drawer-open { overflow: hidden; }

/* Drawer header */
.cvp-mnav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 18px; border-bottom: 1px solid #f3f4f6; flex-shrink: 0;
}
.cvp-mnav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #111; }
.cvp-mnav-brand-icon {
  width: 36px; height: 36px; background: #10c956;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px; color: #fff; flex-shrink: 0; letter-spacing: -.5px;
}
.cvp-mnav-brand-text { font-size: 15px; font-weight: 700; line-height: 1.2; }
.cvp-mnav-brand-text small { display: block; font-size: 10px; font-weight: 400; color: #9ca3af; margin-top: 1px; }
.cvp-mnav-x {
  width: 30px; height: 30px; background: #f3f4f6; border: none;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #374151; line-height: 1; flex-shrink: 0; transition: background .15s;
}
.cvp-mnav-x:hover { background: #e5e7eb; }

/* Search bar */
.cvp-mnav-search {
  padding: 12px 16px; border-bottom: 1px solid #f3f4f6; flex-shrink: 0;
}
.cvp-mnav-search form {
  display: flex; align-items: center; gap: 10px;
  background: #f3f4f6; border-radius: 100px; padding: 10px 16px;
}
.cvp-mnav-search input {
  flex: 1; border: none; background: transparent;
  font-size: 14px; color: #374151; outline: none;
}
.cvp-mnav-search input::placeholder { color: #9ca3af; }

/* Scrollable body */
.cvp-mnav-body { flex: 1; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }

/* Section labels */
.cvp-mnav-label {
  padding: 14px 20px 6px; font-size: 11px; font-weight: 700;
  color: #9ca3af; text-transform: uppercase; letter-spacing: .08em;
}

/* Category rows */
.cvp-mnav-row {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 20px; text-decoration: none; color: #111;
  transition: background .12s;
}
.cvp-mnav-row:hover { background: #f9fafb; }
.cvp-mnav-row:active { background: #f3f4f6; }
.cvp-mnav-thumb {
  width: 50px; height: 50px; border-radius: 10px;
  background: #e5e7eb center/cover no-repeat; flex-shrink: 0;
}
.cvp-mnav-info { flex: 1; min-width: 0; }
.cvp-mnav-info strong { display: block; font-size: 14px; font-weight: 600; color: #111; line-height: 1.3; }
.cvp-mnav-info span { display: block; font-size: 12px; color: #9ca3af; margin-top: 2px; }
.cvp-mnav-chev { color: #d1d5db; flex-shrink: 0; }

/* CTA buttons */
.cvp-mnav-ctas { padding: 8px 16px 24px; display: flex; flex-direction: column; gap: 8px; }
.cvp-mnav-cta {
  display: block; padding: 13px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 600; text-align: center;
  text-decoration: none; transition: opacity .2s;
}
.cvp-mnav-cta:hover { opacity: .88; }
.cvp-mnav-cta-outline { background: #fff; border: 1.5px solid #e5e7eb; color: #374151; }
.cvp-mnav-cta-green  { background: #10c956; border: 1.5px solid #10c956; color: #fff; }

/* ===== GUTENBERG BLOCKS ===== */
.wp-block-table table { width: 100%; border-collapse: collapse; }
.wp-block-table td, .wp-block-table th { border: 1px solid var(--cv-border); padding: .5rem .75rem; }
.wp-block-quote { border-left: 4px solid var(--cv-green); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }
.wp-block-separator { border: none; border-top: 2px solid var(--cv-border); margin: 2rem 0; }
.wp-block-callout, .wp-block-info { background: #f0fff4; border-left: 4px solid var(--cv-green); padding: 1rem 1.25rem; border-radius: 0 6px 6px 0; margin: 1.5rem 0; }

/* ===== TOC ===== */
.cv-toc {
  background: var(--cv-light);
  border: 1px solid var(--cv-border);
  border-left: 4px solid var(--cv-green);
  border-radius: 0 var(--cv-radius) var(--cv-radius) 0;
  padding: 1.1rem 1.4rem 1.1rem 1.2rem;
  margin: 1.75rem 0;
  max-width: 560px;
}
.cv-toc-title {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #888;
  margin-bottom: .6rem;
}
.cv-toc-list {
  margin: 0;
  padding-left: 1.4rem;
  list-style: decimal;
}
.cv-toc-list li { margin: .3rem 0; }
.cv-toc-list a {
  color: var(--cv-dark);
  text-decoration: none;
  font-size: .93rem;
  line-height: 1.4;
}
.cv-toc-list a:hover { color: var(--cv-green); text-decoration: underline; }
@media (max-width: 600px) { .cv-toc { max-width: 100%; } }

/* ===== SOCIAL SHARE ===== */
.cv-share-float {
  position: fixed;
  left: max(8px, calc(50% - 680px));
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 500;
}
.cv-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  transition: transform .15s, opacity .15s;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.cv-share-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.cv-share-btn:hover { transform: scale(1.1); opacity: .9; }
.cv-share-wa  { background: #25d366; }
.cv-share-x   { background: #000; }
.cv-share-fb  { background: #1877f2; }
.cv-share-copy { background: #6b7280; }
.cv-share-copy.cv-share-copied { background: var(--cv-green); }
@media (max-width: 1100px) {
  .cv-share-float {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin: 1.25rem 0;
    transform: none;
  }
}

/* ===== TOOLTIPS ===== */
.cv-tip { border-bottom: 1.5px dashed #10c956; cursor: help; position: relative; display: inline; }
.cv-tip::before {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%; transform: translateX(-50%);
  background: #1a1a2e; color: #fff;
  font-size: .74rem; font-weight: 400; line-height: 1.45;
  padding: .4rem .75rem;
  border-radius: 6px;
  max-width: 220px; white-space: normal; text-align: center;
  pointer-events: none; opacity: 0; transition: opacity .18s;
  z-index: 300; box-shadow: 0 4px 14px rgba(0,0,0,.28);
}
.cv-tip::after {
  content: ''; position: absolute;
  bottom: calc(100% + 2px); left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: #1a1a2e;
  pointer-events: none; opacity: 0; transition: opacity .18s; z-index: 300;
}
.cv-tip:hover::before, .cv-tip:focus::before, .cv-tip:hover::after, .cv-tip:focus::after { opacity: 1; }
.cv-tip:focus { outline: 1px dotted #10c956; outline-offset: 2px; }

/* ===== QUICK FACTS BAR ===== */
.cv-qfb { background: #fff; border-bottom: 1px solid var(--cv-border); }
.cv-qfb-inner { max-width: var(--cv-max); margin: 0 auto; padding: .75rem 1.25rem; display: flex; flex-wrap: wrap; }
.cv-qfb-item { flex: 1; min-width: 110px; padding: .3rem 1rem; border-right: 1px solid #e5e7eb; text-align: center; }
.cv-qfb-item:last-child { border-right: none; }
.cv-qfb-label { display: block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #9ca3af; margin-bottom: .1rem; }
.cv-qfb-val { display: block; font-size: .88rem; font-weight: 700; color: #1a1a2e; }
.cv-qfb-warn { color: #ef4444 !important; }
@media (max-width: 600px) {
  .cv-qfb-inner { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 0 .5rem; }
  .cv-qfb-inner::-webkit-scrollbar { display: none; }
  .cv-qfb-item { min-width: 110px; flex-shrink: 0; border-right: 1px solid #e5e7eb !important; border-bottom: none !important; padding: .5rem .75rem; }
  .cv-qfb-item:last-child { border-right: none !important; }
}

/* ===== CONTENT SPLIT (image + text) ===== */
.cv-content-split { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: start; max-width: 960px; margin: 0 auto; }
.cv-content-split-img { width: 100%; height: 240px; object-fit: cover; border-radius: 12px; display: block; }
@media (max-width: 780px) { .cv-content-split { grid-template-columns: 1fr; } .cv-content-split-img { height: 200px; order: -1; } }
@media (max-width: 680px) {
  .cv-content-split table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ===== INTERNAL LINK CLUSTER ===== */
.cv-link-cluster { margin: 2.5rem 0; padding: 0; }
.cv-link-cluster h3 { font-size: .95rem; font-weight: 700; color: #1a1a2e; margin: 0 0 .75rem; }
.cv-lc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: .5rem; }
.cv-lc-card { display: flex; align-items: center; gap: .5rem; background: #f8f9fa; border: 1px solid #e5e7eb; border-radius: 8px; padding: .55rem .85rem; text-decoration: none; color: #1a1a2e; font-size: .82rem; font-weight: 600; transition: border-color .15s, background .15s; line-height: 1.3; }
.cv-lc-card:hover { border-color: #10c956; background: #f0fff4; color: #0a7c35; }
.cv-lc-dot { width: 6px; height: 6px; border-radius: 50%; background: #10c956; flex-shrink: 0; }

/* ===== INFOBOX ===== */
.cv-infobox { background: #f0fff4; border: 1px solid #bbf7d0; border-left: 4px solid #10c956; border-radius: 8px; padding: .9rem 1.1rem; margin: 1.25rem 0; }
.cv-infobox-title { font-weight: 700; font-size: .82rem; color: #166534; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .4rem; }
.cv-infobox p, .cv-infobox-body { font-size: .875rem; color: #374151; line-height: 1.65; margin: 0; }
.cv-infobox .cv-tip { border-bottom-color: #166534; }

/* ===== FEATURED IMAGE (single posts) ===== */
.cv-post-featured-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
  margin: 1.25rem 0 1.75rem;
  background: var(--cv-light);
}
.cv-post-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .cv-post-featured-img { border-radius: 8px; margin: .75rem 0 1.25rem; }
}

/* ===== PROS / CONS (Vorteile / Nachteile in vergleich) ===== */
.cvs-pros, .cvs-cons {
  list-style: none !important;
  padding: 0 !important;
  margin: .5rem 0 1.25rem !important;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.cvs-pros li, .cvs-cons li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .55rem .9rem;
  border-radius: 8px;
  font-size: .9rem;
  line-height: 1.5;
  color: #1a1a2e;
}
.cvs-pros li {
  background: #f0fff4;
  border: 1px solid #bbf7d0;
}
.cvs-pros li::before {
  content: "✓";
  color: #10c956;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.5;
  flex-shrink: 0;
  margin-top: .05rem;
}
.cvs-cons li {
  background: #fff5f5;
  border: 1px solid #fecaca;
}
.cvs-cons li::before {
  content: "✕";
  color: #e63946;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.5;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* ===== ENTRY-CONTENT LIST BULLETS ===== */
.entry-content ul, .cvs-content-wrap ul:not(.cvs-pros):not(.cvs-cons) {
  list-style: none !important;
  padding-left: 0 !important;
  margin: .5rem 0 1rem !important;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.entry-content ul li, .cvs-content-wrap ul:not(.cvs-pros):not(.cvs-cons) li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  line-height: 1.6;
  font-size: .93rem;
  color: #374151;
  padding: .2rem 0;
}
.entry-content ul li::before, .cvs-content-wrap ul:not(.cvs-pros):not(.cvs-cons) li::before {
  content: "·";
  color: #10c956;
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1.2;
  flex-shrink: 0;
}
.entry-content ol {
  padding-left: 1.5rem !important;
  margin: .5rem 0 1rem !important;
  list-style: decimal !important;
}
.entry-content ol li { margin-bottom: .4rem; font-size: .93rem; line-height: 1.6; }

/* ===== MOBILE TABLE SCROLL ===== */
@media (max-width: 680px) {
  .entry-content table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .entry-content table thead, .entry-content table tbody, .entry-content table tr { display: table; width: 100%; }
}

/* ===== SHOP HERO IMAGE ===== */
.cvs-hero-img {
  width: 100%;
  max-height: 340px;
  overflow: hidden;
  background: #0f172a;
}
.cvs-hero-img img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: cover;
  display: block;
  opacity: .88;
}
@media (max-width: 600px) {
  .cvs-hero-img { max-height: 220px; }
  .cvs-hero-img img { max-height: 220px; }
}

/* ===== MOBILE SECTION SPACING ===== */
@media (max-width: 600px) {
  .cv-section-header { margin-bottom: 1.25rem; }
  .cv-link-cluster { margin: 1.75rem 0; }
  .cv-cz-banner { padding: 1.25rem 1rem; margin: 1.5rem 0 2rem; }
  .cv-cz-banner-inner { flex-direction: column; gap: .75rem; text-align: center; }
  .cv-cz-text strong { font-size: 1rem; }
  .cv-cz-btn { width: 100%; text-align: center; }
  .cv-bottom-cta { padding: 1.5rem 1rem; margin: 1.75rem 0; }
}

/* ===== CARD BODY IMPROVEMENTS ===== */
.cv-card-body { padding: .875rem 1rem 1rem; }
.cv-post-card h3 { font-size: .92rem !important; }
@media (max-width: 600px) {
  .cv-card-img { aspect-ratio: 16/7; }
}

/* ===== SINGLE POST: wider featured image ===== */
.cv-post-featured-img {
  margin-left: -1rem;
  margin-right: -1rem;
  border-radius: 0;
}
@media (min-width: 600px) {
  .cv-post-featured-img {
    margin-left: 0;
    margin-right: 0;
    border-radius: 12px;
  }
}

/* ===== SINGLE POST QFB compact ===== */
.cv-single-post .cv-qfb { margin: 0 -1rem 1.75rem; }
@media (min-width: 700px) {
  .cv-single-post .cv-qfb { margin: 0 0 1.75rem; border-radius: 10px; border: 1px solid var(--cv-border); }
}

/* ===== TOOLTIP — disable on touch / small screens ===== */
@media (max-width: 780px) {
  .cv-tip::before, .cv-tip::after { display: none; }
  .cv-tip { border-bottom: none; cursor: default; }
}

/* ===== MOBILE OVERHAUL ===== */

/* Hero: force white text regardless of theme overrides */
.cv-home-hero,
.cv-home-hero h1,
.cv-home-hero h2,
.cv-home-hero p,
.cv-home-hero .cv-home-hero-inner,
.cv-home-hero .cv-home-hero-inner * { color: #fff !important; }

/* QFB mobile: 2-column card grid instead of horizontal scroll */
@media (max-width: 600px) {
  .cv-qfb { background: #f4f5f7; padding: .5rem 0; }
  .cv-qfb-inner {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: .5rem;
    padding: .5rem .75rem;
    scrollbar-width: none;
  }
  .cv-qfb-item {
    background: #fff;
    border: 1px solid #e5e7eb !important;
    border-right: 1px solid #e5e7eb !important;
    border-radius: 8px;
    min-width: 0;
    flex: 1 1 calc(50% - .5rem);
    padding: .65rem .5rem .55rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
  }
  .cv-qfb-item strong { display: block; font-size: 1.15rem; line-height: 1.2; }
  .cv-qfb-item span { font-size: .72rem; color: #6b7280; }
}

/* Buttons: larger tap targets on mobile */
@media (max-width: 600px) {
  .cv-btn-primary, .cv-btn-secondary {
    min-height: 48px;
    padding: .8rem 1.25rem;
    font-size: .95rem;
  }
}

/* Archive / hub headers: better mobile spacing */
@media (max-width: 600px) {
  .cv-archive-header { padding: 2rem 1rem 1.5rem; }
  .cv-archive-header h1 { font-size: 1.55rem; }
  .cv-archive-header p { font-size: .9rem; }
}

/* Content split: stack on mobile */
@media (max-width: 700px) {
  .cv-content-split { flex-direction: column; gap: 1rem; }
  .cv-content-split > * { width: 100% !important; }
}

/* Comparison table: horizontal scroll on mobile */
@media (max-width: 700px) {
  .cv-compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cv-compare-table { min-width: 500px; }
}

/* Link cluster cards: 2-column grid on mobile */
@media (max-width: 600px) {
  .cv-lc-grid {
    grid-template-columns: 1fr 1fr;
    gap: .4rem;
  }
  .cv-lc-card { font-size: .82rem; padding: .5rem .65rem; }
}

/* ===== NAV DROPDOWN ===== */
.cv-has-drop { position: relative; }
.cv-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,.13);
  z-index: 9999;
  min-width: 560px;
  padding: 1rem;
}
.cv-has-drop:hover .cv-dropdown { display: block; }
.cv-drop-cols { display: flex; gap: 0; }
.cv-drop-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 .75rem;
  border-right: 1px solid #f0f0f0;
}
.cv-drop-col:last-child { border-right: none; }
.cv-drop-head {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #9ca3af;
  margin-bottom: .4rem;
  padding-bottom: .3rem;
  border-bottom: 1px solid #f3f4f6;
}
.cv-dropdown a {
  display: block;
  padding: .28rem 0;
  font-size: .84rem;
  color: #374151;
  text-decoration: none;
  white-space: nowrap;
  transition: color .12s;
}
.cv-dropdown a:hover { color: #10c956; }

/* ===== NAV CTA BUTTON ===== */
.cv-nav-cta {
  background: var(--cv-green) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: .35rem .95rem !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  font-size: .85rem !important;
  letter-spacing: .01em;
  transition: opacity .18s;
  white-space: nowrap;
}
.cv-nav-cta:hover { opacity: .85 !important; color: #fff !important; }

/* ===== QFB MODERN REDESIGN ===== */
.cv-qfb {
  background: #f8f9fb;
  border-bottom: 1px solid #e8eaed;
  border-top: 1px solid #e8eaed;
}
.cv-qfb-inner {
  max-width: var(--cv-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
}
.cv-qfb-item {
  flex: 1;
  min-width: 110px;
  padding: 1rem 1.25rem;
  text-align: center;
  border-right: 1px solid #e2e5e9;
  position: relative;
  transition: background .15s;
}
.cv-qfb-item:last-child { border-right: none; }
.cv-qfb-item:hover { background: #fff; }
.cv-qfb-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: .2rem;
  color: #1a1a2e;
}
.cv-qfb-item span {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.35;
}

/* ===== LEGAL PAGES (Impressum / Datenschutz) ===== */
.cv-legal-wrap { background: #fff; padding: 2.5rem 1rem 4rem; }
.cv-legal-inner {
  max-width: 780px;
  margin: 0 auto;
}
.cv-legal-inner h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #1a1a2e;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--cv-green);
  display: inline-block;
}
.cv-legal-section {
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid #f0f0f0;
}
.cv-legal-section:last-of-type { border-bottom: none; }
.cv-legal-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 .75rem;
}
.cv-legal-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  margin: 1.25rem 0 .5rem;
}
.cv-legal-section p {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: .75rem;
  font-size: .95rem;
}
.cv-legal-section ul {
  color: #4b5563;
  font-size: .95rem;
  line-height: 1.75;
  padding-left: 1.5rem;
  margin-bottom: .75rem;
}
.cv-legal-section a { color: var(--cv-green); text-decoration: underline; }
.cv-legal-back { margin-top: 2rem; }
.cv-legal-back a { color: var(--cv-green); font-weight: 600; text-decoration: none; }
.cv-legal-back a:hover { text-decoration: underline; }

/* In-content pool image */
.cv-incontent-img { margin: 1.75rem 0; border-radius: 12px; overflow: hidden; }
.cv-incontent-img img { width: 100%; max-height: 400px; object-fit: cover; display: block; border-radius: 12px; }

/* ===== TABLE OVERFLOW WRAPPER ===== */
.cv-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; margin: 1rem 0; border-radius: 10px; }
.cv-table-wrap table { margin: 0 !important; border-radius: 0 !important; min-width: 360px; }
.cvs-content-wrap .cv-table-wrap { box-shadow: 0 2px 10px rgba(0,0,0,.07); }

/* ===== CITY GRID MOBILE (pill grid instead of wrapping flex) ===== */
@media (max-width: 600px) {
  .cv-cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .4rem;
  }
  .cv-city-chip {
    border-radius: 8px !important;
    padding: .6rem .35rem;
    font-size: .76rem;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: .2rem;
    min-height: 44px;
  }
}

/* ===== STORE CARD PHONE ===== */
.cv-store-card-phone { font-size: .75rem; color: #10c956; margin: .15rem 0 .45rem; }
.cv-store-card-phone a { color: inherit; text-decoration: none; }
.cv-store-card-phone a:hover { text-decoration: underline; }

/* ===== TOPBAR SCROLL HIDE ===== */
#cvp-topbar.cvp-topbar-hidden { max-height: 0; padding-top: 0; padding-bottom: 0; opacity: 0; }

/* ===== MOBILE DRAWER PANELS (two-level nav) ===== */
.cvp-mnav-panel { display: none; }
.cvp-mnav-panel.cvp-mnav-active { display: block; }
.cvp-mnav-group-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; font-family: inherit;
}
/* button element needs explicit padding — overrides browser default & padding:0 reset */
button.cvp-mnav-row { padding: 10px 20px; }
.cvp-mnav-back {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px; background: #f8f9fb; border: none;
  border-bottom: 1px solid #f0f0f0; cursor: pointer;
  font-size: 14px; font-weight: 700; color: #1a1a2e;
  width: 100%; font-family: inherit; text-align: left; flex-shrink: 0;
}
.cvp-mnav-back:hover { background: #f0f0f0; }
.cvp-mnav-thumb-blog { background: #10c956; }

/* ===== FOOTER ACCORDION (mobile) ===== */
@media (max-width: 480px) {
  .cv-footer-col:not(.cv-footer-brand) .cv-footer-heading {
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    padding: .65rem 0; border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0; user-select: none;
  }
  .cv-footer-col:not(.cv-footer-brand) .cv-footer-heading::after {
    content: '+'; font-size: 1.1rem; font-weight: 400; color: #9ca3af;
  }
  .cv-footer-col:not(.cv-footer-brand).cv-footer-open .cv-footer-heading::after { content: '−'; }
  .cv-footer-col:not(.cv-footer-brand) a { display: none; }
  .cv-footer-col:not(.cv-footer-brand).cv-footer-open a { display: block; }
}

/* ===== PAGINATION MOBILE PREV/NEXT ===== */
.cv-pag-desktop { display: none; }
.cv-pag-mobile {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .25rem 0;
}
.cv-pag-prev, .cv-pag-next {
  display: inline-flex; align-items: center;
  padding: .55rem 1.25rem; border-radius: 8px;
  background: #f3f4f6; color: #374151 !important; font-size: .9rem; font-weight: 600;
  text-decoration: none !important; border: 1.5px solid #e5e7eb; transition: background .2s;
}
.cv-pag-prev:hover:not(.cv-pag-disabled), .cv-pag-next:hover:not(.cv-pag-disabled) {
  background: #10c956; color: #fff !important; border-color: #10c956;
}
.cv-pag-disabled { opacity: .4; cursor: default; pointer-events: none; }
.cv-pag-count { font-size: .875rem; color: #6b7280; white-space: nowrap; font-weight: 600; }
@media (min-width: 769px) {
  .cv-pag-mobile { display: none; }
  .cv-pag-desktop { display: block; }
}

/* ===== CARD CTA BUTTON UPGRADE ===== */
.cv-card-cta {
  display: inline-flex !important; align-items: center;
  min-height: 36px; padding: .35rem .8rem !important;
  border-radius: 6px !important;
  background: rgba(16,201,86,.08); border: 1.5px solid rgba(16,201,86,.22);
  font-size: .8rem !important; font-weight: 700 !important;
  color: #0a7c35 !important; transition: background .2s, color .2s;
  margin-top: 0 !important; text-decoration: none !important;
}
.cv-post-card:hover .cv-card-cta { background: #10c956; color: #fff !important; border-color: #10c956; }
.cv-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: .6rem; flex-wrap: wrap; gap: .4rem;
}

/* ===== VERGLEICH SORT BAR ===== */
.cvp-sort-bar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: .75rem; padding: .75rem 0; margin-bottom: .75rem; border-bottom: 1px solid #e5e7eb;
}
.cvp-sort-bar-count { font-size: .875rem; color: #6b7280; font-weight: 500; }
.cvp-sort-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1.1rem; border-radius: 8px;
  background: #f3f4f6; border: 1.5px solid #e5e7eb;
  font-size: .875rem; font-weight: 600; color: #374151;
  cursor: pointer; transition: background .18s; font-family: inherit; min-height: 44px;
}
.cvp-sort-btn:hover { background: #e5e7eb; border-color: #d1d5db; }
@media (max-width: 600px) {
  .cvp-sort-bar {
    position: sticky; top: 0; z-index: 100; background: #fff;
    padding: .65rem .75rem; margin: 0 0 .75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
  }
}

/* ===== MOBILE UX PASS 3 — Tap targets, font minimums, grid fixes ===== */

/* Back-to-top: 44px tap target */
#cv-back-top { width: 44px !important; height: 44px !important; font-size: 1.2rem !important; bottom: 80px !important; }

/* Inline grid classes for responsive 2-col sections */
.cv-info-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
.cv-2col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
}
.cv-mini-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  margin-top: 1rem;
}
@media (max-width: 600px) {
  .cv-info-cards-grid,
  .cv-2col-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cv-mini-grid-2 { grid-template-columns: 1fr; }
}

/* 3-card comparison grids: stack on mobile */
.cv-3col-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 640px) { .cv-3col-cards-grid { grid-template-columns: 1fr; } }

@media (max-width: 600px) {
  /* Category badges */
  .cv-cat-badge { font-size: 12px; padding: 4px 10px; }

  /* Tags: readable + slightly bigger tap area */
  .cv-tag { font-size: 13px; padding: 5px 12px; }

  /* Card dates & CTAs */
  .cv-card-date { font-size: .82rem; }
  .cv-card-cta { font-size: .88rem; min-height: 36px; display: inline-flex; align-items: center; }

  /* QFB label (small caps text under value) */
  .cv-qfb-item span { font-size: .75rem; }

  /* Link cluster: min tap height */
  .cv-lc-card { min-height: 44px; font-size: .85rem; }

  /* Inline CTA button: proper touch target */
  .cv-inline-cta-btn { min-height: 44px; display: inline-flex; align-items: center; }

  /* CZ banner button: generous tap target */
  .cv-cz-btn { min-height: 48px; display: flex; align-items: center; justify-content: center; }

  /* City chips: readable & touchable */
  .cv-city-chip { font-size: .9rem; min-height: 44px; }

  /* Store cards links */
  .cv-store-card a { font-size: .9rem; }

  /* Footer headings */
  .cv-footer-heading { font-size: .85rem; }

  /* TOC: readable links */
  .cv-toc-list a { font-size: .9rem; line-height: 1.6; }

  /* Reading progress bar: slightly thicker */
  #cv-reading-bar { height: 4px; }

  /* Shops map: less tall, more screen for content */
  #cv-shops-map { height: 300px !important; }

  /* Bottom CTA: readable paragraph */
  .cv-bottom-cta p { font-size: 1rem; }
  .cv-bottom-cta h3 { font-size: 1.2rem; }

  /* Quicknav card subtitle */
  .cv-qn-inner span { font-size: .76rem; }

  /* Store action buttons (directions, website) */
  .cv-store-action { font-size: .82rem; padding: .45rem .8rem; min-height: 36px; }

  /* Posts grid collapse at 580px already handled — just bump font inside */
  .cv-post-card h3 { font-size: .95rem !important; }

  /* Footer socket */
  #socket .copyright { font-size: .82rem; }
}

/* Footer: single column at 600px (was 480px — too late) */
@media (max-width: 600px) {
  .cv-footer-inner { grid-template-columns: 1fr; }
}

/* ===== BOTTOM NAV (mobile-only) ===== */
#cv-bot-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9988;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  height: 58px;
  align-items: stretch;
  box-shadow: 0 -2px 12px rgba(0,0,0,.08);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
#cv-bot-spacer { display: none; }
.cv-bn-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  color: #888;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 2px;
  transition: color .15s;
}
.cv-bn-item:hover,
.cv-bn-item.cv-bn-active { color: #10c956; }
.cv-bn-cta-bubble {
  width: 40px; height: 40px;
  background: #10c956;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -18px;
  box-shadow: 0 2px 12px rgba(16,201,86,.42);
  flex-shrink: 0;
}
.cv-bn-cta-label { color: #10c956; margin-top: 2px; font-weight: 700; }
@media (max-width: 900px) {
  #cv-bot-nav { display: flex; }
  #cv-bot-spacer { display: block; height: calc(58px + env(safe-area-inset-bottom, 0px)); }
  #cv-back-top { bottom: calc(70px + env(safe-area-inset-bottom, 0px)) !important; }
}

/* ===== INTERNAL LINK AUTO-LINKS ===== */
a.cv-auto-link {
  color: var(--cv-green);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .15s;
}
a.cv-auto-link:hover { color: #0da847; text-decoration-style: solid; }

/* ===== TOOLTIP CARD (Internal Link Previews) ===== */
#cv-link-tip {
  position: fixed;
  z-index: 9901;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 32px rgba(0,0,0,.16), 0 0 0 1px rgba(0,0,0,.06);
  width: 268px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px) scale(.97);
  transition: opacity .18s ease, transform .18s ease;
  overflow: hidden;
  font-family: inherit;
}
#cv-link-tip.cv-tip-on {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.cv-tip-img {
  width: 100%;
  height: 116px;
  object-fit: cover;
  display: block;
}
.cv-tip-body {
  padding: 11px 14px 13px;
}
.cv-tip-title {
  font-weight: 700;
  font-size: .82rem;
  color: #1a1a2e;
  line-height: 1.35;
  margin: 0 0 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cv-tip-excerpt {
  font-size: .74rem;
  color: #666;
  line-height: 1.46;
  margin: 0 0 9px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cv-tip-cta {
  font-size: .74rem;
  font-weight: 700;
  color: var(--cv-green);
  letter-spacing: .01em;
}
@media (pointer: coarse) { #cv-link-tip { display: none !important; } }
