/* ══════════════════════════════════════════════════════════════════
   veronacards.com — Site-Styles (ohne Widget)
   Verona-Rot-Palette angelehnt ans offizielle VeronaCard-Design.
   ══════════════════════════════════════════════════════════════════ */

/* ── Design-Tokens ─────────────────────────────────────────────── */
:root {
  --vc-red:      #C8102E;   /* Signal-Rot (VeronaCard) */
  --vc-red-ink:  #8B1E1E;   /* Dunkles Rot für Text/Hover */
  --vc-ink:      #1B1B1F;   /* Body-Text */
  --vc-cream:    #FAF6F4;   /* warmer Off-White (Verona-Marmor) */
  --vc-sand:     #EFE6E0;   /* Rahmenfarbe */
  --vc-mute:     #6B6B6B;   /* Sekundär-Text */
  --vc-gold:     #C8A34A;   /* Akzent (Sterne, Rating) */
  --vc-focus:    #FFB000;   /* Focus-Ring */

  --vc-max: 1200px;
  --vc-radius: 12px;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--vc-ink);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 12px; }
p { margin: 0 0 12px; }
a { color: var(--vc-red-ink); text-decoration: underline; }
a:hover { color: var(--vc-red); }

/* Skip-Link */
.vc-skip {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--vc-red);
  color: #fff;
  padding: 8px 16px;
  z-index: 100;
  text-decoration: none;
  font-weight: 700;
}
.vc-skip:focus { top: 0; }

/* ── Header ───────────────────────────────────────────────────── */
.vc-header {
  background: #fff;
  border-bottom: 1px solid var(--vc-sand);
  padding: 12px 0;
}
.vc-header-inner {
  max-width: var(--vc-max);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.vc-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--vc-ink);
}
.vc-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--vc-red);
  color: #fff;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
  /* leicht nach unten schieben — Playfair-V sitzt sonst etwas hoch */
  padding-top: 2px;
}
.vc-logo-text {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.2px;
  color: var(--vc-ink);
}

/* Sprach-Switcher */
.vc-lang { position: relative; }
.vc-lang-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 6px;
  align-items: center;
}
.vc-lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  color: var(--vc-mute);
  transition: background 0.15s, color 0.15s;
}
.vc-lang-link:hover { background: var(--vc-cream); color: var(--vc-red-ink); }
.vc-lang-active { background: var(--vc-red); color: #fff !important; }
.vc-lang-active:hover { background: var(--vc-red-ink); color: #fff !important; }

.vc-lang-select {
  display: none;
  padding: 8px 10px;
  border: 1.5px solid var(--vc-sand);
  border-radius: 8px;
  background: #fff;
  color: var(--vc-ink);
  font-size: 14px;
  font-family: inherit;
  font-weight: 600;
  min-width: 130px;
}

@media (max-width: 640px) {
  .vc-lang-list { display: none; }
  .vc-lang-select { display: block; }
  .vc-logo { gap: 9px; }
  .vc-logo-mark { width: 32px; height: 32px; font-size: 19px; }
  .vc-logo-text { font-size: 19px; }
}

/* ── Trust-Bar (unter dem Header, über dem Hero) ─────────────── */
.vc-trustbar {
  background: var(--vc-cream);
  padding: 10px 16px;
  border-bottom: 1px solid var(--vc-sand);
}
.vc-trustbar-inner {
  max-width: var(--vc-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 12px;
  flex-wrap: wrap;
}
.vc-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--vc-red-ink);
}
.vc-trust-item svg { color: var(--vc-red); flex-shrink: 0; }

@media (max-width: 720px) {
  .vc-trustbar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
  }
  .vc-trust-item { font-size: 12px; gap: 6px; }
}

/* ── Content-Container ───────────────────────────────────────── */
.vc-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}
.vc-container-wide {
  max-width: var(--vc-max);
  margin: 0 auto;
  padding: 0 16px;
}

/* ── Sektionen ───────────────────────────────────────────────── */
.vc-section {
  padding: 56px 0;
}
.vc-section-alt { background: var(--vc-cream); }
.vc-section-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--vc-ink);
  margin-bottom: 20px;
  text-align: center;
}
.vc-section-lead {
  font-size: 17px;
  color: var(--vc-mute);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ── What-is Sektion (Prose) ─────────────────────────────────── */
.vc-prose { font-size: 16px; line-height: 1.7; }
.vc-prose p { margin-bottom: 16px; }
.vc-prose strong { color: var(--vc-red-ink); }

/* ── Included: 3-Spalten-Layout ──────────────────────────────── */
.vc-incl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vc-incl-card {
  background: #fff;
  border: 1.5px solid var(--vc-sand);
  border-radius: var(--vc-radius);
  padding: 24px;
  box-shadow: 0 2px 10px rgba(139, 30, 30, 0.04);
}
.vc-incl-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--vc-red-ink);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vc-incl-title-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--vc-red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vc-incl-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vc-incl-list li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: #2a2a2a;
}
.vc-incl-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--vc-red);
  font-weight: 700;
}
.vc-incl-more {
  font-style: italic;
  color: var(--vc-mute);
  font-size: 13px;
  margin-top: 10px;
}

@media (max-width: 899px) {
  .vc-incl-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Attraktions-Galerie (oberhalb der Included-Cards) ──────── */
.vc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 32px;
}
.vc-gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--vc-radius);
  box-shadow: 0 4px 18px rgba(139, 30, 30, 0.08);
  aspect-ratio: 4 / 3;
  background: var(--vc-sand);
}
.vc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.vc-gallery-item:hover img { transform: scale(1.04); }
.vc-gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 14px 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.75) 100%);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

@media (max-width: 899px) {
  .vc-gallery { grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
  .vc-gallery-item:first-child { grid-column: 1 / -1; }   /* Arena groß oben */
  .vc-gallery-item figcaption { font-size: 13px; padding: 10px 12px 10px; }
}
@media (max-width: 480px) {
  .vc-gallery { grid-template-columns: 1fr; gap: 10px; }
  .vc-gallery-item:first-child { grid-column: auto; }
}

/* ── Worth-it Tabelle ────────────────────────────────────────── */
.vc-worth-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  font-size: 15px;
  background: #fff;
  border: 1.5px solid var(--vc-sand);
  border-radius: var(--vc-radius);
  overflow: hidden;
}
.vc-worth-table th,
.vc-worth-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--vc-sand);
}
.vc-worth-table th {
  background: var(--vc-cream);
  font-weight: 700;
  color: var(--vc-red-ink);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vc-worth-table td:nth-child(2),
.vc-worth-table td:nth-child(3),
.vc-worth-table th:nth-child(2),
.vc-worth-table th:nth-child(3) {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.vc-worth-table tr:last-child td { border-bottom: none; }
.vc-worth-row-sum td {
  background: #fff;
  font-weight: 700;
  border-top: 2px solid var(--vc-sand);
}
.vc-worth-row-card td { background: rgba(200, 16, 46, 0.05); }
.vc-worth-row-save td { background: var(--vc-red); color: #fff; font-weight: 800; }
.vc-worth-note { font-size: 13px; color: var(--vc-mute); font-style: italic; margin-top: 12px; }

/* ── Choose 24h vs 48h ───────────────────────────────────────── */
.vc-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.vc-choose-card {
  background: #fff;
  border: 1.5px solid var(--vc-sand);
  border-radius: var(--vc-radius);
  padding: 26px 24px 22px;
  position: relative;
}
.vc-choose-card-primary {
  border-color: var(--vc-red);
  border-width: 2px;
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.10);
}
.vc-choose-badge {
  display: inline-block;
  background: #efe6e0;
  color: var(--vc-mute);
  font-weight: 800;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.vc-choose-badge-primary {
  background: var(--vc-red);
  color: #fff;
}
.vc-choose-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--vc-ink);
  margin-bottom: 14px;
}
.vc-choose-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vc-choose-list li {
  padding-left: 22px;
  position: relative;
  font-size: 14.5px;
  line-height: 1.5;
  color: #333;
}
.vc-choose-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vc-red);
}
.vc-choose-rule {
  background: rgba(200, 16, 46, 0.06);
  border-left: 4px solid var(--vc-red);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 14.5px;
  color: var(--vc-ink);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 720px) {
  .vc-choose-grid { grid-template-columns: 1fr; }
}

/* ── Sample Itinerary ───────────────────────────────────────── */
.vc-itin {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.vc-itin::before {
  content: '';
  position: absolute;
  left: 68px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--vc-sand);
}
.vc-itin-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 14px 0;
  align-items: baseline;
  position: relative;
}
.vc-itin-time {
  font-size: 15px;
  font-weight: 800;
  color: var(--vc-red);
  font-variant-numeric: tabular-nums;
  text-align: right;
  padding-right: 12px;
  border-right: 2px solid transparent;   /* Space für Timeline-Dot */
  position: relative;
}
.vc-itin-time::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--vc-red);
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 1px var(--vc-red);
}
.vc-itin-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--vc-ink);
  margin: 0 0 4px;
}
.vc-itin-desc {
  font-size: 14.5px;
  color: #444;
  line-height: 1.55;
  margin: 0;
}
.vc-itin-note {
  background: var(--vc-cream);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--vc-ink);
  font-style: italic;
  line-height: 1.55;
  margin: 20px 0 0;
}

@media (max-width: 480px) {
  .vc-itin::before { left: 38px; }
  .vc-itin-step { grid-template-columns: 50px 1fr; gap: 14px; }
  .vc-itin-time { font-size: 13px; padding-right: 8px; }
  .vc-itin-time::after { right: -6px; width: 8px; height: 8px; }
  .vc-itin-title { font-size: 15px; }
  .vc-itin-desc { font-size: 13.5px; }
}

/* ── When to visit ──────────────────────────────────────────── */
.vc-prose-center {
  max-width: 720px;
  margin: 0 auto 22px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}
.vc-when-tip {
  max-width: 720px;
  margin: 20px auto 0;
  background: #fff;
  border: 1.5px solid var(--vc-sand);
  border-left: 4px solid var(--vc-red);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #333;
}
.vc-when-tip-icon {
  color: var(--vc-red);
  flex-shrink: 0;
  padding-top: 2px;
}
.vc-when-tip strong { color: var(--vc-red-ink); font-weight: 700; margin-right: 4px; }

/* ── How it works: 3 Steps ───────────────────────────────────── */
.vc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}
.vc-step {
  background: #fff;
  padding: 24px;
  border-radius: var(--vc-radius);
  border: 1.5px solid var(--vc-sand);
  position: relative;
}
.vc-step-num {
  position: absolute;
  top: -14px;
  left: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--vc-red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(200, 16, 46, 0.3);
}
.vc-step-title {
  font-size: 17px;
  font-weight: 700;
  margin: 10px 0 8px;
  color: var(--vc-ink);
}
.vc-step-body { font-size: 14px; color: #444; line-height: 1.55; }

@media (max-width: 899px) {
  .vc-steps { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Comparison Cards (Tiqets primär, Headout sekundär) ─────── */
.vc-comp-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.vc-comp-card {
  background: #fff;
  border: 1.5px solid var(--vc-sand);
  border-radius: var(--vc-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.vc-comp-card-primary {
  border-color: var(--vc-red);
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(200, 16, 46, 0.10);
  position: relative;
}
.vc-comp-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--vc-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vc-comp-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--vc-ink);
  margin-bottom: 12px;
}
.vc-comp-body {
  font-size: 14.5px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.vc-comp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none !important;
  text-align: center;
  transition: background 0.15s, transform 0.15s;
}
.vc-comp-card-primary .vc-comp-cta {
  background: var(--vc-red);
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(200, 16, 46, 0.30);
}
.vc-comp-card-primary .vc-comp-cta:hover { background: var(--vc-red-ink); transform: translateY(-1px); }
.vc-comp-card-secondary .vc-comp-cta {
  background: #fff;
  color: var(--vc-red-ink) !important;
  border: 2px solid var(--vc-red);
}
.vc-comp-card-secondary .vc-comp-cta:hover { background: var(--vc-cream); }

@media (max-width: 899px) {
  .vc-comp-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.vc-faq { max-width: 800px; margin: 0 auto; }
.vc-faq details {
  border-bottom: 1px solid var(--vc-sand);
  padding: 4px 0;
}
.vc-faq summary {
  padding: 16px 32px 16px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--vc-ink);
  list-style: none;
  position: relative;
  transition: color 0.15s;
}
.vc-faq summary::-webkit-details-marker { display: none; }
.vc-faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--vc-red);
  font-weight: 400;
  transition: transform 0.2s;
}
.vc-faq details[open] summary::after { content: '−'; }
.vc-faq summary:hover { color: var(--vc-red-ink); }
.vc-faq-answer {
  padding: 0 0 20px;
  color: #333;
  line-height: 1.65;
  font-size: 15px;
}

/* ── Closing CTA-Band ───────────────────────────────────────── */
.vc-close {
  background: linear-gradient(135deg, var(--vc-red) 0%, var(--vc-red-ink) 100%);
  color: #fff;
  padding: 56px 16px;
  text-align: center;
}
.vc-close-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}
.vc-close-body {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin: 0 auto 24px;
}
.vc-close-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--vc-red-ink) !important;
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none !important;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.20);
}
.vc-close-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28); }

/* ── Footer ─────────────────────────────────────────────────── */
.vc-footer {
  background: #1B1B1F;
  color: #ccc;
  padding: 40px 16px 24px;
  font-size: 13px;
  line-height: 1.6;
}
.vc-footer-inner {
  max-width: var(--vc-max);
  margin: 0 auto;
  text-align: center;
}
.vc-footer-tagline {
  color: #eee;
  font-size: 14px;
  margin-bottom: 8px;
}
.vc-footer-disclaimer { color: #999; font-size: 12px; margin-bottom: 20px; }
.vc-footer-nav {
  margin-bottom: 20px;
  color: #666;
}
.vc-footer-nav a {
  color: #ddd;
  text-decoration: none;
  padding: 0 6px;
  transition: color 0.15s;
}
.vc-footer-nav a:hover { color: #fff; text-decoration: underline; }
.vc-footer-copy { color: #777; font-size: 11px; }

/* ── STICKY-BAR (Fixed Bottom) ──────────────────────────────
   Sichtbar ab Scroll unter den Hero. iOS Safe-Area beachten (Skill-Regel).
   Show/Hide über .vc-sticky--visible-Klasse aus site.js. */
.vc-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--vc-sand);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  transform: translateY(120%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.vc-sticky--visible {
  transform: translateY(0);
  pointer-events: auto;
}
.vc-sticky-inner {
  max-width: var(--vc-max);
  margin: 0 auto;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.vc-sticky-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.vc-sticky-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--vc-ink);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vc-sticky-price {
  font-size: 12px;
  color: var(--vc-mute);
  line-height: 1.2;
}
.vc-sticky-price strong { color: var(--vc-red); font-weight: 700; }
.vc-sticky-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--vc-red);
  color: #fff !important;
  text-decoration: none !important;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(200, 16, 46, 0.30);
}
.vc-sticky-cta:hover { background: var(--vc-red-ink) !important; transform: translateY(-1px); }
.vc-sticky-cta svg { flex-shrink: 0; }

/* Body braucht Ausgleich für die Sticky-Bar (Skill-Regel: zwei Stellen!) */
body.vc-has-sticky {
  padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 480px) {
  .vc-sticky { padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px)); }
  .vc-sticky-cta { padding: 10px 16px; font-size: 13px; }
  .vc-sticky-text { font-size: 12px; }
  .vc-sticky-price { font-size: 11px; }
  body.vc-has-sticky { padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px)); }
}

/* ── Legal-Pages (Impressum, Privacy) ───────────────────────── */
.vc-legal {
  padding: 40px 0 60px;
  max-width: 800px;
  margin: 0 auto;
}
.vc-legal h1 {
  font-size: 28px;
  color: var(--vc-red-ink);
  margin-bottom: 24px;
}
.vc-legal h2 {
  font-size: 20px;
  color: var(--vc-ink);
  margin-top: 32px;
  margin-bottom: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--vc-sand);
}
.vc-legal h3 {
  font-size: 16px;
  color: var(--vc-ink);
  margin-top: 20px;
  margin-bottom: 8px;
}
.vc-legal h4 {
  font-size: 14px;
  color: var(--vc-mute);
  margin-top: 14px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vc-legal p, .vc-legal li { font-size: 15px; line-height: 1.7; }
.vc-legal a { word-break: break-word; }
