/* ============================================================
   In guten Händen — Stylesheet (MOBILE-FIRST)
   Basis-Styles = Mobile. @media (min-width) erweitert progressiv
   für Tablet (>=700px) und Desktop (>=900px).
   Typografie & grosse Abstände skalieren fluid via clamp().
   ============================================================ */

:root {
  /* ── Surfaces (warm cream, not pure white) ── */
  --color-background: #fefff4;
  --color-surface: #fefff4;
  --color-surface-bright: #fcfefc;
  --color-surface-dim: #d8dbd0;
  --color-surface-container-lowest: #fcfefc;
  --color-surface-container-low: #f6f7e8;
  --color-surface-container: #eef1de;
  --color-surface-container-high: #e8ebe0;
  --color-surface-container-highest: #e2e5d8;
  --color-surface-variant: #ece6d2;

  /* ── Text (deep anthracite + graphite) ── */
  --color-on-surface: #2f3331;
  --color-on-surface-variant: #434745;
  --color-on-background: #2f3331;
  --color-inverse-surface: #2d302c;
  --color-inverse-on-surface: #f0f2e7;

  /* ── Outlines ── */
  --color-outline: #6b7270;
  --color-outline-variant: rgba(47, 51, 49, 0.12);

  /* ── Primary — Grün ── */
  --color-primary: #76c261;
  --color-on-primary: #ffffff;
  --color-primary-container: #e9f5e3;
  --color-on-primary-container: #143a08;
  --color-inverse-primary: #4f9b43;
  --color-text-primary: #3d7d2c;       /* Dunkles Grün für Text/Icons auf hellen Hintergründen (Kontrast >5:1) */

  /* ── Secondary — Rosé (sparsam als Akzent) ── */
  --color-secondary: #c22458;
  --color-on-secondary: #ffffff;
  --color-secondary-container: #f6e4ec;
  --color-on-secondary-container: #5c1636;

  /* ── Tertiary — Goldgelb ── */
  --color-tertiary: #b8950a;
  --color-on-tertiary: #ffffff;
  --color-tertiary-container: #f5e8a0;
  --color-on-tertiary-container: #3d2d00;

  /* ── Error ── */
  --color-error: #ba1a1a;
  --color-on-error: #ffffff;
  --color-error-container: #ffdad6;
  --color-on-error-container: #93000a;

  /* ── Zusatz-Tokens ── */
  --color-accent: #c22458;           /* Rosé für Zitate, Labels */
  --color-sage: rgba(118, 194, 97, 0.35); /* Grün-Ableitung, transparent */
  --color-sand: #ece6d2;             /* Sand */
  --color-warm-beige: #f6f7e8;       /* Creme-2 */

  /* ── Typografie ── */
  --font-headline: 'Asap', 'Inter', sans-serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Bad Script', cursive;

  /* ── Spacing (fluid) ── */
  --space-unit: 8px;
  --space-container-max: 1200px;
  --space-gutter: clamp(16px, 2.5vw, 24px);
  --space-margin-page: clamp(1.25rem, 4vw, 2.5rem);
  --space-section-padding: clamp(3rem, 6vw, 5rem);

  /* ── Radii (warm, organisch) ── */
  --radius-sm: 0.25rem;
  --radius-md: 0.75rem;
  --radius-default: 0.625rem;   /* 10px */
  --radius-lg: 0.875rem;        /* 14px */
  --radius-xl: 1.25rem;         /* 20px */
  --radius-full: 9999px;

  /* ── Shadows (sehr weich) ── */
  --shadow-airy: 0 22px 60px rgba(67, 71, 69, 0.08);
  --shadow-card: 0 4px 16px rgba(67, 71, 69, 0.06);
  --shadow-elevated: 0 8px 32px rgba(67, 71, 69, 0.10);

  /* ── Motion & Easing ── */
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: all 0.8s var(--ease-premium);
  --transition-medium: all 0.4s var(--ease-premium);
  --transition-fast: all 0.2s var(--ease-smooth);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;               /* verhindert horizontalen Scroll auf allen Geräten */
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-on-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;                /* verhindert horizontalen Scroll, OHNE overflow-y auf 'auto' zu setzen (verhindert doppelte Scrollbalken) */
  max-width: 100%;
  width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography Classes — fluid (Mobile-Minimum → Desktop-Maximum) */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 400;
  color: var(--color-on-surface);
  overflow-wrap: break-word;
  word-break: break-word;
}

.headline-xl {
  font-size: clamp(1.5rem, 1.2rem + 1.8vw, 3rem);   /* 24px → 48px, sicher auf 320px */
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.headline-lg {
  font-size: clamp(1.625rem, 1.49rem + 0.7vw, 2rem);  /* 26px → 32px */
  line-height: 1.3;
}

.headline-md {
  font-size: clamp(1.3125rem, 1.25rem + 0.3vw, 1.5rem); /* 21px → 24px */
  font-weight: 500;
  line-height: 1.4;
}

.body-lg {
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);  /* 16px → 18px */
  line-height: 1.6;
}

.body-md {
  font-size: 1rem;                                     /* 16px */
  line-height: 1.6;
}

.label-md {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.kicker {
  color: var(--color-text-primary);
}

/* Layout */
.container {
  max-width: var(--space-container-max);
  margin: 0 auto;
  padding: 0 var(--space-margin-page);
}

section {
  padding: var(--space-section-padding) 0;
}

/* Buttons — Touch-freundlich (min. 44px Höhe) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-default);
  cursor: pointer;
  transition: var(--transition-medium);
  text-decoration: none;
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
}

.btn-primary:hover {
  background-color: var(--color-inverse-primary);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: rgba(118, 194, 97, 0.07);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-text-primary);
  min-height: 0;
  padding: 8px 16px;
  border-radius: 0;
  border-bottom: 1px solid transparent;
}

.btn-ghost:hover {
  border-bottom: 1px solid var(--color-primary);
}

/* Cards — auf Mobile etwas kompakter, ab Tablet grosszügig */
.card {
  background-color: var(--color-surface-container-lowest);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid var(--color-outline-variant);
  box-shadow: var(--shadow-card);
  transition: transform 0.6s var(--ease-premium), box-shadow 0.6s var(--ease-premium), border-color 0.6s var(--ease-premium);
}

.card:hover {
  box-shadow: var(--shadow-airy);
  transform: translateY(-3px);
  border-color: var(--color-sage);
}

/* Forms — 16px Schrift verhindert iOS-Auto-Zoom beim Fokus */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-default);
  border: 1px solid var(--color-outline-variant);
  background-color: var(--color-warm-beige);
  color: var(--color-on-surface);
  width: 100%;
  transition: border-color 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(118, 194, 97, 0.2);
}

/* Chips/Tags */
.chip {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background-color: rgba(118, 194, 97, 0.1);
  color: var(--color-on-primary-container);
  font-size: 14px;
  font-weight: 600;
}

/* ============================================================
   Header & Navigation — MOBILE-FIRST
   Basis: Hamburger sichtbar, Menü als Overlay-Panel.
   Ab >=900px: horizontale Navigation, Hamburger ausgeblendet.
   ============================================================ */
header {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-outline-variant);
  background-color: var(--color-surface);
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-link {
  text-decoration: none;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
/* Mobile-First: wächst progressiv mit dem Viewport */
.logo-img {
  height: 54px;
  width: auto;
  max-width: 270px;
  display: block;
  flex-shrink: 0;
}

/* Homepage-specific logo (+25% larger) */
.home-page .logo-img {
  height: 67px;
  max-width: 336px;
}
.logo-img--footer {
  height: 28px;
  max-width: 140px;
}

/* Hamburger — Basis sichtbar, immer ganz rechts */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  margin: -10px -10px -10px auto;  /* auto-left drückt ihn ganz nach rechts */
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-on-surface);
  border-radius: 2px;
  transition: var(--transition-medium);
}

/* Menü-Panel — Basis: ausgeblendet, öffnet als Overlay */
.nav-links {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  left: 0;
  background-color: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(22, 24, 23, 0.10);
  padding: 12px;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  z-index: 200;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
}

.nav-links.is-open {
  display: flex;
  animation: fadeIn 0.4s var(--ease-premium);
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-on-surface);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.4s var(--ease-premium), background-color 0.4s var(--ease-premium);
  padding: 12px 14px;       /* grössere Touch-Targets im mobilen Menü */
  border-radius: var(--radius-sm);
  display: block;
}

.nav-links > li > a:hover,
.nav-links > li:hover > a {
  color: var(--color-primary);
  background-color: rgba(118, 194, 97, 0.07);
}

/* Dropdown-Trigger-Pfeil */
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 11px;
  opacity: 0.6;
}

/* Dropdown — Basis (Mobile): statisch eingerückt, immer aufgeklappt im Panel */
.dropdown-menu {
  position: static;
  display: block;
  box-shadow: none;
  border: none;
  border-left: 2px solid var(--color-outline-variant);
  border-radius: 0;
  padding: 4px 0 4px 12px;
  margin-left: 8px;
  background: none;
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--color-on-surface);
  font-weight: 500;
  transition: background-color 0.3s var(--ease-premium), color 0.3s var(--ease-premium);
}

.dropdown-menu li a:hover {
  background-color: rgba(118, 194, 97, 0.09);
  color: var(--color-primary);
}

.dropdown-divider {
  height: 1px;
  background-color: var(--color-outline-variant);
  margin: 6px 8px;
}

.dropdown-label {
  display: block;
  padding: 8px 14px 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  opacity: 0.7;
}
.dropdown-label:first-child { padding-top: 0; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  background-color: var(--color-surface-container);
  padding: clamp(40px, 6vw, 64px) 0 32px;
  margin-top: var(--space-section-padding);
}

.developer-credit {
  padding: 10px 16px;
  background-color: var(--color-surface-container);
  color: var(--color-on-surface-variant);
  font-size: 12px;
  text-align: center;
}

.developer-credit a {
  color: inherit;
  text-decoration: none;
}

.developer-credit a:hover,
.developer-credit a:focus-visible {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ============================================================
   Helpers & Grids — MOBILE-FIRST
   Basis: alle Grids 1-spaltig. Spalten kommen via min-width dazu.
   ============================================================ */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 32px);
}

/* ============================================================
   Utility classes – ersetzt häufige Inline-Styles
   ============================================================ */

/* Navigation */
.nav-active { color: var(--color-primary); }
.nav-btn { font-size: 16px !important; padding: 12px 18px !important; }

/* Breadcrumb / back links */
.back-link {
  color: var(--color-outline);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 16px;
  display: inline-block;
}

/* Hero sections — fluid padding */
.section-hero { background-color: var(--color-surface-container-low); padding: clamp(56px, 9vw, 100px) 0; }
.section-bg-low { background-color: var(--color-surface-container-low); }
.section-bg-default { background-color: var(--color-background); }
.section-bg-lowest { background-color: var(--color-surface-container-lowest); }
.section-bg-variant { background-color: var(--color-surface-variant); }

/* Grid alignment helpers */
.grid-align-center { align-items: center; }
.grid-align-start  { align-items: flex-start; }

/* Hero image */
.hero-img-wrapper { border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.hero-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* Hero quote chip — overlay on hero/portrait image */
.hero-quote-chip {
  position: absolute;
  bottom: 16px;
  left: 16px;
  max-width: 220px;
  background-color: var(--color-surface-container-lowest);
  color: var(--color-on-surface);
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  margin: 0;
}

/* Trust badge */
.trust-badge { color: var(--color-outline); font-size: 14px; font-weight: 500; margin-bottom: 24px; }

/* Checklist */
.checklist { list-style: none; padding: 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist-icon { color: var(--color-text-primary); margin-top: 4px; }

/* Step boxes */
.step-box  { padding: 24px; }
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-headline);
}

/* Price cards */
.price-cards { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.price-card { padding: 24px 32px; border: 1px solid var(--color-outline-variant); border-radius: var(--radius-lg); }
.price-card--featured { padding: 24px 32px; border: 1px solid var(--color-primary); border-radius: var(--radius-lg); background-color: rgba(118,194,97,0.06); }
.price-amount { color: var(--color-text-primary); }

/* Price table — responsive, no horizontal scroll */
.price-table { width: 100%; border-collapse: collapse; text-align: center; font-size: 15px; }
.price-table th, .price-table td { padding: 10px 8px; }
.price-table th { font-weight: 600; }
.price-table th:first-child, .price-table td:first-child { text-align: left; }
.price-table tr { border-bottom: 1px solid var(--color-outline-variant); }
.price-table tr:last-child { border-bottom: none; }
.price-table td:not(:first-child) { color: var(--color-text-primary); }

/* Card size variant */
.card--lg { padding: clamp(24px, 5vw, 40px); }

/* Info list (used on preise.html) */
.info-list { list-style: none; padding: 0; }
.info-list li { margin-bottom: 24px; }
.info-list strong { display: block; margin-bottom: 4px; }

/* Container width helpers */
.container--sm { max-width: 800px; }
.container--md { max-width: 900px; }

/* Footer */
.logo-block  { display: block; }
.footer-text { font-size: 14px; }
.footer-link { color: var(--color-on-surface); text-decoration: none; }
.footer-links-list { list-style: none; padding: 0; font-size: 14px; }
.footer-headline { font-size: 18px; }
.footer-phone { color: inherit; }
.footer-link:hover { color: var(--color-primary); }

/* FAQ */
.faq-item     { border-bottom: 1px solid var(--color-outline-variant); padding-bottom: 24px; margin-bottom: 24px; }
.faq-question { font-size: 20px; }

/* Note text */
.note-text { font-size: 14px; color: var(--color-on-surface-variant); }

/* Social proof bar — Beerenmagenta als persönlicher Akzent */
.social-proof-bar { font-size: 14px; color: var(--color-on-surface-variant); border-left: 3px solid var(--color-accent); padding-left: 12px; font-style: italic; }

/* Button row — horizontal, left-aligned (use .cta-buttons for centered) */
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* Quote / Blockquote box */
.quote-box { padding: clamp(24px, 4vw, 40px); background-color: var(--color-surface-container-low); border-radius: var(--radius-lg); }

/* Trust logos / certification badges */
.trust-logos { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* Info / hint box — left-bordered warning or note */
.hint-box { background-color: var(--color-surface-variant); border-left: 3px solid var(--color-primary); padding: 16px 20px; border-radius: 0 var(--radius-md) var(--radius-md) 0; margin-top: 24px; }
.hint-box p { font-size: 14px; }

/* Large price display */
.price-amount--lg { font-size: 2rem; }

/* Language / notice chip */
.lang-note { background-color: rgba(118,194,97,0.08); border: 1px solid var(--color-primary); border-radius: var(--radius-md); padding: 12px 16px; font-size: 14px; font-weight: 600; color: var(--color-text-primary); }

/* Colour utility */
.text-primary { color: var(--color-text-primary); }

/* Inline label (display:block strong) */
.block-label { display: block; margin-bottom: 4px; }

/* Contact links within body text */
.contact-link { color: var(--color-text-primary); text-decoration: none; }
.contact-link:hover { text-decoration: underline; }

/* Opening hours table */
.hours-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.hours-table td { padding: 4px 0; }
.hours-table td:first-child { color: var(--color-on-surface-variant); width: 120px; }

/* Horizontal rule */
.divider { border: none; border-top: 1px solid var(--color-outline-variant); margin: 24px 0; }

/* Map/iframe wrapper */
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }

/* CTA section — fluid padding */
.section-cta    { background-color: #4f9b43; text-align: center; padding: clamp(56px, 9vw, 100px) 0; }
.cta-title      { color: #ffffff !important; text-shadow: 0 1px 2px rgba(0,0,0,0.15); }
.cta-subtitle   { color: #ffffff !important; opacity: 1; text-shadow: 0 1px 2px rgba(0,0,0,0.15); }
.cta-buttons    { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white  { background-color: #ffffff; color: #4f9b43; font-weight: 700; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.btn-cta-outline { background-color: transparent; border: 2px solid #c22458; color: #ffffff; font-weight: 600; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.btn-cta-outline:hover { background-color: #c22458; color: #ffffff; }

/* ============================================================
   Blog components
   ============================================================ */

.blog-hero { background-color: var(--color-surface-container-low); padding: var(--space-section-padding) 0; }
.blog-hero__container { max-width: 800px; }

.blog-card { padding: 0; display: flex; flex-direction: column; }
.blog-card__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg); display: block; }
.blog-card__body { padding: 24px 24px 32px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card__title { font-size: 22px; }
.blog-card__title--sm { font-size: 20px; }
.blog-card__excerpt { font-size: 15px; }
.blog-card__excerpt--sm { font-size: 14px; }
.blog-card__link { padding-left: 0; margin-top: auto; font-size: 14px; }

.blog-main { padding: var(--space-section-padding) 0; }

/* ============================================================
   Blog article template
   ============================================================ */

.article-hero { background-color: var(--color-surface-container-low); padding: clamp(40px, 7vw, 64px) 0 0; }
.article-hero__container { max-width: 800px; }
.article-hero__img-container { max-width: 900px; padding-top: 0; }
.article-hero__back { padding-left: 0; margin-bottom: 24px; display: inline-block; font-size: 14px; }
.article-hero__title { margin-top: 12px; }
.article-hero__meta { color: var(--color-on-surface-variant); }
.article-hero__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg); display: block; margin-top: clamp(20px, 4vw, 32px); }

.article-body { padding: clamp(40px, 7vw, 64px) 0 var(--space-section-padding); }
.article-body__container { max-width: 720px; }
.article-h2 { margin-top: clamp(32px, 5vw, 48px); }

.article-list { padding-left: 24px; margin-bottom: 24px; }

.article-cta { background-color: var(--color-surface-container-low); margin-top: 48px; margin-bottom: 48px; }

.article-nav { border-top: 1px solid var(--color-outline-variant); padding-top: 40px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.article-nav__link { font-size: 14px; }

.article-price { color: var(--color-text-primary); }
.article-meta-text { color: var(--color-on-surface-variant); font-size: 14px; }
.faq-item:last-of-type { border-bottom: none !important; }

/* ============================================================
   PROGRESSIVE ENHANCEMENT
   ============================================================ */

/* --- Tablet ab 700px: zweispaltige Inhalte --- */
@media (min-width: 700px) {
  .article-hero__img { aspect-ratio: 16/7; }   /* breiterer Hero ab Tablet */

  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .logo-img         { height: 66px; }
  .logo-img--footer { height: 34px; }
  .home-page .logo-img { height: 84px; }
}

/* --- Desktop ab 900px: volle Navigation + volle Spaltenzahl --- */
@media (min-width: 900px) {
  header { padding: 20px 0; }

  .logo-img         { height: 86px; }
  .logo-img--footer { height: 42px; }
  .home-page .logo-img { height: 108px; }

  /* Hamburger ausblenden, Navigation horizontal */
  .nav-toggle { display: none; }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    max-height: none;
    overflow: visible;
  }

  .nav-links a {
    font-size: 15px;
    padding: 8px 12px;
    white-space: nowrap;
  }

  /* Dropdown wird zum Hover-Flyout */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-left: 0;
    padding: 12px 8px 8px;
    min-width: 240px;
    background-color: var(--color-surface-container-lowest);
    border: 1px solid var(--color-outline-variant);
    border-left: 1px solid var(--color-outline-variant);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(26, 28, 22, 0.12);
  }

  .dropdown-menu li a { font-size: 14px; padding: 9px 14px; }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu,
  .nav-dropdown.js-open .dropdown-menu {
    display: block;
  }

  .nav-btn { font-size: 14px !important; padding: 10px 18px !important; }

  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* --- Reduzierte Bewegung respektieren --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}



/* ============================================================
   Accent utilities (Beerenmagenta, Bad Script)
   ============================================================ */
.text-accent   { color: var(--color-accent); }
.text-primary  { color: var(--color-text-primary); }
.font-accent   { font-family: var(--font-accent); }

/* Magenta-Akzent-Zitat */
.quote-accent {
  border-left: 3px solid var(--color-accent);
  padding-left: 16px;
  color: var(--color-accent);
  font-style: italic;
}

/* Sanfter Streifen für Vertrauens-Section */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 28px) 0;
  border-top: 1px solid var(--color-outline-variant);
  border-bottom: 1px solid var(--color-outline-variant);
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-on-surface-variant);
}
.trust-bar__icon { color: var(--color-text-primary); font-size: 18px; }

/* ============================================================
   Interactive Methods (Tabs to Accordion)
   ============================================================ */
.methods-section {
  padding: var(--space-section-padding) 0;
  background-color: var(--color-surface-container-low);
}

.methods-interactive {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

/* Nav list (Desktop only) */
.methods-nav-desktop {
  display: none; /* hidden on mobile */
  flex-direction: column;
  gap: 8px;
}

.method-tab-btn {
  background: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-on-surface);
  cursor: pointer;
  transition: var(--transition-fast);
  width: 100%;
}

.method-tab-btn:hover {
  background-color: rgba(118, 194, 97, 0.05);
  border-color: var(--color-primary);
}

.method-tab-btn.active {
  background-color: var(--color-primary-container);
  color: var(--color-on-primary-container);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-card);
}

/* Panels */
.methods-panels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.method-panel {
  background-color: var(--color-surface-container-lowest);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-medium);
  box-shadow: var(--shadow-card);
}

/* On Desktop, when inside active tab, display panel */
@media (min-width: 900px) {
  .methods-interactive {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .methods-nav-desktop {
    display: flex;
    flex: 0 0 280px;
  }
  
  .methods-panels {
    flex: 1;
    position: relative;
    min-height: 480px;
    gap: 0;
  }
  
  .method-panel {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s var(--ease-premium), transform 0.4s var(--ease-premium);
    box-shadow: var(--shadow-airy);
    padding: clamp(24px, 4vw, 40px);
  }
  
  .method-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    position: relative; /* so it takes layout space */
  }
  
  .method-accordion-trigger {
    display: none !important;
  }
  
  .method-panel-content {
    display: block !important;
  }
}

/* Accordion Trigger (Mobile only) */
.method-accordion-trigger {
  width: 100%;
  padding: 18px 24px;
  background: transparent;
  border: none;
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  color: var(--color-on-surface);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.method-accordion-trigger::after {
  content: '+';
  font-size: 20px;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.method-panel.active .method-accordion-trigger::after {
  content: '−';
  transform: rotate(180deg);
}

.method-panel.active .method-accordion-trigger {
  background-color: var(--color-primary-container);
  color: var(--color-on-primary-container);
  border-bottom: 1px solid var(--color-outline-variant);
}

.method-panel-content {
  display: none; /* hidden on mobile unless active */
  padding: 24px;
  animation: slideDown 0.3s var(--ease-premium);
}

.method-panel.active .method-panel-content {
  display: block;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Specific content styling inside method panel */
.method-panel-content p {
  margin-bottom: 16px;
  line-height: 1.6;
}
.method-panel-content p:last-child {
  margin-bottom: 0;
}

.method-panel-content ul.checklist {
  margin: 16px 0;
}

/* Download & Info box styles */
.download-box {
  background-color: var(--color-surface-container-low);
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  transition: var(--transition-fast);
  margin-top: 24px;
}

.download-box:hover {
  border-color: var(--color-primary);
  background-color: var(--color-surface-container);
}

.download-icon {
  background-color: var(--color-primary-container);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-primary);
}

/* ============================================================
   Interactive Enhancements (Accordions & Cards)
   ============================================================ */

/* Accessible Accordions for FAQ */
.faq-item {
  border-bottom: 1px solid var(--color-outline-variant) !important;
  padding-bottom: 12px !important;
  margin-bottom: 16px !important;
}

.faq-trigger {
  -webkit-appearance: none;
  appearance: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  font-family: var(--font-headline);
  font-size: clamp(1.05rem, 1.15rem, 1.25rem);
  font-weight: 500;
  color: var(--color-on-surface);
  cursor: pointer;
  text-align: left;
  outline: none;
  transition: var(--transition-fast);
}

.faq-trigger:hover,
.faq-trigger:focus-visible {
  color: var(--color-primary);
  background-color: rgba(118, 194, 97, 0.04);
}

.faq-trigger:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--color-text-primary);
  transition: transform 0.4s var(--ease-premium);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-content-wrapper {
  overflow: hidden;
  transition: max-height 0.4s var(--ease-premium), opacity 0.4s var(--ease-premium);
}

.faq-content-wrapper p {
  padding: 8px 16px 16px;
  margin: 0;
}

/* Premium Card Interaction States */
.card:focus-within {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: var(--radius-lg);
}

.card a {
  outline: none;
}

.card:hover {
  transform: translateY(-5px) scale(1.005);
  box-shadow: var(--shadow-elevated);
  border-color: var(--color-primary);
  background-color: var(--color-surface-container-lowest);
}

.card a img {
  transition: transform 0.8s var(--ease-premium);
}

.card:hover a img {
  transform: scale(1.03);
}

.card h3, 
.card p, 
.card .btn-ghost {
  transition: transform 0.5s var(--ease-premium), color 0.3s ease;
}

.card:hover h3 {
  color: var(--color-primary);
}

.card:hover .btn-ghost {
  transform: translateX(6px);
  color: var(--color-inverse-primary);
}

/* Accent lines and borders inside cards */
.card .chip {
  transition: background-color 0.4s ease, color 0.4s ease;
}

.card:hover .chip {
  background-color: var(--color-primary-container);
  color: var(--color-on-primary-container);
}

/* WhatsApp Button */
.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background-color: #20ba5a;
  color: #ffffff;
  transform: translateY(-1.5px);
}

/* Floating WhatsApp Badge (Global) */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-elevated);
  z-index: 999;
  transition: transform 0.4s var(--ease-premium), background-color 0.3s ease;
  outline: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background-color: #20ba5a;
  color: #ffffff;
  transform: scale(1.08) rotate(5deg);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 4px;
}

.whatsapp-float-icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Adjusted spacing on mobile to avoid overlapping with the fixed mobile CTA bar */
/* ============================================================
   Timeline — "So läuft eine Behandlung ab"
   ============================================================ */

.timeline-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.timeline-kicker__line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-primary);
  flex-shrink: 0;
}

.timeline {
  position: relative;
}

.timeline__line {
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: var(--color-outline-variant);
  z-index: 0;
}

.timeline__line::after {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  background: var(--color-accent);
  transition: height 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline.is-animated .timeline__line::after {
  height: 100%;
}

.timeline__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.timeline__step:last-child {
  margin-bottom: 0;
}

.timeline__badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--color-on-primary);
  position: relative;
  z-index: 2;
}

.timeline__badge--primary { background-color: var(--color-primary); }
.timeline__badge--accent  { background-color: var(--color-secondary); }

.timeline__card {
  flex: 1;
}

.timeline__duration {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-on-surface-variant);
  margin-bottom: 6px;
}

.timeline__badge--green {
  background-color: #81c59f !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(129, 197, 159, 0.4) !important;
}

.timeline__badge--pink {
  background-color: #fd73a0 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(253, 115, 160, 0.4) !important;
}

.timeline__duration--green {
  color: #78a858 !important;
  font-weight: 700 !important;
}

.timeline__duration--pink {
  color: #e87898 !important;
  font-weight: 700 !important;
}


@media (max-width: 767px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 88px; /* Lifted above the fixed bottom bar */
    right: 16px;
  }
  .whatsapp-float-icon {
    width: 28px;
    height: 28px;
  }
}


/* ============================================================
   Homepage-Specific Pastel Method Cards (#angebote)
   ============================================================ */

#angebote .card-method-home {
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium), border-color 0.4s ease, background-color 0.4s ease;
  border-width: 2px !important;
}

#angebote .card-method-home:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}

/* 1. Feldenkrais */
#angebote .card-method-home--feldenkrais {
  background-color: #dfb706 !important;
  border-color: rgba(223, 183, 6, 0.3) !important;
  color: #191d17 !important;
}
#angebote .card-method-home--feldenkrais h3,
#angebote .card-method-home--feldenkrais p,
#angebote .card-method-home--feldenkrais .btn-ghost {
  color: #191d17 !important;
}
#angebote .card-method-home--feldenkrais:hover,
#angebote .card-method-home--feldenkrais:focus-within {
  border-color: #dfb706 !important;
}
#angebote .card-method-home--feldenkrais .chip {
  background-color: rgba(25, 29, 23, 0.08) !important;
  color: #191d17 !important;
  border: 1px solid rgba(25, 29, 23, 0.25) !important;
}
#angebote .card-method-home--feldenkrais .btn-ghost {
  border-bottom: 2px solid rgba(25, 29, 23, 0.3) !important;
}

/* 2. Akupressur */
#angebote .card-method-home--akupressur {
  background-color: #81c59f !important;
  border-color: rgba(129, 197, 159, 0.3) !important;
  color: #191d17 !important;
}
#angebote .card-method-home--akupressur h3,
#angebote .card-method-home--akupressur p,
#angebote .card-method-home--akupressur .btn-ghost {
  color: #191d17 !important;
}
#angebote .card-method-home--akupressur:hover,
#angebote .card-method-home--akupressur:focus-within {
  border-color: #81c59f !important;
}
#angebote .card-method-home--akupressur .chip {
  background-color: rgba(25, 29, 23, 0.08) !important;
  color: #191d17 !important;
  border: 1px solid rgba(25, 29, 23, 0.25) !important;
}
#angebote .card-method-home--akupressur .btn-ghost {
  border-bottom: 2px solid rgba(25, 29, 23, 0.3) !important;
}

/* 3. Manuelle Lymphdrainage */
#angebote .card-method-home--lymphdrainage {
  background-color: #fd73a0 !important;
  border-color: rgba(253, 115, 160, 0.3) !important;
  color: #191d17 !important;
}
#angebote .card-method-home--lymphdrainage h3,
#angebote .card-method-home--lymphdrainage p,
#angebote .card-method-home--lymphdrainage .btn-ghost {
  color: #191d17 !important;
}
#angebote .card-method-home--lymphdrainage:hover,
#angebote .card-method-home--lymphdrainage:focus-within {
  border-color: #fd73a0 !important;
}
#angebote .card-method-home--lymphdrainage .chip {
  background-color: rgba(25, 29, 23, 0.08) !important;
  color: #191d17 !important;
  border: 1px solid rgba(25, 29, 23, 0.25) !important;
}
#angebote .card-method-home--lymphdrainage .btn-ghost {
  border-bottom: 2px solid rgba(25, 29, 23, 0.3) !important;
}

/* 4. Massage */
#angebote .card-method-home--massage {
  background-color: #70b85d !important;
  border-color: rgba(112, 184, 93, 0.3) !important;
  color: #191d17 !important;
}
#angebote .card-method-home--massage h3,
#angebote .card-method-home--massage p,
#angebote .card-method-home--massage .btn-ghost {
  color: #191d17 !important;
}
#angebote .card-method-home--massage:hover,
#angebote .card-method-home--massage:focus-within {
  border-color: #70b85d !important;
}
#angebote .card-method-home--massage .chip {
  background-color: rgba(25, 29, 23, 0.08) !important;
  color: #191d17 !important;
  border: 1px solid rgba(25, 29, 23, 0.25) !important;
}
#angebote .card-method-home--massage .btn-ghost {
  border-bottom: 2px solid rgba(25, 29, 23, 0.3) !important;
}

/* 5. Body Detox */
#angebote .card-method-home--bodydetox {
  background-color: #83cbf2 !important;
  border-color: rgba(131, 203, 242, 0.3) !important;
  color: #191d17 !important;
}
#angebote .card-method-home--bodydetox h3,
#angebote .card-method-home--bodydetox p,
#angebote .card-method-home--bodydetox .btn-ghost {
  color: #191d17 !important;
}
#angebote .card-method-home--bodydetox:hover,
#angebote .card-method-home--bodydetox:focus-within {
  border-color: #83cbf2 !important;
}
#angebote .card-method-home--bodydetox .chip {
  background-color: rgba(25, 29, 23, 0.08) !important;
  color: #191d17 !important;
  border: 1px solid rgba(25, 29, 23, 0.25) !important;
}
#angebote .card-method-home--bodydetox .btn-ghost {
  border-bottom: 2px solid rgba(25, 29, 23, 0.3) !important;
}

/* 6. Coaching */
#angebote .card-method-home--coaching {
  background-color: #feb81a !important;
  border-color: rgba(254, 184, 26, 0.3) !important;
  color: #191d17 !important;
}
#angebote .card-method-home--coaching h3,
#angebote .card-method-home--coaching p,
#angebote .card-method-home--coaching .btn-ghost {
  color: #191d17 !important;
}
#angebote .card-method-home--coaching:hover,
#angebote .card-method-home--coaching:focus-within {
  border-color: #feb81a !important;
}
#angebote .card-method-home--coaching .chip {
  background-color: rgba(25, 29, 23, 0.08) !important;
  color: #191d17 !important;
  border: 1px solid rgba(25, 29, 23, 0.25) !important;
}
#angebote .card-method-home--coaching .btn-ghost {
  border-bottom: 2px solid rgba(25, 29, 23, 0.3) !important;
}

/* 7. Gutscheine */
#angebote .card-method-home--gutscheine {
  background-color: #c03180 !important;
  border-color: rgba(192, 49, 128, 0.3) !important;
  color: #ffffff !important;
}
#angebote .card-method-home--gutscheine h3,
#angebote .card-method-home--gutscheine p,
#angebote .card-method-home--gutscheine .btn-ghost {
  color: #ffffff !important;
}
#angebote .card-method-home--gutscheine:hover,
#angebote .card-method-home--gutscheine:focus-within {
  border-color: #c03180 !important;
}
#angebote .card-method-home--gutscheine .chip {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}
#angebote .card-method-home--gutscheine .btn-ghost {
  border-bottom: 2px solid rgba(255, 255, 255, 0.4) !important;
}

/* ============================================================
   Praxis Foto-Karussell (Kontaktseite)
   ============================================================ */
.praxis-carousel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-airy);
}

.carousel-track {
  display: flex;
  transition: transform 0.55s var(--ease-premium);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 20, 18, 0.55);
  color: #fff;
  font-size: 14px;
  font-family: var(--font-headline);
  padding: 10px 20px;
  margin: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: var(--color-on-surface);
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-card);
}

.carousel-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn--prev { left: 14px; }
.carousel-btn--next { right: 14px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0 4px;
  background: var(--color-surface-container-lowest);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-outline-variant);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.2s ease;
}

.carousel-dot.active {
  background: var(--color-primary);
  transform: scale(1.3);
}

/* ============================================================
   Kontaktformular
   ============================================================ */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.contact-form__field { display: flex; flex-direction: column; gap: 6px; }

.contact-form__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-on-surface-variant);
}

@media (min-width: 700px) {
  .contact-form__row { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Tarif-Blöcke (Preisseite)
   ============================================================ */
.tarif-block {
  border-top: 1px solid var(--color-outline-variant);
  padding-top: 20px;
}

.tarif-block__title {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-on-surface-variant);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.tarif-block__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-outline-variant);
}

.tarif-block__row:last-child {
  border-bottom: none;
}

.tarif-block__row .price-amount {
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   Bestell-Button & Gutschein-Komponenten
   ============================================================ */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-default);
  cursor: pointer;
  text-decoration: none;
  border: none;
  background-color: var(--color-secondary);
  color: var(--color-on-secondary);
  transition: var(--transition-medium);
  width: 100%;
}

.btn-order:hover {
  background-color: var(--color-on-secondary-container);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(194, 36, 88, 0.25);
}

.btn-order:active { transform: scale(0.97); }

.gutschein-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 10px 12px;
  border-radius: var(--radius-default);
  border: 1px solid var(--color-outline-variant);
  background-color: var(--color-warm-beige);
  color: var(--color-on-surface);
  cursor: pointer;
  display: block;
  transition: border-color 0.3s var(--ease-premium);
}

.gutschein-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(118, 194, 97, 0.2);
}

.gutschein-preview {
  background: linear-gradient(135deg, var(--color-secondary-container) 0%, var(--color-surface-variant) 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(194, 36, 88, 0.15);
}

.qr-code-img {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-outline-variant);
  display: block;
  margin: 0 auto;
}





