/* ===== ecombörse – Farben & Theme ===== */
/* Akzentfarbe: Hier eine Farbe setzen (z. B. #2563eb Blau, #059669 Grün, #7c3aed Violett, #0d9488 Teal) */
:root {
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #eff6ff;
  --color-primary-dark: #1e40af;

  --white: #ffffff;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-500: var(--color-primary);
  --blue-600: var(--color-primary-hover);
  --blue-700: var(--color-primary-dark);
  --blue-800: #1e3a8a;
  --blue-900: #1e3a5f;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.05), 0 10px 28px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 25px rgba(15, 23, 42, 0.06), 0 20px 50px rgba(15, 23, 42, 0.1);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  /* Breakpoints (for reference in media queries) */
  --bp-mobile: 767px;
  --bp-tablet: 1200px;
  --content-max-mobile: 600px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

*:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ----- SVG Icons (icons.svg) ----- */
.icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  vertical-align: -0.25em;
  color: currentColor;
}

.icon use {
  fill: none;
  stroke: currentColor;
}

.icon.icon-star use {
  fill: currentColor;
  stroke: none;
}

.testimonial-stars {
  display: inline-flex;
  gap: 0.15rem;
  color: #eab308;
  margin-bottom: 0.5rem;
}

.testimonial-stars .icon {
  width: 1rem;
  height: 1rem;
}

.icon-sm { width: 1em; height: 1em; }
.icon-lg { width: 1.5em; height: 1.5em; }
.icon-xl { width: 2em; height: 2em; }
.icon-2xl { width: 2.5em; height: 2.5em; }

.cart-icon .icon { width: 22px; height: 22px; }
.benefit-icon .icon,
.category-icon .icon,
.feature-check .icon { width: 1.25em; height: 1.25em; display: inline-block; color: var(--blue-600); }
.product-visual-icon .icon { width: 48px; height: 48px; color: var(--blue-500); }
.thank-you-icon .icon { width: 48px; height: 48px; color: var(--blue-600); }
.payment-icon .icon { width: 24px; height: 24px; }
.section-trust .icon { width: 1em; height: 1em; margin-right: 0.25em; vertical-align: -0.15em; }
.footer-trust .icon { width: 0.9em; height: 0.9em; margin-right: 0.2em; vertical-align: -0.1em; }

/* ----- Header / Navbar (Desktop) ----- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.2s ease, border-color 0.2s ease;
}

/* Sicherstellen: Nav-Links im Header nie wie Standard-Links */
.header .nav a,
.header .nav-desktop > a {
  color: var(--gray-600) !important;
  text-decoration: none !important;
}
.header .nav a:hover,
.header .nav-desktop > a:hover {
  color: var(--gray-900) !important;
  text-decoration: none !important;
}
.header .nav a.active,
.header .nav-desktop > a.active {
  color: #2563eb !important;
  text-decoration: none !important;
}
.header .nav a.btn,
.header .nav-desktop > a.btn {
  color: var(--gray-700) !important;
  text-decoration: none !important;
}
.header .nav a.btn:hover,
.header .nav-desktop > a.btn:hover {
  color: var(--white) !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}

.header-inner .logo {
  min-width: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 1.3125rem;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  text-decoration: none;
  transition: color 0.2s ease;
}

.logo:hover {
  color: var(--blue-600);
}

.logo-icon {
  display: inline-block;
  margin-right: 0.25rem;
  font-size: 1.2rem;
  line-height: 1;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.logo-icon:empty {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  border-radius: 50%;
}

.logo:hover .logo-icon {
  transform: scale(1.08);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-backdrop,
.nav-panel {
  display: none;
}

/* Nav-Links: gilt für index (nav-desktop) und alle anderen Seiten (nav > a) */
.nav-desktop > a,
.nav > a {
  position: relative;
  padding: 0.5rem 0.85rem;
  color: var(--gray-600);
  text-decoration: none !important;
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  border: none;
  background: transparent;
}

.nav-desktop > a:hover,
.nav > a:hover {
  color: var(--gray-900);
  background: var(--gray-50);
}

.nav-desktop > a.active,
.nav > a.active {
  color: #2563eb;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.08);
}

.nav-desktop > a.active::after,
.nav > a.active::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.35rem;
  height: 2px;
  background: #2563eb;
  border-radius: 1px;
}

.nav-desktop > a.btn.active::after,
.nav > a.btn.active::after {
  display: none;
}

.nav-desktop > a.btn,
.nav > a.btn {
  margin-left: 0.75rem;
  padding: 0.5rem 1.125rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  background: var(--white);
}

.nav-desktop > a.btn:hover,
.nav > a.btn:hover {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 0.5rem;
  color: var(--gray-600);
  text-decoration: none !important;
  border-radius: 8px;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-desktop .cart-link,
.nav .cart-link {
  margin-left: 0.5rem;
}

.cart-link:hover {
  background: var(--gray-50);
  color: var(--blue-600);
}

.cart-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  font-size: 0.75rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 20px;
  text-align: center;
  color: var(--white);
  background: var(--blue-600);
  border-radius: var(--radius-full);
  border: 2px solid var(--white);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.35);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: var(--gray-100);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* Desktop & Tablet: Hamburger ausblenden, Desktop-Nav anzeigen (ab 768px) */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  border-color: transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.35);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: var(--blue-600);
  color: var(--blue-600);
}

.btn-outline:hover {
  background: var(--blue-50);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-600);
  border: 2px solid var(--blue-200);
}

.btn-secondary:hover {
  background: var(--blue-50);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.link-arrow {
  color: var(--blue-600);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}

.link-arrow:hover {
  color: var(--blue-700);
  text-decoration: underline;
}

/* ----- Page Hero (Unterseiten) ----- */
.page-hero {
  padding: 4rem 0 4.5rem;
  background: linear-gradient(165deg, var(--blue-50) 0%, var(--white) 55%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(37, 99, 235, 0.06) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.375rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--gray-900);
  line-height: 1.25;
}

.page-lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--gray-600);
  max-width: 620px;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  background: linear-gradient(165deg, var(--blue-50) 0%, var(--white) 55%);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gray-900);
  letter-spacing: -0.03em;
}

.hero .highlight {
  color: var(--blue-600);
}

.hero-lead {
  margin: 0 0 1.5rem;
  font-size: 1.15rem;
  color: var(--gray-700);
  max-width: 560px;
  line-height: 1.6;
}

/* Septenz-Stil Hero */
.hero-septenz .hero-visual { display: none; }
.hero-septenz {
  padding: 4.5rem 0 5.5rem;
  background: linear-gradient(165deg, var(--blue-50) 0%, var(--white) 55%);
}
.hero-septenz-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.hero-logo-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 0 1.5rem;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}
.hero-logo-icon {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.05em;
}
.hero-headline {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.hero-headline-1 {
  display: block;
  color: var(--gray-900);
}
.hero-headline-2 {
  display: block;
  color: var(--blue-600);
}
.hero-lead-center {
  margin: 0 auto 1.5rem;
  text-align: center;
  max-width: 520px;
}
.hero-checks-septenz {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  font-weight: 500;
  color: var(--gray-700);
}
.hero-checks-septenz li { margin: 0; display: flex; align-items: center; gap: 0.35rem; }
.hero-actions-septenz {
  justify-content: center;
}
.btn-pill {
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.btn-pill:hover {
  box-shadow: var(--shadow-lg);
}
.hero-note-septenz {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
  text-align: center;
  font-weight: 500;
}
.hero-badge {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--gray-500);
}
.hero-checks {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-weight: 500;
  color: var(--gray-700);
}
.hero-checks li { margin: 0; display: flex; align-items: center; gap: 0.35rem; }
.hero-note {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-trust-item {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 500;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle at 1px 1px, var(--blue-200) 1px, transparent 0);
  background-size: 36px 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 200px;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--blue-100);
}

.hero-card-1 { width: 140px; height: 90px; top: 0; right: 0; }
.hero-card-2 { width: 120px; height: 75px; bottom: 30px; right: 80px; }
.hero-card-3 { width: 100px; height: 65px; bottom: 0; right: 0; }

@media (max-width: 900px) {
  .hero-visual { display: none; }
}

/* ----- Stats Bar ----- */
.stats-bar {
  padding: 2.75rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 1.5rem;
  border-right: 1px solid var(--gray-200);
}

.stat:last-child { border-right: none; }

@media (max-width: 600px) {
  .stat { border-right: none; border-bottom: 1px solid var(--gray-200); padding: 0 0 1.5rem 0; margin: 0; }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--blue-600);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ----- Benefits Grid ----- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.benefit-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.benefit-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.benefit-icon {
  display: block;
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.benefit-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
}

.benefit-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ----- Testimonials ----- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial {
  margin: 0;
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.testimonial:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: block;
  font-size: 1rem;
  color: #f59e0b;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.6;
  font-style: normal;
}

.testimonial-author {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-500);
  font-style: normal;
}

/* ----- FAQ ----- */
.faq-list {
  max-width: 640px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 1.75rem 2rem;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.faq-q {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-900);
}

.faq-a {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ----- Inhaltsseiten (Impressum, Datenschutz, AGB, Über uns) ----- */
.page-content {
  max-width: 680px;
  margin: 0 auto;
}

.page-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.65;
}

.page-content a {
  color: var(--blue-600);
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}


/* ----- Sections ----- */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image: radial-gradient(circle at 2px 2px, var(--blue-100) 1px, transparent 0);
  background-size: 20px 20px;
}

.section-alt > .container {
  position: relative;
  z-index: 1;
}

.section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.625rem, 4vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  text-align: center;
  line-height: 1.3;
}

.section-lead {
  margin: 0 auto 2.5rem;
  max-width: 580px;
  text-align: center;
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.65;
}

.section-cta {
  text-align: center;
  margin: 2rem 0 0;
}

.section-cta-text {
  margin-top: 2rem;
}

.section-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ----- Kategorie-Auswahl (Startseite) ----- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition), transform var(--transition);
}

.category-card:hover {
  border-color: var(--blue-300);
  background: var(--blue-50);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: block;
  text-align: center;
}

.category-icon svg {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto;
}

.category-name {
  text-align: center;
  font-size: 0.95rem;
}

.category-grid-shops .category-card {
  min-height: 140px;
}

.category-card-product .category-arrow {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.25rem;
  color: var(--blue-600);
  font-weight: 600;
}

/* ----- Extras-Grid ----- */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.extra-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.extra-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.extra-desc {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.extra-icon {
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
  font-size: 2.5rem;
}

.extra-icon svg {
  display: block;
  width: 40px;
  height: 40px;
}

.extra-title {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.35;
}

.extra-price {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue-700);
}

.extra-note {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.extra-card .btn-add-extra {
  margin-top: 0;
}

.extras-after-grid {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.extras-actions-lead {
  margin: 0 0 1.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-700);
}

.extras-actions-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.extras-actions-buttons .btn {
  min-width: 180px;
}

.nav > a.nav-active {
  color: var(--blue-600);
  font-weight: 600;
}

/* ----- Kategorie-Filter (Shops-Seite) ----- */
.filter-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.category-filter {
  padding: 0.6rem 1.2rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.category-filter:hover {
  border-color: var(--blue-300);
  color: var(--blue-700);
}

.category-filter.active {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--white);
}

/* ----- Check-Liste (Septenz-Stil) ----- */
.check-list {
  max-width: 480px;
  margin: 0 auto 1.5rem;
  padding: 0;
  list-style: none;
  text-align: left;
}

.check-list li {
  margin-bottom: 0.75rem;
  padding-left: 0;
  color: var(--gray-700);
  font-size: 1.05rem;
}

.check-list li::before {
  content: none;
}

/* ----- Steps compact ----- */
.steps-compact .step p {
  font-size: 0.9rem;
}

/* ----- Cards ----- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--blue-800);
}

.card p {
  margin: 0 0 1rem;
  color: var(--gray-500);
  font-size: 0.95rem;
}

.card-link {
  font-weight: 600;
  color: var(--blue-600);
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* ----- Vorteile ----- */
.vorteile-list {
  max-width: 600px;
  margin: 0 auto;
  padding-left: 1.25rem;
  list-style: none;
}

.vorteile-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.vorteile-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: var(--blue-500);
  border-radius: 50%;
}

.vorteile-list strong {
  color: var(--gray-900);
}

/* ----- Shop-Liste (shops.html) ----- */
.shop-list {
  display: grid;
  gap: 1.5rem;
}

.shop-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.shop-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.shop-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.shop-card-title {
  margin: 0;
  font-size: 1.25rem;
  color: var(--blue-800);
}

.shop-card-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-700);
  background: var(--blue-50);
  border-radius: 999px;
}

.shop-card-desc {
  margin: 0 0 1rem;
  color: var(--gray-500);
  font-size: 0.95rem;
}

.shop-card-meta {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.shop-card-meta li {
  margin-bottom: 0.25rem;
}

/* ----- Steps ----- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  text-align: center;
}

.step {
  padding: 1.5rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 50%;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--gray-900);
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-500);
}

/* ----- Produktdetailseite (fertiger-shop.html) – Mobile First ----- */
.product-page {
  padding: 2rem 0 3rem;
  background: var(--white);
  overflow-x: hidden;
}

/* Mobile: 1 Spalte, Text zuerst, dann Slider – Reihenfolge durch HTML */
.product-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.product-details {
  order: 1;
}

.product-visual {
  order: 2;
  position: static;
  top: auto;
  margin-top: 2rem;
  width: 100%;
}

.product-visual-box {
  background: var(--white);
  color: var(--gray-900);
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.product-visual-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Slider-Höhe durch aktives Bild, kein fester Wert */
.product-visual-image,
.product-visual-slide {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 10px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.25);
  box-sizing: border-box;
}

.product-visual-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

.product-visual-slide.is-active {
  position: relative;
  opacity: 1;
}

.product-visual-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0;
}

.product-visual-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(148, 163, 184, 0.5);
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease, opacity 0.2s ease;
}

.product-visual-dot.is-active {
  width: 18px;
  background: rgba(30, 64, 175, 0.9);
}

/* Pfeile auf Mobile dezenter / kleiner */
.product-visual-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(15, 23, 42, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.5);
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.product-visual-arrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.product-visual-arrow-prev {
  left: 0.5rem;
}

.product-visual-arrow-prev::before {
  transform: rotate(-135deg);
}

.product-visual-arrow-next {
  right: 0.5rem;
}

.product-visual-arrow-next::before {
  transform: rotate(45deg);
}

.product-visual-arrow:hover {
  background: rgba(15, 23, 42, 0.45);
  border-color: #fff;
}

/* Tablet: weiter 1 Spalte, Abstände anpassen */
@media (min-width: 480px) {
  .product-page {
    padding: 2.5rem 0 3.5rem;
  }
  .product-visual-box {
    padding: 1.75rem 1.5rem;
  }
  .product-visual-arrow {
    width: 32px;
    height: 32px;
  }
  .product-visual-arrow-prev { left: 0.75rem; }
  .product-visual-arrow-next { right: 0.75rem; }
}

/* Desktop: 2 Spalten, Slider links, Text rechts (per order) */
@media (min-width: 769px) {
  .product-page {
    padding: 3rem 0 4rem;
  }

  .product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .product-visual {
    order: 1;
    position: sticky;
    top: 100px;
    margin-top: 0;
  }

  .product-details {
    order: 2;
  }

  .product-visual-box {
    padding: 2.25rem 2rem;
  }

  .product-visual-arrow-prev { left: 1rem; }
  .product-visual-arrow-next { right: 1rem; }
}

.product-visual-icon {
  font-size: 3rem;
  margin: 0 0 1rem;
  display: block;
}

.product-visual-title {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.product-visual-sub {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.product-details h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.25;
}

.product-badge {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-600);
}

.product-lead {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.product-checks {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.product-checks li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.product-options {
  margin-bottom: 1.5rem;
}

.product-options .form-row {
  margin-bottom: 0;
}

.product-price {
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.price-label {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.price-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.product-cta-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.product-disclaimer {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
}

.product-features {
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: left;
}

.product-features li {
  margin-bottom: 1rem;
  padding-left: 0;
  color: var(--gray-700);
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.product-features li::before {
  content: none;
}

.feature-check {
  color: var(--blue-600);
  flex-shrink: 0;
}

/* ----- Warenkorb ----- */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cart-item-info {
  flex: 1;
  min-width: 200px;
}

.cart-item-name {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
}

.cart-item-nische {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.cart-item-price {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-600);
}

.cart-item-remove {
  padding: 0.5rem 1rem;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--gray-600);
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.cart-item-remove:hover {
  border-color: var(--blue-300);
  color: var(--blue-600);
}

.cart-empty {
  text-align: center;
  padding: 3rem 2rem;
}

.cart-empty p {
  margin: 0 0 1rem;
  color: var(--gray-500);
}

.cart-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cart-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.cart-total {
  font-size: 1.25rem;
}

.cart-total strong {
  margin-left: 0.5rem;
  color: var(--blue-600);
}

/* ----- Warenkorb Extras-Modal (Popup-Fenster) ----- */
.cart-extras-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.cart-extras-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-extras-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.cart-extras-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
  animation: cart-popup-in 0.25s ease;
  padding: 1.25rem 1.25rem 0;
}

@keyframes cart-popup-in {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.cart-extras-modal-dialog .cart-extras-modal-body {
  overflow-y: auto;
  padding: 0 0 1.25rem;
  flex: 1;
  min-height: 0;
}

.cart-extras-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--gray-500);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  z-index: 1;
}

.cart-extras-modal-close:hover {
  color: var(--gray-800);
  background: var(--gray-200);
}

.cart-extras-modal-title {
  margin: 0 2.25rem 0.25rem 0;
  padding-top: 1.25rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-900);
}

.cart-extras-modal-lead {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.cart-extras-modal-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.cart-extras-modal-item {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--gray-100);
}

.cart-extras-modal-item:last-child {
  border-bottom: none;
}

.cart-extras-modal-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.cart-extras-modal-label input {
  flex-shrink: 0;
}

.cart-extras-modal-item-text {
  flex: 1;
  line-height: 1.35;
}

.cart-extras-modal-item-price {
  font-weight: 600;
  color: var(--blue-600);
  font-size: 0.9rem;
  white-space: nowrap;
}

.cart-extras-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
  border-radius: 0 0 8px 8px;
}

.cart-extras-modal-no.btn-link {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--gray-600);
  text-decoration: underline;
  cursor: pointer;
}

.cart-extras-modal-no.btn-link:hover {
  color: var(--blue-600);
}

/* ----- Kasse / Checkout ----- */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

.checkout-form h2,
.checkout-payment-title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
}

.checkout-form .form-row {
  margin-bottom: 1rem;
}

.form-row-inline {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.payment-method:hover,
.payment-method:has(input:checked) {
  border-color: var(--blue-300);
  background: var(--blue-50);
}

.payment-method input {
  width: auto;
}

.payment-method-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-icon {
  font-weight: 600;
  color: var(--blue-600);
}

.checkout-legal {
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.checkout-legal-title {
  margin: 0 0 1rem !important;
  font-size: 1.05rem !important;
  font-weight: 600;
  color: var(--gray-900);
}

.checkout-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.45;
}

.checkout-checkbox input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.checkout-checkbox-text a {
  color: var(--blue-600);
  text-decoration: underline;
}

.checkout-checkbox-text a:hover {
  color: var(--blue-700);
}

.checkout-legal-error {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  background: #fef2f2;
  color: #b91c1c;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
}

.checkout-widerruf-hinweis {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.checkout-widerruf-hinweis a {
  color: var(--blue-600);
  text-decoration: underline;
}

.legal-content .legal-box {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--gray-700);
}

.legal-content .legal-box p { margin: 0.5rem 0; }
.legal-content .legal-box p:first-child { margin-top: 0; }
.legal-content .legal-box small { color: var(--gray-500); }

.checkout-summary-box {
  position: sticky;
  top: 100px;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.checkout-summary-box h2 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
}

.checkout-item-line {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.checkout-summary-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
  font-size: 1.1rem;
}

.checkout-summary-total strong {
  float: right;
  color: var(--blue-600);
}

.checkout-secure {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.payment-provider-container {
  margin: 1rem 0 1.5rem;
  min-height: 2.5rem;
}

.stripe-card-element {
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 0.5rem;
}

.stripe-card-element:focus-within {
  border-color: var(--blue-500);
  outline: none;
}

.apple-pay-wrap {
  margin-bottom: 0.75rem;
  min-height: 44px;
}

.apple-pay-wrap:empty {
  display: none;
}

.payment-divider {
  margin: 0.75rem 0 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.payment-divider[style*="display: none"] {
  margin: 0;
}

.stripe-errors,
.payment-placeholder {
  font-size: 0.9rem;
  color: #dc2626;
  margin-top: 0.5rem;
}

.payment-placeholder {
  color: var(--gray-500);
}

.transfer-details-box {
  margin: 1rem 0 1.5rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.transfer-intro {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.transfer-title {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
}

.transfer-row {
  margin: 0.35rem 0;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.transfer-row code {
  font-size: 0.9em;
  padding: 0.15rem 0.4rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.transfer-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.thank-you-transfer {
  text-align: left;
  max-width: 420px;
  margin: 1rem auto 0;
}

/* ----- Bestellung abgeschlossen ----- */
.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-box {
  max-width: 480px;
  text-align: center;
  padding: 3rem 2rem;
}

.thank-you-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1.25rem;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.35);
}

.thank-you-box h1 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  color: var(--gray-900);
}

.thank-you-lead {
  margin: 0 0 0.5rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.thank-you-email {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ----- Contact ----- */
.contact-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--blue-50) 100%);
}

.contact-form {
  max-width: 480px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--gray-400);
}

/* Custom select with icons (Nische) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  min-height: 48px;
  font-family: var(--font);
  font-size: 1rem;
  text-align: left;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-700);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.custom-select-trigger:hover {
  border-color: var(--gray-400);
}

.custom-select-trigger[aria-expanded="true"] {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.custom-select-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 1.25rem;
}

.custom-select-icon svg {
  width: 100%;
  height: 100%;
}

.custom-select-label {
  flex: 1;
}

.custom-select-arrow {
  font-size: 0.65rem;
  color: var(--gray-400);
  transition: transform 0.2s;
}

.custom-select-trigger[aria-expanded="true"] .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-list {
  position: absolute;
  z-index: 50;
  top: 100%;
  left: 0;
  right: 0;
  margin: 4px 0 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-height: 280px;
  overflow-y: auto;
}

.custom-select-list[hidden] {
  display: none;
}

.custom-select-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  color: var(--gray-700);
  cursor: pointer;
  transition: background 0.15s;
}

.custom-select-option:hover {
  background: var(--blue-50);
}

.custom-select-option[aria-selected="true"],
.custom-select-option--selected {
  background: var(--blue-50);
  color: var(--blue-700);
  font-weight: 500;
}

.custom-select-option .option-icon {
  flex-shrink: 0;
  min-width: 24px;
  font-size: 1.2rem;
  line-height: 1;
}

.custom-select-option .option-icon svg {
  width: 100%;
  height: 100%;
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  margin-top: 0.5rem;
}

/* ----- Pre-Footer CTA ----- */
.pre-footer-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-800) 100%);
  text-align: center;
}

.pre-footer-cta h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
}

.pre-footer-cta p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.pre-footer-cta .btn {
  background: var(--white);
  color: var(--blue-700);
}

.pre-footer-cta .btn:hover {
  background: var(--blue-50);
  color: var(--blue-800);
}

.pre-footer-cta .btn-outline.btn-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.pre-footer-cta .btn-outline.btn-light:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--white);
}

/* ----- Value Block (Shops/Extras) ----- */
.value-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.value-item:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
}

.value-item span:first-child {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-900);
  margin-bottom: 0.15rem;
}

.value-item small {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ----- Footer (kompakt) ----- */
.footer {
  margin-top: 3rem;
  padding: 0;
  background: var(--blue-900);
  color: var(--blue-100);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.5rem 1.25rem;
  position: relative;
}

.footer-inner:not(:has(.footer-grid)) {
  text-align: center;
  padding: 1.25rem 1.5rem;
}

.footer-inner:not(:has(.footer-grid)) .footer-brand {
  justify-content: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 2rem 3rem;
  align-items: start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
  }
}

.footer-col:first-child {
  min-width: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.35rem;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.footer-brand .logo-icon {
  display: inline-block;
  font-size: 1rem;
  vertical-align: middle;
}

.footer-brand .logo-icon:empty {
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #60a5fa, var(--blue-300));
  border-radius: 50%;
}

.footer-contact {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer .footer-copy a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer .footer-copy a:hover {
  color: var(--white);
}

.footer-tagline {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  max-width: 220px;
}

@media (max-width: 600px) {
  .footer-tagline { max-width: none; }
}

.footer-heading {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.footer-trust {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-by {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bestepe-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition);
  margin-top: 0.4em;
}

.footer-bestepe-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bestepe-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  flex-shrink: 0;
  display: inline-block;
}

/* ----- Mobile <768px: Navbar in styles-mobile-nav.css, Rest unten ----- */
@media (max-width: 767px) {

  .container {
    max-width: 600px;
    padding: 0 1rem;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-alt {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-title {
    font-size: 1.25rem;
    line-height: 1.35;
  }

  .section-lead {
    font-size: 0.9375rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .hero-new {
    padding: 2.5rem 0 3rem;
  }

  .hero-new-inner {
    flex-direction: column;
  }

  .hero-new-content {
    order: 1;
    text-align: center;
  }

  .hero-new-headline {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .hero-new-lead {
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .hero-new-actions {
    flex-direction: column;
  }

  .hero-new-actions .btn {
    width: 100%;
  }

  .hero-new-visual {
    order: 2;
    margin-top: 1.5rem;
  }

  .trust-bar-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .example-shops-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .steps-new {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-pro .footer-pro-inner {
    padding: 1.5rem 1rem 1rem;
  }

  .footer-pro-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    margin-bottom: 1rem;
  }

  .footer-pro-brand {
    display: none;
  }

  .footer-pro-col {
    padding: 0.75rem 0;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-pro-unternehmen {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-pro-rechtliches {
    padding-left: 0.75rem;
  }

  .footer-pro-kontakt {
    grid-column: 1 / -1;
  }

  .footer-pro-col h3 {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
  }

  .footer-pro-col a {
    font-size: 0.9rem;
    padding: 0.35rem 0;
    min-height: 0;
  }

  .footer-pro-bottom {
    padding-top: 1rem;
    gap: 0.5rem;
  }

  .footer-pro-copy,
  .footer-pro-credit {
    font-size: 0.8rem;
  }

  .cta-footer-actions {
    flex-direction: column;
  }

  .cta-footer-actions .btn {
    width: 100%;
  }

  .btn:hover,
  .btn-primary:hover {
    transform: none;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .hero-septenz {
    padding: 3rem 0 4.5rem;
  }

  .hero-logo-large {
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
  }

  .hero-logo-icon {
    font-size: 1.6rem;
  }

  .hero-checks-septenz {
    gap: 0.75rem 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions-septenz .btn-pill {
    width: 100%;
    max-width: 320px;
  }

  .section {
    padding: 3rem 0;
  }

  .page-hero {
    padding: 3rem 0 3.5rem;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  .page-lead {
    font-size: 1rem;
  }

  .pre-footer-cta {
    padding: 3rem 1rem;
  }

  .pre-footer-cta h2 {
    font-size: 1.375rem;
  }

  .pre-footer-cta p {
    font-size: 0.95rem;
  }

  .pre-footer-cta .btn {
    display: block;
    width: 100%;
  }

  .pre-footer-cta .btn + .btn {
    margin-top: 0.75rem;
    margin-left: 0;
  }

  .value-block {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.375rem;
  }

  .section-lead {
    font-size: 0.95rem;
  }

  .footer-bottom {
    padding: 0 0.5rem;
  }

  .footer-trust {
    font-size: 0.65rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-copy {
    font-size: 0.75rem;
  }

  .footer-by {
    font-size: 0.7rem;
  }

  .footer-bestepe-link {
    margin-top: 0.25em;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.15rem;
  }

  .hero-headline {
    font-size: 1.5rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-note-septenz {
    font-size: 0.85rem;
  }

  .stats-bar {
    padding: 2rem 0;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .category-card {
    padding: 1.25rem 1rem;
  }

  .category-icon {
    font-size: 2rem;
  }

  .benefit-card {
    padding: 1.5rem 1.25rem;
  }

  .testimonial {
    padding: 1.5rem 1.25rem;
  }

  .product-visual-box {
    padding: 2rem 1.5rem;
  }

  .checkout-form,
  .checkout-summary-box {
    padding: 1.5rem 1rem;
  }

  .checkout-legal {
    padding: 1rem 0.9rem;
    margin: 1.25rem 0;
  }

  .checkout-checkbox {
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
  }

  .cart-extras-modal-dialog {
    max-width: 100%;
    border-radius: 8px;
  }

  .cart-extras-modal-title {
    font-size: 1.05rem;
  }

  .cart-extras-modal-lead,
  .cart-extras-modal-item-text,
  .cart-extras-modal-item-price {
    font-size: 0.85rem;
  }

  .cart-extras-modal-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .cart-extras-modal-no.btn-link {
    text-align: center;
  }
}

/* Plattform-Vergleich – Professionell */
.platform-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.platform-comparison-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.platform-comparison-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
  .platform-comparison-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .platform-comparison-card {
    padding: 1.25rem 1rem;
  }
}

@media (max-width: 480px) {
  .platform-comparison-card h3 {
    font-size: 1rem;
  }

  .platform-comparison-card p {
    font-size: 0.875rem;
  }
}

/* ===== Neue Landing Page – Clean, professionell, vertrauenswürdig ===== */
.page-landing {
  background: var(--white);
}

/* Hero neu – Mobile First */
.hero-new {
  padding: 3rem 0 4rem;
  background: var(--white);
  overflow-x: hidden;
}

.hero-new-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-new-content {
  order: 1;
  text-align: center;
}

.hero-new-lead {
  margin-left: auto;
  margin-right: auto;
}

.hero-new-actions {
  justify-content: center;
}

.hero-new-visual {
  order: 2;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-new-headline {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.hero-new-badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-700);
  background: var(--blue-50);
  border-radius: var(--radius);
}

.hero-new-benefits {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.hero-new-benefits li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--gray-700);
}

.hero-new-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-600);
  font-weight: 700;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.hero-trust-badge {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
}

@media (min-width: 901px) {
  .hero-new-benefits {
    margin-left: 0;
    margin-right: 0;
  }
  .hero-trust-badges {
    justify-content: flex-start;
  }
}

.hero-new-lead {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--gray-600);
  max-width: 520px;
}

.hero-new-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-new-mockup {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.hero-new-mockup img {
  display: block;
  width: 100%;
  height: auto;
}

/* Hero: Tablet – weiter untereinander, mehr Abstand */
@media (min-width: 600px) {
  .hero-new {
    padding: 3.5rem 0 4.5rem;
  }
  .hero-new-lead {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Hero: Desktop – 2 Spalten, Text links, Bild rechts */
@media (min-width: 901px) {
  .hero-new {
    padding: 4rem 0 5rem;
  }

  .hero-new-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .hero-new-content {
    order: 1;
    text-align: left;
  }

  .hero-new-lead {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-new-actions {
    justify-content: flex-start;
  }

  .hero-new-visual {
    order: 2;
    margin-top: 0;
  }
}

/* Trust-Bar */
.trust-bar {
  padding: 1.75rem 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.trust-bar-disclaimer {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  margin: 0 0 1rem;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
}

.trust-bar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Beispiel-Shops Grid */
.example-shops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.example-shop-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.example-shop-card img {
  display: block;
  width: 100%;
  height: auto;
}

.example-shop-caption {
  padding: 0.75rem 1rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
}

@media (min-width: 600px) {
  .example-shops-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 901px) {
  .example-shops-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.testimonial-card {
  margin: 0;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: #eab308;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  font-style: italic;
}

.testimonial-author {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}

@media (min-width: 601px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Steps neu */
.steps-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step-new {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.step-new:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
}

.step-new-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  background: var(--blue-600);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
}

.step-new-title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-900);
}

.step-new-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--gray-600);
}

/* Leistungen */
.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.leistungen-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.leistungen-card--included {
  border-left: 4px solid var(--blue-600);
}

.leistungen-card--excluded {
  border-left: 4px solid var(--gray-400);
}

.leistungen-card-title {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-900);
}

.leistungen-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.leistungen-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gray-700);
}

.leistungen-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--blue-600);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
}

.pricing-card--featured {
  border-color: var(--blue-600);
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.85rem;
  background: var(--blue-600);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card-title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-900);
}

.pricing-card-price {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-600);
  line-height: 1.2;
}

.pricing-card-meta {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.pricing-card-features {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.pricing-card-features li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.pricing-card-features li:last-child {
  border-bottom: none;
}

/* Comparison Warum wir */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.comparison-card--us {
  border-color: var(--blue-200);
  background: var(--blue-50);
}

.comparison-card-title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
}

.comparison-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gray-700);
}

.comparison-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gray-500);
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 680px;
  margin: 0 auto;
}

.faq-accordion-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--gray-900);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-accordion-trigger:hover {
  color: var(--blue-600);
}

.faq-accordion-trigger::after {
  content: "+";
  flex-shrink: 0;
  margin-left: 1rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gray-500);
}

.faq-accordion-trigger[aria-expanded="true"]::after {
  content: "−";
}

.faq-accordion-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: opacity 0.2s ease, max-height 0.3s ease;
}

.faq-accordion-panel.is-open {
  opacity: 1;
  max-height: 500px;
  padding-bottom: 0.5rem;
}

.faq-accordion-panel p {
  margin: 0 0 1.25rem;
  padding-right: 2rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gray-600);
}

/* Kontakt-Bereich */
.section-contact {
  background: var(--gray-50);
}

.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.contact-lead {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-700);
}

.contact-meta {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.contact-meta a {
  color: var(--blue-600);
  text-decoration: underline;
}

.contact-form-wrap {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.contact-form .form-row {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  color: var(--gray-700);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button[type="submit"] {
  margin-top: 0.5rem;
}

/* Footer neu */
.footer-new .footer-tagline {
  color: var(--gray-600);
}

/* Mobile: Neue Landing */
@media (max-width: 900px) {
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-new {
    grid-template-columns: 1fr;
  }

  .leistungen-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .contact-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-new {
    padding: 3rem 0 4rem;
  }

  .hero-new-headline {
    font-size: 1.5rem;
  }

  .hero-new-lead {
    font-size: 1rem;
  }

  .hero-new-actions {
    flex-direction: column;
  }

  .hero-new-actions .btn {
    width: 100%;
  }

  .trust-bar-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .step-new {
    padding: 1.5rem 1.25rem;
  }

  .leistungen-card {
    padding: 1.5rem 1.25rem;
  }

  .pricing-card {
    padding: 1.75rem 1.25rem;
  }

  .pricing-card-price {
    font-size: 1.75rem;
  }

  .contact-form-wrap {
    padding: 1.5rem 1.25rem;
  }

  .faq-accordion-panel p {
    padding-right: 0;
  }
}

/* ========== CTA vor Footer (SaaS-Style) ========== */
.cta-footer {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 50%, #e2e8f0 100%);
  text-align: center;
  animation: ctaFadeIn 0.6s ease-out;
}

@keyframes ctaFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.cta-footer-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-footer h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  line-height: 1.25;
}

.cta-footer .cta-footer-lead {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--gray-600);
}

.cta-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.cta-footer .btn {
  min-width: 160px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-footer .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.cta-footer .btn-outline {
  border-width: 1.5px;
  color: var(--gray-700);
  background: var(--white);
}

.cta-footer .btn-outline:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
  color: var(--gray-900);
}

@media (max-width: 480px) {
  .cta-footer {
    padding: 3.5rem 1rem;
  }
  .cta-footer-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-footer .btn {
    width: 100%;
    min-width: 0;
  }
}

/* ========== Footer Pro – Mobile First ========== */
.footer-pro {
  background: var(--blue-900);
  color: #e5e5e5;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  margin-top: 0;
  animation: footerFadeIn 0.7s ease-out 0.1s both;
  overflow-x: hidden;
}

@keyframes footerFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.footer-pro .footer-pro-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem 1.5rem;
  box-sizing: border-box;
}

/* ----- Mobile: alles untereinander, großzügige Abstände ----- */
.footer-pro-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}

.footer-pro-brand {
  max-width: none;
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-pro-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
  padding: 0.25rem 0;
  min-height: 44px;
  box-sizing: border-box;
}

.footer-pro-logo:hover {
  opacity: 0.9;
  color: #fff;
}

.footer-pro-logo .logo-icon {
  font-size: 1.35rem;
}

.footer-pro-tagline {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.footer-pro-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-pro-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.footer-pro-social a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.footer-pro-social svg {
  width: 22px;
  height: 22px;
}

/* Link-Blöcke auf Mobile: einzeln, klar getrennt */
.footer-pro-col {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-pro-col:last-of-type {
  border-bottom: none;
}

.footer-pro-col h3 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
}

.footer-pro-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-pro-col li {
  margin-bottom: 0.5rem;
}

.footer-pro-col li:last-child {
  margin-bottom: 0;
}

.footer-pro-col a {
  display: inline-block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.5rem 0.25rem;
  min-height: 44px;
  line-height: 1.4;
  box-sizing: border-box;
}

.footer-pro-col a:hover {
  color: #fff;
}

.footer-pro-col a::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.35rem;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.2s ease;
}

.footer-pro-col a:hover::after {
  width: 80%;
}

/* Copyright-Bereich Mobile */
.footer-pro-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-pro-copy {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.footer-pro-credit {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.footer-pro-credit a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-pro-credit a:hover {
  color: #fff;
}

.footer-pro-credit .icon {
  width: 0.9em;
  height: 0.9em;
  vertical-align: -0.15em;
}

.footer-pro-credit .footer-bestepe-icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.2em;
  display: inline-block;
}

.footer-pro-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-pro-legal a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0.5rem 0.75rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-pro-legal a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ----- Tablet: 2 Spalten (mit Brand) ----- */
@media (min-width: 600px) {
  .footer-pro .footer-pro-inner {
    padding: 3rem 1.5rem 2rem;
  }

  .footer-pro-compact .footer-pro-inner {
    padding: 2rem 1.25rem 1.5rem;
  }

  .footer-pro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2rem;
    margin-bottom: 2.5rem;
  }

  .footer-pro-compact .footer-pro-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-pro-brand {
    grid-column: 1 / -1;
    max-width: 360px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
  }

  .footer-pro-tagline {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .footer-pro-social {
    justify-content: flex-start;
  }

  .footer-pro-col {
    padding: 0;
    border-bottom: none;
    text-align: left;
  }

  .footer-pro-col h3 {
    margin: 0 0 1rem;
    font-size: 0.7rem;
  }

  .footer-pro-col a {
    padding: 0.35rem 0;
    min-height: 2.5rem;
    display: inline-block;
  }

  .footer-pro-col a::after {
    left: 0;
    transform: none;
  }

  .footer-pro-col a:hover::after {
    width: 100%;
  }

  .footer-pro-bottom {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    padding-top: 2rem;
    gap: 1rem;
  }

  .footer-pro-legal {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
  }

  .footer-pro-legal a {
    padding: 0.35rem 0.5rem;
    min-height: 2.5rem;
  }
}

/* ----- Desktop: 4 Spalten (mit Brand) ----- */
@media (min-width: 960px) {
  .footer-pro .footer-pro-inner {
    padding: 4rem 1.5rem 2rem;
  }

  .footer-pro-compact .footer-pro-inner {
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .footer-pro-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem 2rem;
    margin-bottom: 3rem;
  }

  .footer-pro-compact .footer-pro-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-pro-brand {
    grid-column: 1;
    max-width: 280px;
    padding-bottom: 0;
    border-bottom: none;
    text-align: left;
  }

  .footer-pro-tagline {
    margin: 0 0 1.5rem;
    font-size: 0.9375rem;
  }

  .footer-pro-social a {
    min-width: 40px;
    min-height: 40px;
    width: 40px;
    height: 40px;
  }

  .footer-pro-social svg {
    width: 18px;
    height: 18px;
  }

  .footer-pro-col h3 {
    margin: 0 0 1.25rem;
    font-size: 0.7rem;
  }

  .footer-pro-col li {
    margin-bottom: 0.6rem;
  }

  .footer-pro-col a {
    font-size: 0.9375rem;
    padding: 0;
    min-height: 0;
  }

  .footer-pro-copy {
    font-size: 0.8125rem;
  }

  .footer-pro-legal {
    gap: 1.5rem;
  }

  .footer-pro-legal a {
    font-size: 0.8125rem;
    padding: 0;
    min-height: 0;
  }
}

/* ========== Cookie-Consent-Banner (DSGVO) ========== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem 1.25rem;
  background: var(--gray-900);
  color: #e5e5e5;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-consent--hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.cookie-consent-text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.cookie-consent-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.cookie-consent-link:hover {
  color: #fff;
}

.cookie-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-consent-btn {
  padding: 0.5rem 1rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.cookie-consent-btn-necessary,
.cookie-consent-btn-reject {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.cookie-consent-btn-necessary:hover,
.cookie-consent-btn-reject:hover {
  background: rgba(255, 255, 255, 0.25);
}

.cookie-consent-btn-accept {
  background: var(--color-primary);
  color: #fff;
}

.cookie-consent-btn-accept:hover {
  background: var(--color-primary-hover);
}

@media (max-width: 480px) {
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-consent-buttons {
    justify-content: center;
  }

  .cookie-consent-btn {
    flex: 1;
    min-width: 120px;
  }
}

/* ===== Blog ===== */
.blog-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.blog-teaser {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: box-shadow var(--transition);
}

.blog-teaser:hover {
  box-shadow: var(--shadow-md);
}

.blog-teaser h2 {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.blog-teaser h2 a {
  color: var(--gray-900);
  text-decoration: none;
}

.blog-teaser h2 a:hover {
  color: var(--color-primary);
}

.blog-teaser .section-lead {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.blog-article-body {
  max-width: 42rem;
  margin: 0 auto;
}

.blog-article-body h1 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.blog-article-body h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  padding-top: 0.25rem;
}

.blog-article-body h3 {
  font-size: 1.0625rem;
  margin: 1.5rem 0 0.5rem;
}

.blog-article-body p {
  margin-bottom: 1rem;
}

.blog-breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.blog-breadcrumb a {
  color: var(--gray-500);
  text-decoration: none;
}

.blog-breadcrumb a:hover {
  color: var(--color-primary);
}
