/* Selbstgehostete Schrift „Inter" – DSGVO-konform, ohne Google-CDN */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('assets/fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('assets/fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('assets/fonts/inter-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('assets/fonts/inter-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 800; font-display: swap; src: url('assets/fonts/inter-latin-800-normal.woff2') format('woff2'); }

:root {
  /* Offizielle Blädi-Markenfarben (Marketingplan) */
  --cream: #fbf1e1; /* Main */
  --green: #596a44; /* Main */
  --khaki: #c0bda2; /* dezent */
  --orange: #ff8856; /* dezent / Akzent */
  --yellow: #ffe476; /* dezent */

  --bg: var(--cream);
  --surface: #ffffff;
  --surface-2: #f3ecdc;
  --text: #20201c;
  --muted: #61685a;
  --primary: var(--green);
  --accent: var(--orange);
  --accent-2: var(--khaki);
  --line: #d8d1bb;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 20px 45px rgba(20, 20, 16, 0.1);
  --shadow-soft: 0 2px 6px rgba(20, 20, 16, 0.04), 0 12px 30px rgba(20, 20, 16, 0.07);
  --shadow-hover: 0 8px 18px rgba(20, 20, 16, 0.07), 0 26px 55px rgba(20, 20, 16, 0.13);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at 90% 4%, rgba(255, 136, 86, 0.16), transparent 24%),
    radial-gradient(circle at 8% 16%, rgba(89, 106, 68, 0.16), transparent 26%),
    radial-gradient(circle at 55% 120%, rgba(255, 228, 118, 0.14), transparent 30%),
    var(--bg);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-family: var(--font-sans);
  font-weight: 700;
}

h1,
h2 {
  letter-spacing: -0.022em;
}

p {
  margin: 0;
  line-height: 1.65;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(249, 241, 224, 0.7);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
}

.brand {
  text-decoration: none;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.brand:hover img {
  transform: scale(1.05);
}

/* Rollende Falafel-Kugel in der Navigation (kleines Easter Egg) */
.falafel-track {
  position: relative;
  flex: 1 1 auto;
  align-self: center;
  height: 42px;
  margin: 0 0.8rem;
  overflow: hidden;
  pointer-events: none;
}

.falafel-ball {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: url('assets/images/falafel-ball.png') center / cover no-repeat;
  box-shadow: 0 1.5px 3px rgba(0, 0, 0, 0.25);
  animation: falafel-roll 14s linear infinite;
}

@keyframes falafel-roll {
  0% { left: 0%; transform: translateY(-50%) rotate(0deg); opacity: 0; }
  3% { left: 2%; transform: translateY(-50%) rotate(40deg); opacity: 1; animation-timing-function: ease-out; }
  12% { left: 16%; transform: translateY(calc(-50% - 11px)) rotate(180deg); animation-timing-function: ease-in; }
  21% { left: 30%; transform: translateY(-50%) rotate(330deg); animation-timing-function: ease-out; }
  30% { left: 44%; transform: translateY(calc(-50% - 11px)) rotate(480deg); animation-timing-function: ease-in; }
  39% { left: 58%; transform: translateY(-50%) rotate(640deg); animation-timing-function: ease-out; }
  48% { left: 72%; transform: translateY(calc(-50% - 11px)) rotate(800deg); animation-timing-function: ease-in; }
  58% { left: 100%; transform: translateY(-50%) rotate(1000deg); opacity: 1; }
  61%, 100% { left: 100%; transform: translateY(-50%) rotate(1000deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .falafel-ball { animation: none; opacity: 0; }
}

.main-nav {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--primary);
  color: #fff;
}

.lang-flags {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}

.lang-flag {
  border: 2px solid transparent;
  background: none;
  border-radius: 6px;
  padding: 0.15rem 0.25rem;
  font-size: 1.15rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.45;
  transition: opacity 0.2s var(--ease), border-color 0.2s var(--ease);
}

.lang-flag:hover {
  opacity: 0.85;
}

.lang-flag.active {
  opacity: 1;
  border-color: var(--primary);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  padding: 0.35rem 0.7rem;
  font: inherit;
}

main {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

/* Sanftes Einblenden beim Scrollen */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  gap: 1rem;
  min-height: 84vh;
  padding: 1.6rem 0 3.5rem;
}

.hero-intro {
  background: linear-gradient(145deg, #ffffff, #f4ece1);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 3rem);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(89, 106, 68, 0.09);
  color: var(--primary);
  border: 1px solid rgba(89, 106, 68, 0.22);
  border-radius: 999px;
  padding: 0.28rem 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.73rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.tag-icon {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.1rem, 5.4vw, 4.2rem);
  margin-bottom: 0.9rem;
}

.subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  max-width: 37ch;
  color: var(--muted);
}

.delivery-toggle {
  display: flex;
  gap: 0.6rem;
  border: none;
  padding: 0;
  margin: 0.8rem 0 0.4rem;
}

.delivery-option {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.delivery-option:has(input:checked) {
  border-color: var(--primary);
  background: rgba(89, 106, 68, 0.08);
}

.delivery-option input {
  accent-color: var(--primary);
}

.pickup-note {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
  margin: 0.4rem 0 0.6rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.reviews-more {
  margin-top: 1.8rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.reviews-more a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.reviews-more a:hover {
  color: var(--accent);
}

.hero-claim {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 1.1rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.hero-claim svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: rgba(255, 136, 86, 0.18);
  flex-shrink: 0;
}

.hero-btns {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.btn {
  align-self: flex-start;
  text-decoration: none;
  background: var(--accent);
  color: #20170f;
  font-weight: 600;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), filter 0.3s var(--ease);
  box-shadow: 0 6px 16px rgba(255, 136, 86, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 10px 24px rgba(255, 136, 86, 0.4);
}

.btn-order {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(89, 106, 68, 0.3);
}

.btn-order:hover {
  box-shadow: 0 10px 24px rgba(89, 106, 68, 0.4);
}

.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 100%;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease-out;
}

.hero-media:hover video {
  transform: scale(1.04);
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 840px;
  margin-inline: auto;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-media {
  overflow: hidden;
}

.card-media img,
.card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.card img.packshot-full {
  object-fit: contain;
  background: #f5f3ef;
  padding: 0.6rem;
}

.card:hover .card-media img {
  transform: scale(1.06);
}

.card h3,
.card p {
  padding: 0 1.1rem;
}

.nutrition-toggle {
  padding: 0 1.1rem;
  margin-top: 0.4rem;
}

.nutrition-toggle summary {
  font-size: 0.78rem;
  color: var(--primary);
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

.nutrition-toggle summary::-webkit-details-marker { display: none; }
.nutrition-toggle summary::before { content: '▸ '; }
.nutrition-toggle[open] summary::before { content: '▾ '; }

.nutrition-table {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  border-collapse: collapse;
  color: var(--muted);
}

.nutrition-table caption {
  text-align: left;
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--text);
  padding-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nutrition-table td {
  padding: 0.2rem 0;
  border-bottom: 1px solid var(--line);
}

.nutrition-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--text);
}

.card-price {
  padding: 0 1.1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.card-kg-price {
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--muted);
}

.card-order-btn {
  display: inline-block;
  margin: 0.8rem 1.1rem 1.2rem;
  padding: 0.55rem 1.2rem;
  background: var(--accent);
  color: #20170f;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(255, 136, 86, 0.25);
}

.card-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 136, 86, 0.35);
}

.card h3 {
  padding-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.card p {
  padding-bottom: 1.2rem;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.benefits {
  list-style: none;
  margin: 0;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: linear-gradient(130deg, rgba(90, 111, 70, 0.95), rgba(65, 78, 54, 0.94));
  color: #f6f7ef;
  display: grid;
  gap: 0.75rem;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.benefits li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.about p {
  color: var(--muted);
}

.about p + p {
  margin-top: 0.9rem;
}

.about-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-media img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.about-media:hover img {
  transform: scale(1.05);
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

blockquote {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem 1.3rem;
  font-weight: 500;
  font-size: 1.05rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
}

blockquote::before {
  content: '"';
  position: absolute;
  top: 0.2rem;
  left: 0.9rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.1;
  font-family: Georgia, 'Times New Roman', serif;
  pointer-events: none;
  user-select: none;
}

blockquote:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.bq-stars {
  display: block;
  color: var(--accent);
  font-size: 0.88rem;
  letter-spacing: 3px;
  margin-bottom: 0.45rem;
  position: relative;
}

.callout {
  background: linear-gradient(120deg, rgba(193, 147, 100, 0.24), rgba(90, 111, 70, 0.18));
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact label,
.contact .field {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.field-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.customer-switch {
  display: inline-flex;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(221, 209, 176, 0.65);
  border-radius: 18px;
  padding: 0.35rem;
  margin-bottom: 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.switch-btn {
  border: none;
  background: rgba(255, 255, 255, 0.52);
  color: #6b6d63;
  padding: 0.62rem 1.1rem;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: inset 0 0 0 1px rgba(221, 209, 176, 0.5);
}

.switch-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.85),
    0 0 0 4px rgba(90, 111, 70, 0.28);
}

.switch-btn.active::after {
  content: '●';
  margin-left: 0.45rem;
  font-size: 0.72rem;
  color: #f9f1e0;
}

.contact-panel {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.contact-panel.active {
  display: block;
  animation: panel-in 0.5s var(--ease);
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact select {
  width: 100%;
  border: 1px solid var(--line);
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  background: #fff;
  font: inherit;
  color: var(--text);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.contact select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(89, 106, 68, 0.18);
}

.order-form {
  display: block;
}

.contact input {
  width: 100%;
  font: inherit;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.contact input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(89, 106, 68, 0.18);
}

/* Honeypot gegen Spam – für Menschen unsichtbar */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

button.wa-btn {
  border: none;
  cursor: pointer;
  font: inherit;
}

button.wa-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.form-status {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  min-height: 1.2em;
  color: var(--muted);
}

.form-status.error {
  color: #b3402b;
  font-weight: 600;
}

.form-status.success {
  color: var(--primary);
  font-weight: 600;
}

.qty-row {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.qty-row select {
  width: auto;
  min-width: 160px;
}

/* Mengen-Stepper – größer & im Markengrün */
.stepper {
  display: inline-grid;
  grid-template-columns: auto minmax(60px, auto) auto;
  align-items: center;
  border: 2px solid var(--primary);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(89, 106, 68, 0.2);
}

.step-btn {
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  width: 3.6rem;
  height: 3.6rem;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.08s var(--ease);
}

.step-btn:hover:not(:disabled) {
  background: var(--accent);
  color: #20170f;
}

.step-btn:active:not(:disabled) {
  transform: scale(0.9);
}

.step-btn:disabled {
  background: var(--khaki);
  color: #fff;
  opacity: 0.55;
  cursor: not-allowed;
}

.stepper-value {
  text-align: center;
  font-weight: 700;
  color: var(--text);
  font-size: 1.2rem;
  padding: 0 0.8rem;
}

/* Warenkorb (Privatkunden) */
.cart-builder {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.cart-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-soft);
}

.cart-item-info {
  flex: 1 1 150px;
  display: grid;
  gap: 0.15rem;
}

.cart-item-name {
  font-weight: 600;
  color: var(--text);
}

.cart-item-sub {
  font-size: 0.82rem;
  color: var(--muted);
}

.cart-item .hummus-portion {
  width: auto;
  min-width: 96px;
}

.cart-item-price {
  min-width: 74px;
  text-align: right;
  font-weight: 600;
  color: var(--text);
}

.cart-extra {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
}

.cart-extra input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

.cart-summary {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.cart-lines {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.cart-empty {
  font-size: 0.9rem;
  color: var(--muted);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
  font-weight: 600;
}

.cart-total strong {
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.price-preview {
  margin: 1.3rem 0 0.4rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.price-preview strong {
  color: var(--text);
  font-size: 1.25rem;
}

.min-order-note,
.price-note {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.price-note:empty {
  margin: 0;
}

.min-order-note.error {
  color: #b3402b;
  font-weight: 600;
}

.wa-btn {
  display: inline-block;
  text-decoration: none;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  margin-top: 0.9rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), filter 0.3s var(--ease);
  box-shadow: 0 6px 16px rgba(90, 111, 70, 0.28);
}

.wa-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 10px 24px rgba(90, 111, 70, 0.36);
}

.wa-btn.is-disabled {
  pointer-events: none;
  opacity: 0.5;
  box-shadow: none;
}

.wa-note {
  margin-top: 0.7rem;
  color: var(--muted);
}

footer {
  background: #363f2c;
  margin-top: 2rem;
}

.footer-inner {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 2.8rem 0 2.2rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr auto;
  gap: 2.5rem;
  align-items: start;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  margin-bottom: 0.6rem;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(251, 241, 225, 0.5);
  margin: 0;
  line-height: 1.5;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: rgba(251, 241, 225, 0.65);
}

.footer-contact-icon {
  width: 14px;
  height: 14px;
  stroke: rgba(251, 241, 225, 0.45);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(251, 241, 225, 0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s var(--ease);
}

.footer-links a:hover {
  color: rgba(251, 241, 225, 0.9);
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(251, 241, 225, 0.3);
  border-top: 1px solid rgba(251, 241, 225, 0.08);
  padding: 1.2rem 1rem;
  margin: 0;
}

/* Handwerk-Prozess-Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.6rem;
}

.process-step {
  display: flex;
  flex-direction: column;
}

.process-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
}

.process-img img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.process-step:hover .process-img img {
  transform: scale(1.05);
}

.process-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.3rem;
}

.process-step h3 {
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
}

.process-step > p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* Falafel-Maker Thumbnail im Warenkorb */
.cart-item-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Rechtsseiten (Impressum, Datenschutz) */
.legal {
  width: min(820px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.legal a {
  color: var(--primary);
}

.legal .back {
  display: inline-block;
  margin-bottom: 1.6rem;
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.legal h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.022em;
  margin-bottom: 1.4rem;
}

.legal h2 {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin: 2rem 0 0.6rem;
}

.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.7;
}

.legal address {
  font-style: normal;
  color: var(--text);
  line-height: 1.7;
}

.legal .hint {
  margin-top: 2.4rem;
  padding: 1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .falafel-track {
    display: none;
  }

  .hero,
  .cards,
  .cards-2,
  .about,
  .split,
  .quotes {
    grid-template-columns: 1fr;
  }

  .cards-2 {
    max-width: 460px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0.8rem;
    right: 0.8rem;
    background: rgba(249, 241, 224, 0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.7rem;
    display: none;
    flex-direction: column;
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 2rem 0;
  }
}

/* --- Zubereitungs-Schritte --- */
.prep-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2rem;
}

.prep-step {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.prep-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.prep-step h3,
.prep-step p,
.prep-num {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.prep-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1.2rem;
  margin-bottom: 0.9rem;
}

.prep-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.prep-step p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.prep-tip {
  margin-top: 1.6rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 136, 86, 0.1);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
}

.prep-tip strong {
  color: var(--orange);
}

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

/* --- Story-Sektion --- */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-text h2 {
  margin: 0.6rem 0 1rem;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
}

.story-text p {
  color: var(--muted);
  max-width: 44ch;
  margin-bottom: 0.9rem;
}

.story-quote {
  background: linear-gradient(145deg, var(--surface-2), #ede6d4);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
}

.story-quote cite {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.1rem;
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.8;
}

.quote-portrait {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid var(--orange);
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .story-section {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

/* --- Instagram Footer-Link --- */
.footer-insta-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(251, 241, 225, 0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s var(--ease);
  margin-top: 0.4rem;
}

.footer-insta-link:hover {
  color: #e1306c;
}

.footer-insta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- Scroll-Hintergrundfarbe: sanfte Übergänge auf --surface und --bg --- */
body,
.product-card,
.cart-panel,
.contact-panel,
.topbar,
.section,
.about,
.callout,
.split {
  transition: background-color 0.5s ease;
}
