/* ══════════════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:   #ffffff;
  --black:   #000000;
  --bg:      #f5f5f7;
  --surface: #ffffff;
  --text:    #1d1d1f;
  --muted:   #6e6e73;
  --border:  #d2d2d7;
  --blue:    #0071e3;
  --blue-h:  #0077ed;
  --green:   #1d8348;
  --red:     #d70015;
  --radius:  18px;
  --shadow:  0 4px 40px rgba(0,0,0,0.08);
  --trans:   all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ══════════════════════════════════════════════════════
   NAVBAR (Apple-Style: transparent → weiß beim Scrollen)
══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: var(--trans);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}
.nav-logo svg { width: 28px; height: 28px; }

.nav-links {
  display: flex;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13px;
  color: var(--text);
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { background: rgba(0,0,0,0.05); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.nav-icon-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  position: relative;
  transition: background 0.15s;
}
.nav-icon-btn:hover { background: rgba(0,0,0,0.06); }
.nav-icon-btn svg { width: 18px; height: 18px; }

.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  width: 16px; height: 16px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Suchleiste */
.nav-search {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 0 solid var(--border);
}
.nav-search.open {
  max-height: 64px;
  border-top: 1px solid var(--border);
}
.search-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  gap: 10px;
}
.search-form input {
  flex: 1;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}
.search-form input:focus { border-color: var(--blue); }
.search-form button {
  padding: 9px 20px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

/* ══════════════════════════════════════════════════════
   HERO SECTION (Apple-Style Fullscreen)
══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #000;
  padding-top: 52px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, #1a1a2e 0%, #000 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 800px;
}
.hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero p {
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.btn-hero-primary {
  padding: 14px 32px;
  background: var(--blue);
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: var(--trans);
}
.btn-hero-primary:hover { background: var(--blue-h); transform: scale(1.02); }
.btn-hero-ghost {
  padding: 14px 32px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: var(--trans);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.2); }

/* ══════════════════════════════════════════════════════
   FEATURED STRIP (dünne Kategorie-Leiste wie Apple)
══════════════════════════════════════════════════════ */
.featured-strip {
  background: #f5f5f7;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.featured-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.featured-strip-inner::-webkit-scrollbar { display: none; }
.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--trans);
  flex-shrink: 0;
}
.strip-item:hover { border-color: var(--blue); color: var(--blue); }

/* ══════════════════════════════════════════════════════
   SECTION WRAPPER
══════════════════════════════════════════════════════ */
.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════
   PRODUKT-KARTEN (Apple Store Style)
══════════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.product-card:hover .product-img img {
  transform: scale(1.04);
}

.product-img {
  aspect-ratio: 1;
  background: #e8e8ed;
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.4s ease;
}
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  color: #c7c7cc;
}

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.product-badge.sale { background: var(--red); }
.product-badge.new  { background: #34c759; }

.product-info {
  padding: 16px 20px 20px;
}
.product-category {
  font-size: 12px;
  color: var(--blue);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.product-name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-short {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.product-price {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.product-price-old {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
}

/* Farbpunkte auf Karte */
.product-colors {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.color-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.15s;
}
.color-dot:hover { transform: scale(1.3); }
.color-dot.active { box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--blue); }

.btn-card {
  display: block;
  width: 100%;
  padding: 11px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: var(--trans);
  text-align: center;
}
.btn-card:hover { background: var(--blue-h); }
.btn-card.ghost {
  background: rgba(0,113,227,0.08);
  color: var(--blue);
}
.btn-card.ghost:hover { background: rgba(0,113,227,0.14); }

/* ══════════════════════════════════════════════════════
   PRODUKTDETAILSEITE
══════════════════════════════════════════════════════ */
.product-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Bildgalerie */
.gallery-main {
  aspect-ratio: 1;
  background: #f5f5f7;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 40px;
  transition: opacity 0.3s;
}
.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.thumb {
  width: 72px; height: 72px;
  border-radius: 10px;
  background: #f5f5f7;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border 0.15s;
}
.thumb:hover, .thumb.active { border-color: var(--blue); }
.thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

/* Info-Seite */
.detail-category { font-size: 13px; color: var(--blue); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.detail-title { font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 12px; }
.detail-short { font-size: 17px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.detail-price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 6px; }
.detail-price { font-size: 32px; font-weight: 700; letter-spacing: -1px; }
.detail-price-old { font-size: 18px; color: var(--muted); text-decoration: line-through; }
.detail-vat { font-size: 13px; color: var(--muted); margin-bottom: 28px; }

/* Varianten-Auswahl */
.variant-section { margin-bottom: 24px; }
.variant-label { font-size: 14px; font-weight: 500; margin-bottom: 10px; }
.variant-label span { color: var(--muted); font-weight: 400; }

/* Farbauswahl */
.color-options { display: flex; gap: 10px; flex-wrap: wrap; }
.color-option {
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--trans);
  position: relative;
}
.color-option:hover { transform: scale(1.15); }
.color-option.active {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--blue);
}
.color-option[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

/* Größen-Auswahl */
.size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.size-option {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
}
.size-option:hover { border-color: var(--blue); color: var(--blue); }
.size-option.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.size-option.out-of-stock { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

/* In den Warenkorb */
.add-to-cart-row { display: flex; gap: 12px; margin-top: 28px; align-items: center; }
.qty-picker {
  display: flex;
  align-items: center;
  background: #f5f5f7;
  border-radius: 12px;
  overflow: hidden;
}
.qty-picker button {
  width: 40px; height: 48px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
  transition: background 0.15s;
}
.qty-picker button:hover { background: rgba(0,0,0,0.06); }
.qty-picker span {
  width: 36px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}
.btn-add-to-cart {
  flex: 1;
  padding: 14px 24px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: var(--trans);
}
.btn-add-to-cart:hover { background: var(--blue-h); transform: scale(1.01); }

/* Lieferinfo-Zeile */
.delivery-info {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding: 14px 18px;
  background: #f5f5f7;
  border-radius: 12px;
  flex-wrap: wrap;
}
.delivery-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.delivery-item strong { color: var(--text); }

/* Produktdetails / Features */
.product-features {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.feature-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f5;
}
.feature-row:last-child { border-bottom: none; }
.feature-key { color: var(--muted); }
.feature-val { font-weight: 500; text-align: right; }

/* ══════════════════════════════════════════════════════
   WARENKORB
══════════════════════════════════════════════════════ */
.cart-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.cart-title { font-size: 36px; font-weight: 700; letter-spacing: -1px; margin-bottom: 28px; }
.cart-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-img { width: 80px; height: 80px; border-radius: 12px; background: #f5f5f7; overflow: hidden; flex-shrink: 0; }
.cart-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.cart-item-name { font-weight: 600; font-size: 16px; margin-bottom: 4px; }
.cart-item-variant { font-size: 13px; color: var(--muted); }
.cart-item-price { margin-left: auto; text-align: right; flex-shrink: 0; }
.cart-item-total { font-weight: 700; font-size: 18px; }
.cart-item-each  { font-size: 13px; color: var(--muted); }
.cart-remove { background: none; border: none; color: #c7c7cc; cursor: pointer; font-size: 20px; padding: 4px; margin-left: 8px; transition: color 0.15s; }
.cart-remove:hover { color: var(--red); }

/* Zusammenfassung */
.order-summary {
  background: #f5f5f7;
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 72px;
}
.summary-title { font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; }
.summary-row.total { font-size: 19px; font-weight: 700; border-top: 1px solid var(--border); padding-top: 14px; margin-top: 6px; }
.btn-checkout {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: var(--trans);
  text-align: center;
}
.btn-checkout:hover { background: var(--blue-h); }
.coupon-row { display: flex; gap: 8px; margin-top: 14px; }
.coupon-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.coupon-row input:focus { border-color: var(--blue); }
.coupon-row button {
  padding: 10px 16px;
  background: var(--text);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

/* ══════════════════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════════════════ */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px 0;
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--text); font-weight: 500; }

/* ══════════════════════════════════════════════════════
   TOAST NOTIFICATION
══════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ══════════════════════════════════════════════════════
   COOKIE-BANNER
══════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(29,29,31,0.95);
  backdrop-filter: blur(20px);
  color: #f5f5f7;
  padding: 18px 28px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 9000;
  max-width: 800px;
  width: calc(100% - 48px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.cookie-text { font-size: 14px; flex: 1; color: rgba(255,255,255,0.8); }
.cookie-text a { color: var(--blue); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-ghost { padding: 9px 18px; background: rgba(255,255,255,0.1); color: #fff; border: none; border-radius: 10px; font-size: 13px; font-weight: 500; cursor: pointer; font-family: inherit; }
.cookie-btn-accept { padding: 9px 18px; background: var(--blue); color: #fff; border: none; border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; }

/* ══════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer {
  background: #f5f5f7;
  border-top: 1px solid var(--border);
  margin-top: 80px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 56px 24px 24px; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; margin-bottom: 10px; }
.footer-logo svg { width: 28px; }
.footer-tagline { font-size: 14px; color: var(--muted); }
.footer-heading { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; color: var(--muted); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 8px; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .cart-wrap { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .order-summary { position: static; }
}
@media (max-width: 600px) {
  .hero h1 { letter-spacing: -1px; }
  .footer-cols { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; gap: 14px; }
}
/* ══════════════════════════════════════════════════════
   FOOTER — komplett
══════════════════════════════════════════════════════ */
.site-footer {
  background: #f5f5f7;
  border-top: 1px solid var(--border);
  margin-top: 80px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 0;
}

/* Spalten */
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-col-brand {
  padding-right: 24px;
}

/* Logo */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  text-decoration: none;
}
.footer-logo svg { width: 28px; height: 28px; }

/* Tagline */
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Kontakt-Liste */
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.footer-contact li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--muted);
}
.footer-contact li a {
  color: var(--muted);
  transition: color 0.15s;
}
.footer-contact li a:hover { color: var(--blue); }

/* Überschriften */
.footer-heading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text);
  margin-bottom: 16px;
}

/* Links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links li a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links li a:hover { color: var(--blue); }
.footer-link-highlight {
  color: var(--text) !important;
  font-weight: 500;
}
.footer-badge {
  display: inline-block;
  background: rgba(0,113,227,0.1);
  color: var(--blue);
  font-size: 11px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 4px;
}

/* ══ EU-WIDERRUFSBUTTON ══════════════════════════════ */
.footer-widerruf {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.footer-widerruf-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff2f2;
  border: 1.5px solid #ffb3b3;
  border-radius: 14px;
  padding: 16px 24px;
  flex-wrap: wrap;
}
.footer-widerruf-text {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.footer-widerruf-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.footer-widerruf-text div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-widerruf-text strong {
  font-size: 14px;
  font-weight: 700;
  color: #d70015;
}
.footer-widerruf-text span {
  font-size: 13px;
  color: #7a0010;
  line-height: 1.5;
}
.footer-widerruf-text span strong {
  font-size: inherit;
  color: #d70015;
}
.footer-widerruf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #d70015;
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.15s;
}
.footer-widerruf-btn:hover {
  background: #b3000f;
  transform: scale(1.02);
}

/* ══ BOTTOM BAR ══════════════════════════════════════ */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom-sep {
  color: var(--border);
}
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-payments {
  display: flex;
  gap: 8px;
}
.payment-icon {
  font-size: 20px;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.payment-icon:hover { opacity: 1; }

/* ══ COOKIE-BANNER ══════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(29,29,31,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #f5f5f7;
  padding: 20px 28px;
  border-radius: 18px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  z-index: 9000;
  max-width: 820px;
  width: calc(100% - 48px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}
.cookie-text {
  flex: 1;
  font-size: 13px;
  line-height: 1.6;
}
.cookie-text strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.cookie-text span {
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 4px;
}
.cookie-text a {
  color: var(--blue);
  font-size: 13px;
}
.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn-ghost {
  padding: 10px 18px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.15s;
}
.cookie-btn-ghost:hover { background: rgba(255,255,255,0.14); }
.cookie-btn-accept {
  padding: 10px 18px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.15s;
}
.cookie-btn-accept:hover { background: var(--blue-h); }

/* ══ RESPONSIVE ═════════════════════════════════════ */
@media (max-width: 960px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-col-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
  }
  .footer-contact { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
  .footer-col-brand { grid-column: 1; }
  .footer-widerruf-inner { flex-direction: column; text-align: center; }
  .footer-widerruf-text { flex-direction: column; align-items: center; text-align: center; }
  .footer-widerruf-btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cookie-banner { flex-direction: column; gap: 16px; }
  .cookie-actions { flex-direction: row; width: 100%; }
  .cookie-btn-ghost,
  .cookie-btn-accept { flex: 1; text-align: center; }
}
/* ══════════════════════════════════════════════════════
   BUGFIX: Footer Kontakt SVG-Icons — fixe Größe
══════════════════════════════════════════════════════ */
.footer-contact li svg {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  min-height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--muted);
  display: block;
}
