/* ============================================
   eventverleih-stuttgart.de — Design System
   Warmes Editorial: Cream / Bordeaux / Gold
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Farben */
  --cream: #FBF7F2;
  --cream-darker: #F4ECE0;
  --champagne: #EFE3D0;
  --bordeaux: #6E1F2C;
  --bordeaux-dark: #4A1320;
  --gold: #B89567;
  --gold-light: #D4B98A;
  --ink: #1F1812;
  --ink-soft: #4A3F35;
  --muted: #8A7A6A;
  --line: #E5DBCB;
  --white: #ffffff;

  /* Typo */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-w: 1280px;
  --gap: 24px;
  --radius: 4px;
  --radius-lg: 12px;

  /* Schatten */
  --shadow-sm: 0 1px 2px rgba(31, 24, 18, 0.06);
  --shadow: 0 4px 16px rgba(31, 24, 18, 0.08);
  --shadow-lg: 0 12px 40px rgba(31, 24, 18, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ============ TYPOGRAFIE ============ */

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; font-weight: 600; }

p { margin-bottom: 1em; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.lead { font-size: 1.15rem; line-height: 1.7; color: var(--ink-soft); }

/* ============ LAYOUT ============ */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--tight { padding: 48px 0; }
.section--cream { background: var(--cream-darker); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--cream); }
.section--ink p { color: var(--cream-darker); }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn--primary { background: var(--bordeaux); color: var(--cream); }
.btn--primary:hover { background: var(--bordeaux-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-light); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--outline { background: transparent; color: var(--bordeaux); border-color: var(--bordeaux); }
.btn--outline:hover { background: var(--bordeaux); color: var(--cream); }
.btn--sm { padding: 10px 18px; font-size: 0.85rem; }
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

/* ============ HEADER ============ */

.topbar {
  background: var(--ink);
  color: var(--cream-darker);
  font-size: 0.8rem;
  padding: 8px 0;
  letter-spacing: 0.02em;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.topbar__left { display: flex; gap: 20px; }
.topbar__right { display: flex; gap: 16px; }
.topbar a:hover { color: var(--gold-light); }

.header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px 0;
}
.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.logo span { color: var(--bordeaux); }

.nav { display: flex; gap: 28px; justify-content: center; }
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: var(--bordeaux); }
.nav a.has-dropdown::after { content: '▾'; font-size: 0.7em; margin-left: 4px; }

.header__actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: none; cursor: pointer;
  color: var(--ink); border-radius: var(--radius);
  position: relative;
}
.icon-btn:hover { background: var(--cream-darker); }
.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--bordeaux);
  color: var(--cream);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.mobile-toggle { display: none; }
@media (max-width: 900px) {
  .nav { display: none; }
  .mobile-toggle { display: inline-flex; }
  .header__inner { grid-template-columns: auto 1fr auto; }
}
@media (max-width: 600px) {
  .header__inner { gap: 8px; padding: 14px 0; }
  .logo { font-size: 1.1rem; white-space: nowrap; }
  .icon-btn { width: 34px; height: 34px; }
  .topbar__left { gap: 10px; }
  .topbar__inner { justify-content: center; }
}

/* ============ HERO ============ */

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(31,24,18,0.45), rgba(31,24,18,0.55)),
              url('img/hero-home.jpg') center/cover;
  color: var(--cream);
  padding: 80px 0;
}
.hero h1 { color: var(--cream); max-width: 14ch; }
.hero p { color: var(--cream-darker); font-size: 1.2rem; max-width: 50ch; margin: 24px 0 32px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__inner { max-width: 720px; }

/* ============ KATEGORIE-KACHELN ============ */

.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cat-card:hover img { transform: scale(1.05); }
.cat-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31,24,18,0.85) 0%, rgba(31,24,18,0.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  color: var(--cream);
}
.cat-card h3 { color: var(--cream); margin-bottom: 6px; }
.cat-card p { color: var(--cream-darker); font-size: 0.9rem; margin: 0; }
.cat-card__count {
  position: absolute; top: 16px; left: 16px;
  background: var(--cream); color: var(--ink);
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600;
}

/* ============ PRODUKTKARTEN ============ */

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }
.product-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--cream-darker);
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--bordeaux); color: var(--cream);
  padding: 4px 10px; border-radius: var(--radius);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-card__body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.product-card__cat { font-size: 0.7rem; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.product-card h4 { font-family: var(--serif); font-weight: 500; font-size: 1.15rem; margin-bottom: 10px; }
.product-card__price {
  display: flex; align-items: baseline; gap: 6px;
  margin-top: auto; margin-bottom: 14px;
}
.product-card__price strong { font-family: var(--sans); font-size: 1.1rem; font-weight: 700; color: var(--ink); }
.product-card__price small { font-size: 0.8rem; color: var(--muted); }

/* ============ FILTER-SIDEBAR ============ */

.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; }
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } }

.filter {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 100px;
}
.filter h4 { font-family: var(--sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; color: var(--ink); }
.filter__group { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.filter__group:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.filter__option { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; cursor: pointer; font-size: 0.9rem; }
.filter__option input { accent-color: var(--bordeaux); }
.filter__count { margin-left: auto; color: var(--muted); font-size: 0.8rem; }

.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--line);
  flex-wrap: wrap; gap: 12px;
}
.shop-toolbar__count { font-size: 0.9rem; color: var(--muted); }
.shop-toolbar select {
  padding: 8px 14px; border: 1px solid var(--line);
  border-radius: var(--radius); font-family: var(--sans); font-size: 0.9rem;
  background: var(--white); color: var(--ink);
}

/* ============ PRODUKT-DETAIL ============ */

.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .product-detail { grid-template-columns: 1fr; gap: 32px; } }

.gallery { display: flex; flex-direction: column; gap: 12px; }
.gallery__main { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--cream-darker); }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery__thumb { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; cursor: pointer; opacity: 0.7; transition: opacity 0.2s; border: 2px solid transparent; }
.gallery__thumb:hover, .gallery__thumb--active { opacity: 1; border-color: var(--gold); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info h1 { font-size: clamp(2rem, 3vw, 2.75rem); margin-bottom: 16px; }
.product-info__cat { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; display: block; }
.product-info__price { font-size: 2rem; font-family: var(--serif); font-weight: 600; color: var(--bordeaux); margin: 20px 0; }
.product-info__price small { font-size: 0.9rem; color: var(--muted); font-family: var(--sans); font-weight: 400; }
.product-info__lead { font-size: 1.05rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 24px; }

.product-options { margin: 24px 0; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.option-row { margin-bottom: 18px; }
.option-row:last-child { margin-bottom: 0; }
.option-row label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.option-row input, .option-row select {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--sans); font-size: 0.95rem;
  background: var(--cream); color: var(--ink);
}
.qty-row { display: flex; align-items: center; gap: 16px; }
.qty-control { display: inline-flex; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.qty-control button { width: 40px; height: 44px; background: var(--white); border: none; cursor: pointer; font-size: 1.2rem; color: var(--ink); }
.qty-control button:hover { background: var(--cream-darker); }
.qty-control input { width: 56px; height: 44px; text-align: center; border: none; border-left: 1px solid var(--line); border-right: 1px solid var(--line); background: var(--white); font-family: var(--sans); font-size: 1rem; }

.product-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 28px 0; }
.product-features li { display: flex; gap: 10px; font-size: 0.9rem; color: var(--ink-soft); list-style: none; }
.product-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }

.tabs { margin-top: 60px; border-top: 1px solid var(--line); padding-top: 40px; }
.tabs__nav { display: flex; gap: 32px; border-bottom: 1px solid var(--line); margin-bottom: 32px; }
.tabs__btn { background: none; border: none; padding: 14px 0; font-family: var(--sans); font-size: 0.95rem; font-weight: 600; cursor: pointer; color: var(--muted); position: relative; }
.tabs__btn.active { color: var(--ink); }
.tabs__btn.active::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: var(--bordeaux); }
.tabs__panel { display: none; }
.tabs__panel.active { display: block; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table td { padding: 12px 0; font-size: 0.95rem; }
.spec-table td:first-child { color: var(--muted); width: 40%; }

/* ============ WARENKORB ============ */

.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }

.cart-table { width: 100%; }
.cart-row {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.cart-row__img { width: 100px; height: 100px; border-radius: var(--radius); overflow: hidden; background: var(--cream-darker); }
.cart-row__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-row__title { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; margin-bottom: 4px; }
.cart-row__meta { font-size: 0.85rem; color: var(--muted); }
.cart-row__remove { background: none; border: none; cursor: pointer; color: var(--muted); padding: 8px; }
.cart-row__remove:hover { color: var(--bordeaux); }
@media (max-width: 700px) {
  .cart-row { grid-template-columns: 80px 1fr; gap: 12px; }
  .cart-row__img { width: 80px; height: 80px; }
}

.cart-summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
  height: fit-content;
}
.cart-summary h3 { margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.95rem; }
.summary-row--total { border-top: 1px solid var(--line); padding-top: 16px; margin-top: 8px; font-size: 1.1rem; font-weight: 700; }
.summary-row--total strong { font-family: var(--serif); font-size: 1.4rem; color: var(--bordeaux); }

.coupon { display: flex; gap: 8px; margin: 16px 0; }
.coupon input { flex: 1; padding: 10px 14px; border: 1px solid var(--line); border-radius: var(--radius); font-family: var(--sans); }
.coupon button { padding: 10px 16px; background: var(--ink); color: var(--cream); border: none; border-radius: var(--radius); cursor: pointer; }

/* ============ CHECKOUT ============ */

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

.form-section { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 24px; }
.form-section h3 { margin-bottom: 20px; font-size: 1.4rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid--full { grid-template-columns: 1fr; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 11px 14px; border: 1px solid var(--line);
  border-radius: var(--radius); font-family: var(--sans); font-size: 0.95rem;
  background: var(--cream);
}
.form-row input:focus, .form-row textarea:focus { outline: 2px solid var(--gold); outline-offset: -1px; border-color: var(--gold); }

.payment-method { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 8px; cursor: pointer; }
.payment-method:has(input:checked) { border-color: var(--bordeaux); background: var(--cream-darker); }

/* ============ HOCHZEIT-LANDING ============ */

.hochzeit-hero {
  background: linear-gradient(rgba(31,24,18,0.5), rgba(31,24,18,0.55)),
              url('img/hero-hochzeit.jpg') center/cover;
  color: var(--cream);
  padding: 120px 0;
  text-align: center;
}
.hochzeit-hero h1 { color: var(--cream); margin: 0 auto; max-width: 18ch; }

.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .feature-list { grid-template-columns: 1fr; } }
.feature {
  text-align: center;
  padding: 32px 24px;
}
.feature__icon {
  width: 64px; height: 64px;
  background: var(--cream-darker);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--bordeaux);
}
.feature h3 { margin-bottom: 12px; }

/* ============ TESTIMONIALS ============ */

.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testimonial__quote { font-family: var(--serif); font-size: 1.25rem; font-style: italic; line-height: 1.5; margin-bottom: 20px; color: var(--ink); }
.testimonial__quote::before { content: '"'; color: var(--gold); font-size: 2.5em; line-height: 0; vertical-align: -0.4em; margin-right: 6px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--cream-darker); overflow: hidden; }
.testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial__name { font-weight: 600; font-size: 0.95rem; }
.testimonial__date { font-size: 0.8rem; color: var(--muted); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 10px; }

/* ============ BLOG / RATGEBER ============ */

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .article-grid { grid-template-columns: 1fr; } }
@media (min-width: 600px) and (max-width: 900px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }

.article-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
  display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.article-card__media { aspect-ratio: 16/10; overflow: hidden; }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.article-card:hover .article-card__media img { transform: scale(1.05); }
.article-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.article-card__meta { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.article-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.article-card p { font-size: 0.95rem; margin-bottom: 16px; }
.article-card__more { color: var(--bordeaux); font-weight: 600; font-size: 0.9rem; margin-top: auto; }

/* Article body */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { margin: 48px 0 16px; }
.article-body h3 { margin: 32px 0 12px; }
.article-body p { font-size: 1.1rem; line-height: 1.75; }
.article-body ul, .article-body ol { margin: 16px 0 24px 24px; }
.article-body li { font-size: 1.05rem; line-height: 1.7; margin-bottom: 8px; color: var(--ink-soft); }
.article-body blockquote { border-left: 3px solid var(--gold); padding: 8px 0 8px 24px; margin: 24px 0; font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--ink); }
.article-body img { border-radius: var(--radius-lg); margin: 32px 0; }
.article-hero { aspect-ratio: 16/9; max-width: 900px; margin: 0 auto 40px; border-radius: var(--radius-lg); overflow: hidden; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-meta { text-align: center; margin-bottom: 32px; font-size: 0.9rem; color: var(--muted); }

/* ============ GLOSSAR ============ */

.glossar-nav { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 40px; padding: 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.glossar-nav a {
  padding: 8px 14px; border-radius: var(--radius); font-weight: 600; font-size: 0.9rem;
  background: var(--cream-darker); color: var(--ink);
}
.glossar-nav a:hover { background: var(--bordeaux); color: var(--cream); }

.glossar-section { margin-bottom: 48px; }
.glossar-section__letter { font-family: var(--serif); font-size: 3rem; color: var(--gold); margin-bottom: 16px; line-height: 1; }
.glossar-entry { padding: 20px 0; border-bottom: 1px solid var(--line); }
.glossar-entry h3 { margin-bottom: 8px; }
.glossar-entry p { margin-bottom: 0; }

/* ============ LOKAL-PAGES ============ */

.lokal-hero {
  background: linear-gradient(rgba(31,24,18,0.55), rgba(31,24,18,0.6)),
              url('img/cat-tische.jpg') center/cover;
  color: var(--cream);
  padding: 100px 0;
}
.lokal-hero--stuttgart { background-image: linear-gradient(rgba(31,24,18,0.55), rgba(31,24,18,0.6)), url('img/lokal-stuttgart.jpg'); }
.lokal-hero--esslingen { background-image: linear-gradient(rgba(31,24,18,0.55), rgba(31,24,18,0.6)), url('img/lokal-esslingen.jpg'); }
.lokal-hero--ludwigsburg { background-image: linear-gradient(rgba(31,24,18,0.55), rgba(31,24,18,0.6)), url('img/lokal-ludwigsburg.jpg'); }
.lokal-hero--tuebingen { background-image: linear-gradient(rgba(31,24,18,0.55), rgba(31,24,18,0.6)), url('img/lokal-tuebingen.jpg'); }
.lokal-hero--reutlingen { background-image: linear-gradient(rgba(31,24,18,0.55), rgba(31,24,18,0.6)), url('img/lokal-reutlingen.jpg'); }
.lokal-hero--boeblingen { background-image: linear-gradient(rgba(31,24,18,0.55), rgba(31,24,18,0.6)), url('img/lokal-boeblingen.jpg'); }
.lokal-hero h1 { color: var(--cream); }
.lokal-hero .lead { color: var(--cream-darker); }

.info-box {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  border-radius: var(--radius);
  margin: 28px 0;
}
.info-box h4 { font-family: var(--sans); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; color: var(--bordeaux); }

/* ============ FAQ ============ */

.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__q { width: 100%; padding: 22px 0; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item__q::after { content: '+'; font-size: 1.5rem; color: var(--gold); transition: transform 0.2s; }
.faq-item.open .faq-item__q::after { content: '−'; }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-item__a { max-height: 600px; padding-bottom: 22px; }

/* ============ CTA-BAND ============ */

.cta-band {
  background: var(--bordeaux);
  color: var(--cream);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: var(--cream); margin-bottom: 16px; }
.cta-band p { color: var(--cream-darker); font-size: 1.1rem; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ============ FOOTER ============ */

.footer {
  background: var(--ink);
  color: var(--cream-darker);
  padding: 80px 0 40px;
}
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__col h4 { color: var(--cream); font-family: var(--sans); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; font-size: 0.9rem; }
.footer__col a { color: var(--cream-darker); }
.footer__col a:hover { color: var(--gold-light); }
.footer__brand p { color: var(--cream-darker); font-size: 0.9rem; line-height: 1.7; max-width: 36ch; }
.footer__bottom {
  border-top: 1px solid #2D241B;
  padding-top: 24px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--cream); }

/* ============ BREADCRUMB ============ */

.breadcrumb { padding: 16px 0; font-size: 0.85rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb__sep { margin: 0 8px; }

/* ============ NEWSLETTER ============ */

.newsletter {
  background: var(--cream-darker);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
}
@media (max-width: 600px) { .newsletter { padding: 40px 24px; } }
.newsletter h2 { margin-bottom: 12px; }
.newsletter p { margin-bottom: 28px; max-width: 50ch; margin-left: auto; margin-right: auto; }
.newsletter form { display: flex; gap: 8px; max-width: 480px; margin: 0 auto; }
@media (max-width: 500px) { .newsletter form { flex-direction: column; } }
.newsletter input { flex: 1; padding: 14px 18px; border: 1px solid var(--line); border-radius: var(--radius); font-family: var(--sans); font-size: 1rem; background: var(--white); }

/* ============ MINI-CART DRAWER ============ */

.cart-drawer {
  position: fixed;
  top: 0; right: -440px;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: var(--cream);
  box-shadow: -8px 0 32px rgba(0,0,0,0.15);
  transition: right 0.3s ease;
  z-index: 200;
  display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-drawer__header { padding: 20px 24px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.cart-drawer__header h3 { font-size: 1.3rem; }
.cart-drawer__close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink); }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-drawer__footer { padding: 20px 24px; border-top: 1px solid var(--line); background: var(--white); }
.cart-drawer__total { display: flex; justify-content: space-between; margin-bottom: 16px; font-weight: 600; }
.cart-drawer__total strong { font-family: var(--serif); font-size: 1.3rem; color: var(--bordeaux); }

.drawer-item { display: grid; grid-template-columns: 60px 1fr auto; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: center; }
.drawer-item__img { width: 60px; height: 60px; border-radius: var(--radius); overflow: hidden; background: var(--cream-darker); }
.drawer-item__img img { width: 100%; height: 100%; object-fit: cover; }
.drawer-item__name { font-size: 0.9rem; font-weight: 500; }
.drawer-item__qty { font-size: 0.8rem; color: var(--muted); }
.drawer-item__price { font-weight: 600; font-size: 0.95rem; }

.overlay {
  position: fixed; inset: 0; background: rgba(31,24,18,0.5);
  opacity: 0; visibility: hidden; transition: opacity 0.3s; z-index: 150;
}
.overlay.active { opacity: 1; visibility: visible; }

/* ============ MOBILE NAV ============ */

.mobile-nav {
  position: fixed;
  top: 0; left: -100%;
  width: 90%; max-width: 360px;
  height: 100vh;
  background: var(--cream);
  z-index: 200;
  padding: 80px 32px 32px;
  transition: left 0.3s ease;
}
.mobile-nav.open { left: 0; }
.mobile-nav a { display: block; padding: 12px 0; font-size: 1.1rem; border-bottom: 1px solid var(--line); }

/* ============ UTILITIES ============ */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.gap-2 { gap: 16px; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.hide-mobile { }
@media (max-width: 600px) { .hide-mobile { display: none; } }

.dummy-banner {
  background: var(--gold);
  color: var(--ink);
  padding: 8px 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
