/* =============================================================
   Craft Festival — Frontend-Theme (Cream + Pastel-Amber)
   Eigene Welt unter /craft-festival/, eigener Look-and-Feel
   ============================================================= */

:root {
  --cf-cream:    #FDF4E3;
  --cf-cream-2:  #FBE3CC;     /* Hellerer Cream-Amber-Ton für Card-Hintergründe */
  --cf-amber:    #E8924C;     /* Pastel-Amber Akzent */
  --cf-amber-d:  #D17B3A;     /* Darker für Hover */
  --cf-amber-l:  #FBDDB9;     /* Soft Tint */
  --cf-ink:      #1a1a1a;
  --cf-line:     #f0d9bd;
  --cf-muted:    #6b5a48;
}

body.page-craft {
  margin: 0; padding: 0;
  background: var(--cf-cream);
  color: var(--cf-ink);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
}
body.page-craft * { box-sizing: border-box; }

.cf-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* =============================================================
   HEADER (eigener, kompakt, mit Welt-Switcher)
   ============================================================= */
.cf-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(253, 244, 227, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cf-line);
}
.cf-header__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
}
.cf-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: var(--cf-ink);
}
.cf-logo img { width: 36px; height: 36px; border-radius: 8px; }
.cf-logo__text {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 22px; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cf-logo__text em { font-style: normal; color: var(--cf-amber-d); }

/* Nav — analog naïv: UPPERCASE, letter-spacing, flat (kein Pill-BG) */
.cf-nav { display: flex; gap: 30px; align-items: center; }
.cf-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 13.5px; font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  transition: color .15s ease;
}
.cf-nav a:hover { color: #000; }
.cf-nav a.is-active { color: var(--cf-amber-d); }
.cf-nav a.is-active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--cf-amber);
  border-radius: 2px;
}

/* Meta-Cluster rechts (analog .site-meta in naïv) */
.cf-meta {
  display: flex; align-items: center; gap: 14px;
}

/* Brand-Switcher Pill (analog massif, amber-themed) */
.cf-brand-switch { position: relative; }
.cf-brand-switch__btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232, 146, 76, 0.18);
  border: 1.5px solid var(--cf-amber);
  padding: 6px 12px;
  border-radius: 999px;
  font: inherit; font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--cf-ink); cursor: pointer;
  transition: background .15s ease;
}
.cf-brand-switch__btn svg { color: var(--cf-amber-d); }
.cf-brand-switch__btn:hover { background: var(--cf-amber); }
/* Brand-Switch-Optik 1:1 mit naïv-Variante (assets/css/style.css)
   — gleiche Maße/Spacing damit die Welten visuell konsistent sind.
   Theme-Farben bleiben amber für Craft. */
.cf-brand-switch__menu {
  position: absolute;
  top: calc(100% + 10px); right: 0;
  z-index: 100;
  min-width: 360px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 20px 48px -12px rgba(0,0,0,0.25);
  padding: 14px 14px 10px;
  display: flex; flex-direction: column; gap: 4px;
  animation: cfBsIn .18s ease-out;
}
.cf-brand-switch__menu[hidden] { display: none; }
@keyframes cfBsIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.cf-brand-switch__head {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cf-muted);
  margin: 0 8px 6px; font-weight: 700;
}
.cf-brand-switch__back {
  display: block; text-align: center;
  font-size: 12px; color: var(--cf-muted);
  text-decoration: none;
  padding: 8px 4px 4px; margin-top: 4px;
  border-top: 1px dashed rgba(0,0,0,0.1);
}
.cf-brand-switch__back:hover { color: var(--cf-amber-d); }
.cf-brand-switch__item {
  display: grid; grid-template-columns: 44px 1fr auto;
  gap: 14px; align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none; color: var(--cf-ink);
  transition: background .12s ease;
}
.cf-brand-switch__item:hover { background: var(--cf-cream-2); }
.cf-brand-switch__item.is-current { background: var(--cf-cream-2); }
.cf-brand-switch__item.is-current .cf-brand-switch__name { color: var(--cf-amber-d); }
.cf-brand-switch__item img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.cf-brand-switch__name {
  font-family: 'Anton','Impact',sans-serif;
  font-size: 18px; letter-spacing: 0.04em;
  display: block; line-height: 1;
}
.cf-brand-switch__sub {
  display: block; font-size: 11.5px;
  color: var(--cf-muted); margin-top: 2px;
  letter-spacing: 0.02em;
}
.cf-brand-switch__here {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--cf-amber-d);
  background: var(--cf-amber-l); padding: 3px 8px; border-radius: 999px;
}

/* Hamburger-Toggle — nur Mobile sichtbar (analog .m-nav-toggle) */
.cf-nav-toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  padding: 8px; gap: 5px;
  flex-direction: column; align-items: stretch;
  -webkit-tap-highlight-color: transparent;
}
.cf-nav-toggle__bar {
  display: block; width: 26px; height: 2.5px;
  background: #1a1a1a; border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.cf-nav-toggle.is-open .cf-nav-toggle__bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.cf-nav-toggle.is-open .cf-nav-toggle__bar:nth-child(2) { opacity: 0; }
.cf-nav-toggle.is-open .cf-nav-toggle__bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 720px) {
  .cf-brand-switch__btn span { display: none; }

  /* Layout analog Massif: Logo LINKS (margin-right: auto drückt den Rest
     nach rechts), dann Meta-Cluster (Lang/Welt/Cart), Hamburger GANZ
     RECHTS. Nav klappt als Dropdown nach unten.
     justify-content: flex-start überschreibt das Desktop-space-between —
     sonst zerreißt es die umgebrochene Zeile. flex-wrap erlaubt der Nav
     (flex-basis: 100%) eine eigene Zeile. */
  .cf-header__inner {
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 12px; row-gap: 0;
    padding: 12px 16px;
  }
  .cf-logo       { order: 1; margin-right: auto; }
  .cf-meta       { order: 2; }
  .cf-nav-toggle { display: flex; order: 3; position: relative; z-index: 5; }
  .cf-logo__text { font-size: 18px; }
  .cf-logo img   { width: 32px; height: 32px; }

  /* Hauptnav klappt nach UNTEN (collapsible). Geschlossen 0px hoch +
     border-top: 0 → keine sichtbare Linie unter dem Header. Cream-BG
     passend zum Header (vorher #fff → wirkte abgeschnitten/zerschossen). */
  /* Full-bleed-Breakout: flex-basis MUSS calc(100% + 32px) sein, damit
     das Element selbst um die 2×16px Header-Padding breiter wird. Mit
     reinem width: 100% greift nur margin-left (links full-bleed), die
     rechte negative Margin verbreitert das Element nicht → rechts blieb
     16px Lücke. */
  .cf-nav {
    order: 5;
    flex: 0 0 calc(100% + 32px);
    width: calc(100% + 32px);
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fdf4e3;
    border-top: 0 solid rgba(0,0,0,0.08);
    margin: 0 -16px;
    padding: 0 16px;
    max-height: 0; overflow: hidden;
    transition: max-height .25s ease, padding .25s ease, border-top-width .15s ease;
  }
  .cf-nav.is-open {
    max-height: 60vh;
    padding: 4px 16px 8px;     /* knapperes Bottom-Padding */
    margin: 12px -16px 0;
    border-top-width: 1px;
  }
  /* Dropdown-Links: clean Liste mit Trennlinien über die volle Breite. */
  .cf-nav a {
    display: block;
    padding: 16px 4px;
    font-size: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .cf-nav a:last-child { border-bottom: 0; padding-bottom: 6px; }
  .cf-nav a.is-active::after { display: none; }

  /* Welt-Dropdown im Viewport halten */
  .cf-brand-switch__menu {
    position: fixed;
    top: 70px;
    left: 12px;
    right: 12px;
    min-width: 0;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* Scroll-Lock für offenes Mobile-Menü */
body.cf-nav-locked { overflow: hidden; }

/* =============================================================
   HERO
   ============================================================= */
.cf-hero {
  position: relative;
  min-height: 80vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 0;
}
.cf-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--cf-hero-img);
  background-size: cover; background-position: center;
  filter: brightness(0.7) saturate(0.95);
  z-index: 0;
}
.cf-hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.05) 80%, rgba(0,0,0,0) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}
.cf-hero__inner {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%;
  margin: 0 auto;
  padding: 120px 28px 80px;
  color: #fff;
}
.cf-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 700; color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.cf-hero__eyebrow::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cf-amber);
  box-shadow: 0 0 0 3px rgba(232, 146, 76, 0.30);
}
.cf-hero__title {
  font-family: 'Anton','Impact',sans-serif;
  font-size: clamp(54px, 9vw, 124px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin: 0 0 22px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.55), 0 4px 24px rgba(0,0,0,0.4);
}
.cf-hero__title em {
  display: block;
  font-style: normal;
  color: var(--cf-amber);
  margin-top: 6px;
}
.cf-hero__divider {
  width: 80px; height: 3px;
  background: var(--cf-amber);
  border: 0; margin: 6px 0 20px;
}
.cf-hero__claim {
  font-size: 18px; line-height: 1.45;
  max-width: 520px;
  margin: 0 0 28px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  font-weight: 500;
}
.cf-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Buttons */
.cf-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 24px;
  font-family: inherit;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em;
  border: 0; border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}
.cf-btn--amber { background: var(--cf-amber); color: var(--cf-ink); }
.cf-btn--amber:hover { background: var(--cf-amber-d); transform: translateY(-1px); color: #fff; }
.cf-btn--ghost {
  background: rgba(0,0,0,0.18);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}
.cf-btn--ghost:hover { background: rgba(0,0,0,0.32); border-color: #fff; }

/* =============================================================
   PITCH — Bild + Text Side-by-Side
   ============================================================= */
.cf-pitch { padding: 64px 24px; }
.cf-pitch__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.cf-pitch__media img {
  width: 100%; height: 100%; max-height: 520px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.cf-pitch__eyebrow {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cf-amber-d); font-weight: 700;
  margin-bottom: 14px;
}
.cf-pitch__text h2 {
  font-family: 'Anton','Impact',sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 0.95; letter-spacing: 0.02em;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.cf-pitch__text h2 em {
  display: block; font-style: normal;
  color: var(--cf-amber-d);
}
.cf-pitch__text p {
  font-size: 16px; line-height: 1.65;
  margin: 0 0 14px;
  color: #2b2b2b;
  max-width: 560px;
}
.cf-pitch__cta-line {
  margin-top: 18px !important;
  padding-top: 16px; border-top: 1px dashed rgba(0,0,0,.15);
  font-size: 14.5px !important;
}
.cf-pitch__cta-line a { color: var(--cf-amber-d, #C7691A); font-weight: 700; text-decoration: underline; }
@media (max-width: 880px) {
  .cf-pitch__grid { grid-template-columns: 1fr; gap: 24px; }
  .cf-pitch__media img { max-height: 320px; }
}

/* =============================================================
   INFO-BLOCK (Was dich erwartet als Bullet-Liste)
   ============================================================= */
.cf-info {
  padding: 24px 24px 80px;
  background: var(--cf-cream-2);
}
.cf-info__inner {
  max-width: 800px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--cf-line);
  border-radius: 18px;
  padding: 36px 36px 32px;
  box-shadow: 0 4px 24px -8px rgba(0,0,0,0.08);
}
.cf-info__head { text-align: center; margin-bottom: 22px; }
.cf-info__eyebrow {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cf-amber-d); font-weight: 700;
  margin-bottom: 8px;
}
.cf-info__title {
  font-family: 'Anton','Impact',sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.02em;
  margin: 0;
  text-transform: uppercase;
}

.cf-info__list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.cf-info__list li {
  position: relative;
  padding: 12px 14px 12px 44px;
  background: var(--cf-cream);
  border: 1px solid var(--cf-line);
  border-radius: 10px;
  font-size: 15px; line-height: 1.5;
}
.cf-info__list li::before {
  content: '';
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cf-amber);
}

.cf-info__cta {
  margin-top: 26px;
  text-align: center;
  font-size: 14px; color: var(--cf-muted);
}
.cf-info__cta a { color: var(--cf-amber-d); font-weight: 700; text-decoration: underline; }

/* =============================================================
   FOOTER
   ============================================================= */
.cf-footer {
  background: var(--cf-ink); color: rgba(255,255,255,0.8);
  border-top: 4px solid var(--cf-amber);
  padding: 36px 24px 28px;
}
.cf-footer__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.cf-footer__col h4 {
  font-family: 'Anton','Impact',sans-serif;
  color: var(--cf-amber);
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  margin: 0 0 12px;
}
.cf-footer__col p { margin: 0 0 6px; font-size: 13.5px; line-height: 1.55; }
.cf-footer__col a { color: var(--cf-amber); text-decoration: none; }
.cf-footer__col a:hover { text-decoration: underline; }
.cf-footer__bottom {
  max-width: 1200px; margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 11.5px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 720px) {
  .cf-footer__inner { grid-template-columns: 1fr; gap: 24px; }
}

/* =============================================================
   Dynamic Sections — Tage / Lineup-Teaser / Fallback / Cart
   ============================================================= */

/* --- Lang-Switch (analog naïv: minimalistisch) --- */
.cf-lang { display: flex; align-items: center; }
.cf-lang__btn {
  display: inline-block;
  padding: 6px 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.55);
  text-decoration: none;
  text-transform: uppercase;
  transition: color .15s;
}
.cf-lang__btn:hover { color: var(--cf-ink, #1a1a1a); }

/* --- Cart-Mini im Header (analog naïv: simpler shopping-bag-Icon) --- */
.cf-cart-mini {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  margin-left: 4px;
  background: transparent;
  border: 0;
  color: var(--cf-ink, #1a1a1a);
  text-decoration: none;
  cursor: pointer;
  transition: color .15s ease;
}
.cf-cart-mini:hover { color: var(--cf-amber-d, #d57a32); }
.cf-cart-mini__count {
  position: absolute; top: -2px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 9px;
  background: var(--cf-amber, #E8924C);
  color: var(--cf-ink, #1a1a1a);
  font-size: 11px; font-weight: 700; line-height: 18px;
  text-align: center;
}

/* --- Sticky Cart-Bar am Bildschirm-Unterrand --- */
.cf-cart-bar {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--cf-ink, #1a1a1a); color: #fff;
  border-top: 3px solid var(--cf-amber, #E8924C);
  z-index: 200;
  box-shadow: 0 -6px 20px rgba(0,0,0,.2);
}
.cf-cart-bar__inner {
  max-width: 1200px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.cf-cart-bar__info { font-size: 15px; }
.cf-cart-bar__info strong {
  font-family: 'Anton','Impact',sans-serif;
  color: var(--cf-amber, #E8924C);
  font-size: 20px; margin-right: 4px;
}
.cf-cart-bar__cta {
  display: inline-block;
  padding: 10px 18px;
  background: var(--cf-amber, #E8924C); color: var(--cf-ink, #1a1a1a);
  border-radius: 999px;
  font-weight: 700; text-decoration: none;
  letter-spacing: 0.04em;
}
.cf-cart-bar__cta:hover { background: var(--cf-amber-d, #d57a32); color: #fff; }
@media (max-width: 540px) {
  .cf-cart-bar__inner { padding: 10px 14px; flex-direction: row; }
  .cf-cart-bar__info { font-size: 13px; }
}
/* Wenn Cart-Bar sichtbar: etwas Platz unten lassen damit der Footer
   nicht verdeckt wird — geht zwar visuell, aber UX-Wahrnehmung ok. */
body.page-craft:has(.cf-cart-bar) { padding-bottom: 60px; }

/* --- Tage / Termin-Cards --- */
.cf-days {
  background: #fff;
  padding: 64px 24px;
}
.cf-days__inner { max-width: 1100px; margin: 0 auto; }
.cf-days__title {
  font-family: 'Anton','Impact',sans-serif;
  font-size: 28px; letter-spacing: 0.06em; text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--cf-ink, #1a1a1a);
  text-align: center;
}
.cf-days__grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  max-width: 720px; margin: 0 auto;
}
.cf-day-card {
  background: var(--cf-amber, #E8924C); color: var(--cf-ink, #1a1a1a);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
}
.cf-day-card__weekday {
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; opacity: .8;
}
.cf-day-card__date {
  font-family: 'Anton','Impact',sans-serif;
  font-size: 40px; line-height: 1; margin: 8px 0 6px;
}
.cf-day-card__label {
  font-size: 15px; font-weight: 600;
}
.cf-day-card__hours {
  margin-top: 8px;
  font-size: 13px; opacity: .85;
  letter-spacing: 0.02em;
}

/* --- Lineup-Teaser auf Index --- */
.cf-lineup-teaser {
  background: #faf6ef;
  padding: 64px 24px;
}
.cf-lineup-teaser__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.cf-lineup-teaser h2 {
  font-family: 'Anton','Impact',sans-serif;
  font-size: 32px; letter-spacing: 0.04em;
  margin: 0 0 8px;
}
.cf-lineup-teaser .muted { color: #888; margin: 0 0 28px; }
.cf-lineup-teaser__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}
.cf-lineup-teaser__grid a {
  display: block; aspect-ratio: 1; background: #fff;
  border-radius: 10px; padding: 14px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.cf-lineup-teaser__grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.cf-lineup-teaser__grid img {
  max-width: 100%; max-height: 100%; object-fit: contain;
}
.cf-lineup-teaser__placeholder {
  font-weight: 700; color: var(--cf-ink, #1a1a1a);
  font-size: 13px; text-align: center;
}

/* --- Fallback-Page-Body --- */
.cf-hero--ghost::before { background-color: rgba(0,0,0,.5); }
.cf-fallback {
  padding: 56px 24px;
  background: #fff;
}
.cf-fallback__inner {
  max-width: 720px; margin: 0 auto;
  font-size: 16px; line-height: 1.7;
}
.cf-fallback__inner p { margin: 0 0 14px; }
.cf-fallback__inner a { color: var(--cf-amber-d, #d57a32); }

/* =============================================================
   Tickets-Page
   ============================================================= */
.cf-hero--slim { min-height: 320px; }
.cf-hero--slim .cf-hero__title { font-size: clamp(36px, 6vw, 64px); }

.cf-tickets {
  padding: 56px 24px 80px;
  background: #fff;
}
.cf-tickets__inner { max-width: 1100px; margin: 0 auto; }

.cf-tickets__notice {
  max-width: 720px; margin: 0 auto 40px;
  padding: 18px 22px;
  background: #fff6e8; border: 1px solid #f0d59b; border-radius: 10px;
  font-size: 15px; line-height: 1.55;
}
.cf-tickets__empty { text-align: center; color: #888; padding: 60px 20px; }
.cf-tickets__note {
  max-width: 720px; margin: 36px auto 0;
  text-align: center; color: #777; font-size: 14px; line-height: 1.6;
}

.cf-ticket-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.cf-ticket-card {
  background: #faf6ef;
  border: 1px solid #ebe3d2;
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .15s, box-shadow .15s;
}
/* Padding pro Inhalts-Block — Bild läuft randlos */
.cf-ticket-card > .cf-ticket-card__head,
.cf-ticket-card > .cf-ticket-card__desc,
.cf-ticket-card > .cf-ticket-card__price,
.cf-ticket-card > .cf-ticket-card__form { padding-left: 22px; padding-right: 22px; }
.cf-ticket-card > .cf-ticket-card__head { padding-top: 22px; }
.cf-ticket-card > .cf-ticket-card__form { padding-bottom: 22px; }
.cf-ticket-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}
.cf-ticket-card.is-sold-out {
  opacity: .55;
  pointer-events: none;
}
.cf-ticket-card__img {
  margin: 0 0 18px;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #ebe3d2;
}
.cf-ticket-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.cf-ticket-card__head h3 {
  font-family: 'Anton','Impact',sans-serif;
  font-size: 22px; letter-spacing: 0.04em; text-transform: uppercase;
  margin: 0 0 4px;
  color: var(--cf-ink, #1a1a1a);
}
.cf-ticket-card__days {
  margin: 0 0 14px;
  font-size: 13px; color: var(--cf-amber-d, #d57a32);
  font-weight: 600; letter-spacing: 0.04em;
}
.cf-ticket-card__desc {
  margin: 0 0 18px;
  font-size: 14.5px; line-height: 1.55; color: #555;
  flex: 1;
}
.cf-ticket-card__price {
  display: flex; align-items: baseline; gap: 12px;
  margin: 6px 0 16px;
}
.cf-ticket-card__price strong {
  font-family: 'Anton','Impact',sans-serif;
  font-size: 30px; letter-spacing: 0.02em;
  color: var(--cf-ink, #1a1a1a);
}
.cf-ticket-card__badge {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
}
.cf-ticket-card__badge--out { background: #ddd; color: #444; }
.cf-ticket-card__badge--low { background: #fff1e1; color: #c25b1a; }

.cf-ticket-card__form {
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px dashed #e0d8c2; padding-top: 14px;
}
.cf-ticket-card__qty {
  display: flex; align-items: center; gap: 10px;
}
.cf-ticket-card__qty span { font-size: 13px; color: #666; }
.cf-ticket-card__qty input {
  width: 70px; padding: 8px 10px;
  border: 1px solid #d6cdb7; border-radius: 8px;
  font-size: 15px; font-family: inherit;
  background: #fff;
}
.cf-ticket-card__cta {
  width: 100%; text-align: center;
}
.cf-ticket-card__msg {
  font-size: 13.5px; min-height: 1.4em;
}
.cf-ticket-card__msg--ok  { color: #1f6b27; font-weight: 600; }
.cf-ticket-card__msg--err { color: #b71c1c; font-weight: 600; }

/* =============================================================
   Aussteller-Lineup Page (List + Filter)
   ============================================================= */
.cf-lineup {
  padding: 48px 24px 80px;
  background: #fff;
}
.cf-lineup__inner { max-width: 1200px; margin: 0 auto; }

.cf-cat-filter {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin: 0 0 36px;
}
.cf-cat-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: #faf6ef;
  border: 1px solid #ebe3d2;
  border-radius: 999px;
  color: #555; text-decoration: none;
  font-size: 14px; font-weight: 600;
  transition: background .15s, color .15s, border-color .15s;
}
.cf-cat-pill:hover { background: #fff1e1; color: var(--cf-amber-d, #d57a32); }
.cf-cat-pill.is-active {
  background: var(--cf-amber, #E8924C);
  border-color: var(--cf-amber, #E8924C);
  color: var(--cf-ink, #1a1a1a);
}
.cf-cat-pill__count {
  font-size: 12px; opacity: .7;
  background: rgba(0,0,0,.08);
  padding: 1px 7px; border-radius: 999px;
  font-weight: 700;
}
.cf-cat-pill.is-active .cf-cat-pill__count { background: rgba(0,0,0,.15); opacity: 1; }

.cf-lineup__empty {
  text-align: center; padding: 60px 20px;
  color: #888;
}

.cf-exhibitor-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.cf-exhibitor-card { display: flex; }
.cf-exhibitor-card__link {
  display: flex; flex-direction: column;
  width: 100%;
  background: #faf6ef;
  border: 1px solid #ebe3d2;
  border-radius: 14px;
  text-decoration: none; color: inherit;
  overflow: hidden;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.cf-exhibitor-card__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.07);
  border-color: var(--cf-amber, #E8924C);
}
.cf-exhibitor-card__logo {
  aspect-ratio: 1;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  border-bottom: 1px solid #ebe3d2;
}
.cf-exhibitor-card__logo img {
  max-width: 100%; max-height: 100%; object-fit: contain;
}
.cf-exhibitor-card__placeholder {
  font-family: 'Anton','Impact',sans-serif;
  font-size: 18px; text-align: center;
  color: var(--cf-ink, #1a1a1a);
  word-break: break-word;
}
.cf-exhibitor-card__body {
  padding: 14px 16px 18px;
}
.cf-exhibitor-card__name {
  font-family: 'Anton','Impact',sans-serif;
  font-size: 18px; letter-spacing: 0.03em;
  margin: 0 0 4px;
  color: var(--cf-ink, #1a1a1a);
}
.cf-exhibitor-card__meta { margin: 0 0 8px; font-size: 12.5px; color: #777; }
.cf-exhibitor-card__cat {
  display: inline-block;
  background: var(--cf-amber, #E8924C);
  color: var(--cf-ink, #1a1a1a);
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px;
}

/* =============================================================
   Aussteller-Detail Page
   ============================================================= */
.cf-exhibitor {
  padding: 48px 24px 80px;
  background: #fff;
}
.cf-exhibitor__inner {
  max-width: 820px; margin: 0 auto;
}
.cf-exhibitor__back {
  margin: 0 0 24px;
  font-size: 14px;
}
.cf-exhibitor__back a {
  color: var(--cf-amber-d, #d57a32);
  text-decoration: none; font-weight: 600;
}
.cf-exhibitor__back a:hover { text-decoration: underline; }

.cf-exhibitor__head {
  display: grid; gap: 24px;
  grid-template-columns: 180px 1fr;
  align-items: center;
  margin: 0 0 32px;
}
@media (max-width: 540px) {
  .cf-exhibitor__head { grid-template-columns: 1fr; text-align: center; }
  .cf-exhibitor__logo { margin: 0 auto; }
}
.cf-exhibitor__logo {
  width: 180px; aspect-ratio: 1;
  background: #faf6ef;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  padding: 22px;
}
.cf-exhibitor__logo img {
  max-width: 100%; max-height: 100%; object-fit: contain;
}
.cf-exhibitor__placeholder {
  font-family: 'Anton','Impact',sans-serif;
  font-size: 24px; text-align: center;
  color: var(--cf-ink, #1a1a1a);
}
.cf-exhibitor__title h1 {
  font-family: 'Anton','Impact',sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: 0.04em;
  margin: 0 0 6px;
  color: var(--cf-ink, #1a1a1a);
}
.cf-exhibitor__meta {
  margin: 0 0 8px;
  font-size: 14px; color: #666;
  letter-spacing: 0.02em;
}
.cf-exhibitor__badge {
  margin: 10px 0 0;
  font-size: 13.5px; font-weight: 600;
  color: var(--cf-amber-d, #d57a32);
}

.cf-exhibitor__note {
  background: #fff1e1;
  border-left: 4px solid var(--cf-amber, #E8924C);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin: 0 0 28px;
  font-size: 15px; line-height: 1.55;
}
.cf-exhibitor__desc {
  font-size: 16px; line-height: 1.7;
  color: #333;
  margin: 0 0 32px;
}
.cf-exhibitor__products {
  background: #faf6ef;
  border-radius: 12px;
  padding: 20px 22px;
  margin: 0 0 28px;
}
.cf-exhibitor__products h3 {
  font-family: 'Anton','Impact',sans-serif;
  font-size: 16px; letter-spacing: 0.08em; text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--cf-ink, #1a1a1a);
}
.cf-exhibitor__products p {
  margin: 0; font-size: 15px; line-height: 1.55; color: #444;
}
.cf-exhibitor__links {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin: 0 0 32px;
}
.cf-exhibitor__history {
  background: #faf6ef;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 0 0 32px;
}
.cf-exhibitor__history h3 {
  font-family: 'Anton','Impact',sans-serif;
  font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--cf-ink, #1a1a1a);
}
.cf-exhibitor__history ul {
  list-style: none; padding: 0; margin: 0;
}
.cf-exhibitor__history li {
  padding: 4px 0;
  font-size: 14px;
}
.cf-exhibitor__history .muted { color: #888; font-size: 12.5px; margin-left: 4px; }
.cf-exhibitor__cta { text-align: center; margin: 24px 0 0; }

/* =============================================================
   Cart-Modal + Sticky-Bar als Button
   ============================================================= */
.cf-no-scroll { overflow: hidden; }

/* Sticky-Bar als Button (war vorher <div>) */
.cf-cart-bar {
  appearance: none;
  border: 0; border-top: 3px solid var(--cf-amber, #E8924C);
  width: 100%;
  text-align: left;
  cursor: pointer;
  font: inherit;
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--cf-ink, #1a1a1a); color: #fff;
  z-index: 200;
  box-shadow: 0 -6px 20px rgba(0,0,0,.2);
  transition: background .15s;
}
.cf-cart-bar:hover { background: #2a2a2a; }
.cf-cart-bar__total { opacity: .85; }

/* Mini-Cart im Header als Button */
button.cf-cart-mini {
  appearance: none; border: 0; cursor: pointer; font: inherit;
}

/* Modal */
.cf-cart-modal {
  position: fixed; inset: 0;
  z-index: 1000;
  display: flex; align-items: flex-start; justify-content: center;
}
.cf-cart-modal[hidden] { display: none; }
.cf-cart-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
  animation: cfModalFade .15s ease-out;
}
.cf-cart-modal__panel {
  position: relative;
  background: #fff;
  max-width: 480px; width: 92%;
  margin: 60px auto;
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.3);
  overflow: hidden;
  animation: cfModalPop .18s ease-out;
}
@keyframes cfModalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes cfModalPop  { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }

.cf-cart-modal__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  background: var(--cf-ink, #1a1a1a); color: #fff;
}
.cf-cart-modal__head h2 {
  margin: 0;
  font-family: 'Anton','Impact',sans-serif;
  font-size: 22px; letter-spacing: 0.04em;
  color: var(--cf-amber, #E8924C);
}
.cf-cart-modal__close {
  appearance: none; border: 0; background: transparent;
  color: #fff; font-size: 24px; line-height: 1;
  padding: 4px 8px; cursor: pointer; opacity: .8;
}
.cf-cart-modal__close:hover { opacity: 1; }

.cf-cart-list {
  list-style: none; margin: 0; padding: 0;
  max-height: 50vh; overflow-y: auto;
}
.cf-cart-item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 14px 22px;
  border-bottom: 1px solid #f0eee8;
}
.cf-cart-item:last-child { border-bottom: 0; }
.cf-cart-item__main { display: flex; gap: 10px; align-items: baseline; flex: 1; min-width: 0; }
.cf-cart-item__qty {
  font-weight: 700; color: var(--cf-amber-d, #d57a32);
  font-variant-numeric: tabular-nums;
}
.cf-cart-item__title {
  font-size: 14.5px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cf-cart-item__right { display: flex; align-items: center; gap: 12px; }
.cf-cart-item__price { font-weight: 700; font-variant-numeric: tabular-nums; }
.cf-cart-item__remove {
  appearance: none; border: 0; cursor: pointer;
  width: 28px; height: 28px;
  border-radius: 50%; background: #f4eedb;
  color: #888; font-size: 18px; line-height: 1;
  transition: background .15s, color .15s;
}
.cf-cart-item__remove:hover { background: #ED1C24; color: #fff; }

.cf-cart-empty {
  padding: 32px 22px;
  text-align: center; color: #888;
  font-style: italic;
}

.cf-cart-modal__total {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px;
  border-top: 1px solid #f0eee8;
  background: #faf6ef;
  font-size: 15px;
}
.cf-cart-modal__total strong {
  font-family: 'Anton','Impact',sans-serif;
  font-size: 22px; letter-spacing: 0.02em;
  color: var(--cf-ink, #1a1a1a);
}

.cf-cart-modal__foot {
  padding: 18px 22px 8px;
  display: flex; gap: 10px; flex-direction: column-reverse;
}
.cf-cart-modal__foot .cf-btn { width: 100%; text-align: center; }
@media (min-width: 480px) {
  .cf-cart-modal__foot { flex-direction: row; justify-content: space-between; }
  .cf-cart-modal__foot .cf-btn { width: auto; flex: 1; }
}

.cf-cart-modal__note {
  margin: 0; padding: 0 22px 18px;
  font-size: 11.5px; color: #aaa;
  text-align: center;
  line-height: 1.5;
}

/* ========================================================
   FAQ — Accordion (cf-faq)
   ======================================================== */
.cf-faq { padding: 60px 20px 80px; background: var(--cf-cream, #faf3e6); }
.cf-faq__wrap { max-width: 820px; margin: 0 auto; }
.cf-faq__head { text-align: center; margin-bottom: 38px; }
.cf-faq__head h1 {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(36px, 6vw, 56px); letter-spacing: 0.02em;
  margin: 0 0 12px; color: var(--cf-ink, #1a1a1a);
}
.cf-faq__head .muted { color: #6a5d44; font-size: 15px; margin: 0; line-height: 1.5; }
.cf-faq__head .muted a { color: var(--cf-amber, #d57a32); text-decoration: underline; }

.cf-faq__list { list-style: none; padding: 0; margin: 0; }
.cf-faq__item {
  background: #fff;
  border: 1.5px solid #e8dec8;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cf-faq__item:hover { border-color: var(--cf-amber, #d57a32); }
.cf-faq__item details[open] {
  box-shadow: 0 4px 18px rgba(213, 122, 50, 0.08);
}
.cf-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  user-select: none;
}
.cf-faq__item summary::-webkit-details-marker { display: none; }
.cf-faq__q {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 19px; letter-spacing: 0.02em;
  color: var(--cf-ink, #1a1a1a);
  line-height: 1.25;
}
.cf-faq__chev {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cf-amber, #d57a32);
  color: #fff;
  font-size: 22px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: transform .2s cubic-bezier(.2,1.5,.3,1);
}
.cf-faq__item details[open] .cf-faq__chev { transform: rotate(45deg); }

.cf-faq__a {
  padding: 0 22px 20px;
  color: #2a2a2a;
  font-size: 15px;
  line-height: 1.65;
}
.cf-faq__a p { margin: 0 0 10px; }
.cf-faq__a p:last-child { margin-bottom: 0; }
.cf-faq__a strong { color: var(--cf-ink, #1a1a1a); }
.cf-faq__a a { color: var(--cf-amber, #d57a32); text-decoration: underline; }
.cf-faq__a ul, .cf-faq__a ol { padding-left: 22px; margin: 8px 0; }
.cf-faq__a li { margin-bottom: 4px; }

@media (max-width: 600px) {
  .cf-faq { padding: 40px 16px 60px; }
  .cf-faq__item summary { padding: 14px 16px; }
  .cf-faq__q { font-size: 17px; }
  .cf-faq__a { padding: 0 16px 16px; font-size: 14.5px; }
}

/* ========================================================
   Newsletter — Mailjet-Embed (cf-newsletter)
   Die rote Mailjet-Box bringt eigenes Branding + Padding mit.
   Kein Card-Wrapper drumherum — iframe sitzt direkt auf Cream,
   nur Ecken rundgeschnitten + dezenter Schatten.
   ======================================================== */
.cf-newsletter {
  padding: 48px 20px 64px;
  background: var(--cf-cream, #faf3e6);
  border-top: 2px solid #e8dec8;
}
.cf-newsletter__wrap {
  max-width: 480px; margin: 0 auto;
  text-align: center;
}
.cf-newsletter__head h2 {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(28px, 4vw, 38px); letter-spacing: 0.02em;
  margin: 0 0 8px; color: var(--cf-ink, #1a1a1a);
}
.cf-newsletter__intro {
  color: #6a5d44; font-size: 14.5px;
  margin: 0 auto 22px; max-width: 440px; line-height: 1.55;
}
.cf-newsletter__form {
  border-radius: 14px;
  overflow: hidden;
  line-height: 0; /* killt inline-gap unter dem iframe */
  min-height: 200px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.cf-newsletter__form iframe {
  display: block;
  width: 100%;
  border: 0;
}
/* Placeholder — gezeigt bis User dem Newsletter-Cookie zustimmt. */
.cf-newsletter__placeholder {
  background: #fff;
  border: 1.5px dashed #e8dec8;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  line-height: 1.55;
}
.cf-newsletter__placeholder p {
  margin: 0 0 18px;
  color: #4a4032;
  font-size: 14px;
}
.cf-newsletter__placeholder p:last-child { margin: 14px 0 0; }
.cf-newsletter__placeholder strong { color: var(--cf-ink, #1a1a1a); }
.cf-newsletter__placeholder-fineprint {
  font-size: 12px;
  color: #aaa;
}
.cf-newsletter__placeholder-fineprint a {
  color: #999;
  text-decoration: underline;
}
