/* ============================================================
   MoTis RetroRenner – Stylesheet
   ============================================================ */
:root {
  --bg:         #faf8f4;
  --surface:    #ffffff;
  --surface2:   #f4f0e9;
  --border:     #e8e1d4;
  --text:       #201c16;
  --muted:      #766f63;
  --accent:     #e8672c;
  --accent-rgb: 232, 103, 44;
  --accent2:    #1a56db;
  --accent2-rgb: 26, 86, 219;
  --danger:     #dc2626;
  --success:    #1a9e5c;
  --success-rgb: 26, 158, 92;
  --radius:     10px;
  --radius-lg:  22px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ───────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  display: flex; align-items: center; gap: 2px;
  height: 76px; overflow-x: auto;
}
.nav-logo {
  font-size: 1.05rem; font-weight: 700; color: var(--text);
  margin-right: 28px; letter-spacing: -0.3px;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center;
}
.nav-logo span { color: var(--accent); }
.nav-logo-img { height: 51px; width: auto; display: block; }
.nav-btn {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-family: 'Inter', sans-serif;
  font-size: .84rem; font-weight: 500;
  padding: 6px 11px; border-radius: 6px; transition: all .15s;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
}
.nav-btn:hover { background: var(--surface2); color: var(--text); }
.nav-btn.active { color: var(--accent); background: rgba(var(--accent-rgb),.07); }
.nav-badge {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 5px; padding: 3px 9px;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase; color: var(--accent);
}
.nav-whatsapp {
  margin-left: auto; flex-shrink: 0;
  display: flex; align-items: center; gap: 6px;
  background: var(--success); color: #fff; text-decoration: none;
  font-size: .8rem; font-weight: 600; letter-spacing: -0.1px;
  padding: 8px 14px; border-radius: 20px; transition: all .15s; white-space: nowrap;
}
.nav-whatsapp:hover { background: #157d4a; transform: translateY(-1px); }
.nav-whatsapp svg { flex-shrink: 0; }

/* ── CONTAINER ──────────────────────────────────────── */
.container {
  max-width: 1020px; margin: 0 auto;
  padding: 40px 24px 80px;
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  padding: 72px 24px 52px; text-align: center;
  max-width: 1020px; margin: 0 auto;
}
.hero-label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--accent); display: inline-block; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700;
  line-height: 1.15; letter-spacing: -0.8px; margin-bottom: 18px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p { font-size: 1.05rem; color: var(--muted); max-width: 520px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── HERO MEDIA (Startseite) ───────────────────────── */
.hero-media {
  position: relative; max-width: 1160px; margin: 18px auto 0; padding: 0 20px;
}
.hero-media-inner {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 360px; display: flex; align-items: flex-end;
  background: linear-gradient(135deg,#2a2620,#1a1712);
}
.hero-media-inner img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .78;
}
.hero-media-inner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,12,.05) 0%, rgba(20,17,12,.55) 65%, rgba(20,17,12,.85) 100%);
}
.hero-media-content {
  position: relative; z-index: 2; padding: 32px 40px 34px; color: #fff; width: 100%;
}
.hero-media-label {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.14); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25); color: #fff;
  font-size: .74rem; font-weight: 600; letter-spacing: .4px;
  padding: 6px 13px; border-radius: 20px; margin-bottom: 18px;
}
.hero-media-content h1 {
  font-size: clamp(2rem, 4.6vw, 3.1rem); font-weight: 800; line-height: 1.08;
  letter-spacing: -1px; margin-bottom: 14px; max-width: 640px;
}
.hero-media-content h1 em { font-style: normal; color: #ffb088; }
.hero-media-content p {
  font-size: 1.02rem; color: rgba(255,255,255,.88); max-width: 480px;
  margin-bottom: 26px; line-height: 1.6;
}
.hero-media-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-white {
  background: #fff; color: var(--text); border: none; border-radius: 8px;
  padding: 12px 24px; font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: .9rem; cursor: pointer; transition: all .15s; text-decoration: none; display: inline-block;
}
.btn-white:hover { background: #f0efec; transform: translateY(-1px); }
.btn-outline-white {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.55);
  color: #fff; border-radius: 8px; padding: 11px 22px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .9rem;
  cursor: pointer; transition: all .15s; text-decoration: none; display: inline-block;
}
.btn-outline-white:hover { background: rgba(255,255,255,.18); }

/* ── TRUST BAR ──────────────────────────────────────── */
.trust-bar {
  max-width: 1160px; margin: 28px auto 0; padding: 0 20px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px;
}
.trust-item {
  display: flex; align-items: center; gap: 11px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 15px 16px;
}
.trust-item .trust-icon {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: rgba(var(--accent-rgb),.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.trust-item .trust-icon svg { width: 18px; height: 18px; }
.trust-item-text { font-size: .82rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.trust-item-text small { display: block; font-size: .72rem; font-weight: 400; color: var(--muted); margin-top: 1px; }

/* ── CATEGORY TILES ─────────────────────────────────── */
.category-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.category-tile {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  overflow: hidden; text-decoration: none; display: block; background: var(--surface2);
}
.category-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.category-tile:hover img { transform: scale(1.06); }
.category-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,12,0) 35%, rgba(20,17,12,.78) 100%);
}
.category-tile-label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 16px 16px 18px; color: #fff;
}
.category-tile-name { font-size: 1rem; font-weight: 700; letter-spacing: -0.2px; }
.category-tile-count { font-size: .74rem; color: rgba(255,255,255,.82); margin-top: 2px; }

/* ── FEATURED BIKES STRIP ───────────────────────────── */
.featured-strip { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x proximity; }
.featured-strip .bike-card { min-width: 300px; max-width: 320px; flex-shrink: 0; scroll-snap-align: start; }
.featured-strip::-webkit-scrollbar { height: 6px; }
.featured-strip::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── FLOATING WHATSAPP (sitebreit, via footer.html eingebunden) ─── */
.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 150;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--success); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.22); text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.floating-whatsapp:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 8px 22px rgba(0,0,0,.28); }
.floating-whatsapp svg { width: 27px; height: 27px; }
@media (max-width: 640px) { .floating-whatsapp { right: 14px; bottom: 14px; width: 50px; height: 50px; } }

/* ── WHY-US STRIP ───────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.why-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.why-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(var(--accent-rgb),.1); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.why-icon svg { width: 20px; height: 20px; }
.why-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.why-card p { font-size: .84rem; color: var(--muted); line-height: 1.6; }

/* ── ABOUT TEASER (Startseite) ──────────────────────── */
.about-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.about-teaser-img { position: relative; align-self: stretch; min-height: 280px; }
.about-teaser-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-teaser-text { padding: 8px 36px 8px 0; }
.about-teaser-text .label { margin-bottom: 10px; }
.about-teaser-text h2 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.4px; margin-bottom: 12px; }
.about-teaser-text p { font-size: .92rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

/* ── CTA BANNER ─────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--text), #362f24);
  border-radius: var(--radius-lg); padding: 40px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  color: #fff;
}
.cta-banner h2 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,.75); font-size: .9rem; }
.cta-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  background: var(--accent); color: #fff;
  border: none; border-radius: 7px; padding: 10px 22px;
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: .88rem; cursor: pointer; transition: all .15s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: #1447c0; }
.btn-ghost {
  background: transparent; border: 1px solid var(--border);
  color: var(--text); border-radius: 7px; padding: 9px 20px;
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: .88rem; cursor: pointer; transition: all .15s;
  text-decoration: none; display: inline-block;
}
.btn-ghost:hover { border-color: var(--text); }
.btn-save {
  background: var(--accent); color: #fff; border: none; border-radius: 7px;
  padding: 10px 22px; font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: .9rem; cursor: pointer; transition: all .15s;
}
.btn-save:hover { background: #1447c0; }
.btn-danger {
  background: transparent; border: 1px solid var(--border); color: var(--muted);
  border-radius: 7px; padding: 9px 18px; font-family: 'Inter', sans-serif;
  font-weight: 500; font-size: .88rem; cursor: pointer; transition: all .15s; margin-left: auto;
}
.btn-danger:hover { border-color: var(--danger); color: var(--danger); }

/* ── STATS ──────────────────────────────────────────── */
.stats-bar {
  max-width: 1020px; margin: 0 auto 52px; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px;
}
.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 22px; text-align: center;
}
.stat-val { font-size: 1.85rem; font-weight: 700; color: var(--accent); letter-spacing: -0.5px; }
.stat-lbl { font-size: .7rem; color: var(--muted); font-weight: 500; letter-spacing: .3px; text-transform: uppercase; margin-top: 4px; }

/* ── LABELS ─────────────────────────────────────────── */
.label {
  font-size: .72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.section-title { font-size: 1.75rem; font-weight: 700; letter-spacing: -0.4px; }

/* ── FILTER CHIPS ───────────────────────────────────── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.chip {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--muted); border-radius: 6px; padding: 5px 14px;
  font-size: .82rem; font-weight: 500; cursor: pointer; transition: all .15s;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.active { border-color: var(--accent); color: var(--accent); background: rgba(var(--accent-rgb),.06); }

/* ── FILTER TOOLBAR (Preis + Größen-Guide-Link) ────────── */
.filter-toolbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.price-filter { display: flex; align-items: flex-end; gap: 10px; flex-wrap: wrap; }
.price-filter .form-field { min-width: 110px; }
.price-filter input { width: 100px; }
.price-filter-sep { color: var(--muted); padding-bottom: 9px; }
.size-guide-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 600; color: var(--accent);
  text-decoration: none; white-space: nowrap;
}
.size-guide-link:hover { text-decoration: underline; }

/* ── GRÖSSENRECHNER (Ratgeber) ─────────────────────────── */
.groessen-rechner { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 28px; margin: 20px 0 32px; }
.groessen-rechner h2 { font-size: 1.15rem; font-weight: 700; margin: 0 0 8px; }
.rechner-inputs { display: flex; align-items: flex-end; gap: 14px; flex-wrap: wrap; }
.rechner-inputs .form-field { min-width: 160px; flex: 1; margin-bottom: 0; }
.rechner-result-box { background: var(--surface2); border-radius: 10px; padding: 18px 20px; margin-top: 18px; }
.rechner-result-label { font-size: .72rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.rechner-result-val { font-size: 1.6rem; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
.rechner-result-val span { font-size: 1rem; font-weight: 500; color: var(--text); }
.rechner-result-box p { font-size: .86rem; color: var(--muted); line-height: 1.6; margin: 0 0 14px; }

/* ── BIKE CARDS ─────────────────────────────────────── */
.bike-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 16px; }
.bike-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .15s, box-shadow .15s; display: flex; flex-direction: column;
}
.bike-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.bike-img-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--surface2); }
.bike-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.bike-card:hover .bike-img-wrap img { transform: scale(1.03); }
.bike-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--accent); color: #fff;
  font-size: .65rem; font-weight: 600; letter-spacing: .8px; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px;
}
.bike-badge.sold { background: var(--danger); }
.bike-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.bike-name { font-size: 1rem; font-weight: 600; margin-bottom: 4px; line-height: 1.3; letter-spacing: -0.1px; }
.bike-meta { font-size: .8rem; color: var(--muted); margin-bottom: 12px; }
.bike-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-bottom: 14px; }
.spec-item { background: var(--surface2); border-radius: 5px; padding: 6px 9px; }
.spec-key { font-size: .62rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 1px; }
.spec-val { font-size: .8rem; font-weight: 500; color: var(--text); }
.bike-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.bike-price { font-size: 1.35rem; font-weight: 700; color: var(--text); letter-spacing: -0.3px; }
.bike-price small { font-size: .72rem; color: var(--muted); font-weight: 400; display: block; }
.buy-btn {
  background: var(--accent); color: #fff; border: none; border-radius: 6px;
  padding: 7px 14px; font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: .8rem; cursor: pointer; transition: all .15s;
}
.buy-btn:hover { background: #1447c0; }
.buy-btn:disabled { background: var(--surface2); color: var(--muted); cursor: not-allowed; }

/* ── LOADING / EMPTY ────────────────────────────────── */
.loading { text-align: center; padding: 60px 0; color: var(--muted); font-size: .95rem; }
.loading-spinner {
  width: 32px; height: 32px; border: 2px solid var(--border);
  border-top-color: var(--accent); border-radius: 50%;
  animation: spin .8s linear infinite; margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.empty { text-align: center; padding: 80px 0; color: var(--muted); }
.empty .icon { font-size: 2.5rem; margin-bottom: 14px; opacity: .25; }

/* ── REVIEWS ────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 14px; margin-bottom: 40px; }
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
}
.review-stars { color: #d97706; font-size: .95rem; margin-bottom: 10px; letter-spacing: 1px; }
.review-text { font-size: .88rem; color: var(--text); line-height: 1.65; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.review-name { font-weight: 600; font-size: .85rem; }
.review-date { font-size: .75rem; color: var(--muted); }
.review-product { font-size: .72rem; color: var(--muted); margin-top: 1px; }
.rating-summary { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; gap: 32px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.rating-big { text-align: center; flex-shrink: 0; }
.rating-num { font-size: 3.2rem; font-weight: 700; color: var(--text); line-height: 1; letter-spacing: -1px; }
.rating-stars-big { color: #d97706; font-size: 1rem; letter-spacing: 2px; margin: 6px 0; }
.rating-count { font-size: .78rem; color: var(--muted); }
.rating-bars { flex: 1; min-width: 200px; }
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.rating-row-lbl { font-size: .78rem; color: var(--muted); width: 16px; text-align: right; flex-shrink: 0; }
.rating-bar-track { flex: 1; height: 5px; background: var(--surface2); border-radius: 3px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: #d97706; border-radius: 3px; }
.rating-row-pct { font-size: .75rem; color: var(--muted); width: 30px; flex-shrink: 0; }

/* ── FORMS ──────────────────────────────────────────── */
.star-picker { display: flex; gap: 4px; }
.star-picker span { font-size: 1.4rem; cursor: pointer; transition: color .1s; color: var(--border); }
.star-picker span:hover, .star-picker span.lit { color: #d97706; }
.review-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-top: 28px; }
.form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-field label { font-size: .72rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
input, textarea, select {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-family: 'Inter', sans-serif;
  padding: 9px 12px; border-radius: 6px; font-size: .9rem;
  outline: none; transition: border-color .15s; width: 100%;
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); }
input::placeholder, textarea::placeholder { color: #c0bfbb; }
select option { background: var(--surface); }
textarea { resize: vertical; min-height: 90px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── INZAHLUNGNAHME ─────────────────────────────────── */
.trade-hero { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; margin-bottom: 24px; }
.trade-hero-inner { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.trade-hero-text { flex: 1; min-width: 240px; }
.trade-hero-text h2 { font-size: 1.8rem; font-weight: 700; letter-spacing: -0.4px; margin-bottom: 10px; }
.trade-hero-text p { color: var(--muted); font-size: .92rem; line-height: 1.7; margin-bottom: 20px; }
.trade-steps { flex: 1; min-width: 240px; display: grid; gap: 10px; }
.trade-step { background: var(--surface2); border-radius: 7px; padding: 13px; display: flex; gap: 12px; align-items: flex-start; }
.trade-step-num { font-size: 1.05rem; font-weight: 700; color: var(--accent); line-height: 1; flex-shrink: 0; min-width: 20px; }
.trade-step-text { font-size: .84rem; color: var(--muted); line-height: 1.5; }
.trade-step-text strong { color: var(--text); display: block; margin-bottom: 2px; }
.trade-form-section { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.condition-picker { display: grid; grid-template-columns: repeat(auto-fit,minmax(130px,1fr)); gap: 8px; margin-top: 8px; }

/* ── FOTO-UPLOAD (Inzahlungnahme) ──────────────────────── */
.photo-upload-box {
  border: 2px dashed var(--border); border-radius: var(--radius);
  padding: 22px; text-align: center; cursor: pointer; transition: border-color .15s, background .15s;
  background: var(--surface2);
}
.photo-upload-box:hover, .photo-upload-box.dragover { border-color: var(--accent); background: rgba(var(--accent-rgb),.05); }
.photo-upload-box input[type=file] { display: none; }
.photo-upload-icon { color: var(--muted); margin-bottom: 8px; }
.photo-upload-text { font-size: .88rem; font-weight: 600; color: var(--text); }
.photo-upload-hint { font-size: .76rem; color: var(--muted); margin-top: 4px; }
.photo-preview-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(84px,1fr)); gap: 8px; margin-top: 12px; }
.photo-thumb { position: relative; aspect-ratio: 1; border-radius: 8px; overflow: hidden; background: var(--surface2); border: 1px solid var(--border); }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.photo-thumb-remove {
  position: absolute; top: 4px; right: 4px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(20,17,12,.7); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: .8rem; line-height: 1;
}
.photo-upload-error { font-size: .8rem; color: var(--danger); margin-top: 8px; }

/* ── GOOGLE MAPS EMBED ──────────────────────────────────── */
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-top: 14px; }
.map-embed iframe { width: 100%; height: 260px; display: block; border: 0; }
.condition-option { background: var(--surface2); border: 1px solid var(--border); border-radius: 7px; padding: 12px; cursor: pointer; transition: all .15s; text-align: center; }
.condition-option:hover, .condition-option.selected { border-color: var(--accent); background: rgba(var(--accent-rgb),.05); }
.condition-option .cond-name { font-size: .82rem; font-weight: 600; margin-bottom: 2px; }
.condition-option .cond-desc { font-size: .72rem; color: var(--muted); }
.estimate-box { background: var(--surface2); border: 1px solid rgba(var(--accent-rgb),.25); border-radius: var(--radius); padding: 22px; margin-top: 20px; display: none; }
.estimate-box.show { display: block; }
.estimate-range { font-size: 1.9rem; font-weight: 700; color: var(--accent); letter-spacing: -0.5px; margin: 8px 0; }
.estimate-note { font-size: .8rem; color: var(--muted); line-height: 1.5; }

/* ── ERSATZTEILE ────────────────────────────────────── */
.parts-categories { display: grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); gap: 10px; margin-bottom: 28px; }
.part-cat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; text-align: center; cursor: pointer; transition: all .15s; }
.part-cat:hover, .part-cat.active { border-color: var(--accent); background: rgba(var(--accent-rgb),.04); }
.part-cat-name { font-size: .82rem; font-weight: 600; margin-bottom: 2px; }
.part-cat-count { font-size: .72rem; color: var(--muted); }
.parts-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 12px; }
.part-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .15s; }
.part-card:hover { box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.part-img { position: relative; width: 100%; aspect-ratio: 4/3; background: var(--surface2); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: var(--muted); overflow: hidden; }
.part-img img { width: 100%; height: 100%; object-fit: cover; }
.part-body { padding: 13px; }
.part-name { font-weight: 600; font-size: .9rem; margin-bottom: 2px; }
.part-brand { font-size: .75rem; color: var(--muted); margin-bottom: 8px; }
.part-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 10px; }
.part-tag { background: var(--surface2); border: 1px solid var(--border); border-radius: 4px; padding: 2px 7px; font-size: .68rem; color: var(--muted); }
.part-footer { display: flex; align-items: center; justify-content: space-between; }
.part-price { font-size: 1.05rem; font-weight: 700; color: var(--text); letter-spacing: -0.2px; }
.part-btn { background: var(--surface2); border: 1px solid var(--border); color: var(--text); border-radius: 6px; padding: 5px 11px; font-family: 'Inter', sans-serif; font-weight: 500; font-size: .76rem; cursor: pointer; transition: all .15s; }
.part-btn:hover { border-color: var(--accent); color: var(--accent); }
.cart-badge { position: fixed; bottom: 24px; right: 24px; z-index: 150; background: var(--accent); color: #fff; border: none; border-radius: 7px; padding: 10px 18px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: .84rem; cursor: pointer; display: none; align-items: center; gap: 8px; box-shadow: 0 4px 20px rgba(var(--accent-rgb),.3); transition: all .15s; }
.cart-badge:hover { background: #1447c0; }
.cart-badge.visible { display: flex; }

/* ── KONFIGURATOR ───────────────────────────────────── */
.konfig-layout { display: grid; grid-template-columns: 1fr 320px; gap: 20px; align-items: start; }
.konfig-steps { display: flex; flex-direction: column; gap: 10px; }
.konfig-step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.konfig-step-header { padding: 14px 18px; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: background .15s; user-select: none; }
.konfig-step-header:hover { background: var(--surface2); }
.konfig-step-num { width: 26px; height: 26px; border-radius: 50%; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.konfig-step-num.done { background: rgba(var(--accent-rgb),.1); border-color: var(--accent); }
.konfig-step-title { font-weight: 600; font-size: .9rem; flex: 1; }
.konfig-step-chosen { font-size: .8rem; color: var(--accent); font-weight: 500; }
.konfig-step-body { padding: 0 18px 18px; display: none; }
.konfig-step.open .konfig-step-body { display: block; }
.konfig-options { display: grid; grid-template-columns: repeat(auto-fit,minmax(120px,1fr)); gap: 8px; margin-top: 10px; }
.konfig-opt { background: var(--surface2); border: 1px solid var(--border); border-radius: 7px; padding: 11px 10px; cursor: pointer; transition: all .15s; text-align: center; }
.konfig-opt:hover, .konfig-opt.selected { border-color: var(--accent); background: rgba(var(--accent-rgb),.06); }
.konfig-opt-name { font-size: .78rem; font-weight: 600; margin-bottom: 1px; }
.konfig-opt-detail { font-size: .68rem; color: var(--muted); }
.konfig-opt-price { font-size: .72rem; color: var(--accent); margin-top: 3px; font-weight: 600; }
.color-swatch { width: 28px; height: 28px; border-radius: 50%; margin: 0 auto 5px; border: 2px solid transparent; transition: all .15s; }
.konfig-opt.selected .color-swatch { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(var(--accent-rgb),.2); }
.summary-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; position: sticky; top: 76px; }
.summary-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.2px; }
.summary-visual { background: var(--surface2); border-radius: 7px; padding: 22px; text-align: center; margin-bottom: 16px; min-height: 110px; display: flex; align-items: center; justify-content: center; flex-direction: column; }
.summary-bike-label { font-size: .75rem; color: var(--muted); margin-top: 6px; }
.summary-rows { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 10px; background: var(--surface2); border-radius: 6px; font-size: .82rem; }
.summary-row-key { color: var(--muted); }
.summary-row-val { font-weight: 600; }
.summary-row-val.accent { color: var(--accent); }
.summary-total { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-top: 1px solid var(--border); margin-bottom: 14px; }
.summary-total-lbl { font-weight: 600; font-size: .9rem; }
.summary-total-val { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.5px; }
.summary-note { font-size: .75rem; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.konfig-progress { display: flex; gap: 3px; margin-bottom: 14px; }
.konfig-progress-dot { height: 3px; flex: 1; border-radius: 2px; background: var(--surface2); transition: background .3s; }
.konfig-progress-dot.done { background: var(--accent); }

/* ── CART DRAWER ────────────────────────────────────── */
.cart-drawer { position: fixed; right: -400px; top: 0; bottom: 0; width: 360px; background: var(--surface); border-left: 1px solid var(--border); z-index: 250; transition: right .3s; padding: 24px; display: flex; flex-direction: column; overflow-y: auto; box-shadow: -4px 0 24px rgba(0,0,0,.08); }
.cart-drawer.open { right: 0; }
.cart-drawer-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; }
.cart-items { flex: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.cart-item { background: var(--surface2); border: 1px solid var(--border); border-radius: 7px; padding: 11px; display: flex; gap: 12px; align-items: center; }
.cart-item-name { font-size: .84rem; font-weight: 600; flex: 1; }
.cart-item-price { font-size: .9rem; font-weight: 700; }
.cart-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: .85rem; padding: 4px; transition: color .15s; }
.cart-remove:hover { color: var(--danger); }
.cart-empty { color: var(--muted); font-size: .88rem; text-align: center; padding: 40px 0; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-top: 1px solid var(--border); margin-bottom: 14px; }
.cart-total-lbl { font-weight: 600; }
.cart-total-val { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.3px; }

/* ── MODAL ──────────────────────────────────────────── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.35); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; max-width: 440px; width: 100%; position: relative; max-height: 90vh; overflow-y: auto; box-shadow: 0 8px 40px rgba(0,0,0,.1); }
.modal-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 5px; letter-spacing: -0.3px; }
.modal-sub { font-size: .85rem; color: var(--muted); margin-bottom: 20px; }
.modal-close { position: absolute; top: 14px; right: 14px; background: none; border: 1px solid var(--border); color: var(--muted); width: 28px; height: 28px; border-radius: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: .8rem; transition: all .15s; }
.modal-close:hover { border-color: var(--text); color: var(--text); }
.modal-bike-row { background: var(--surface2); border: 1px solid var(--border); border-radius: 7px; padding: 13px; display: flex; gap: 13px; align-items: center; margin-bottom: 18px; }
.modal-bike-img { width: 68px; height: 48px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.modal-bike-name { font-weight: 600; font-size: .9rem; margin-bottom: 2px; }
.modal-bike-price { font-size: 1.05rem; font-weight: 700; }
.pay-options { display: grid; gap: 7px; margin-bottom: 16px; }
.pay-option { background: var(--surface2); border: 1px solid var(--border); border-radius: 7px; padding: 10px 13px; display: flex; align-items: center; gap: 11px; cursor: pointer; transition: all .15s; }
.pay-option:hover, .pay-option.selected { border-color: var(--accent); background: rgba(var(--accent-rgb),.05); }
.pay-option-name { font-weight: 600; font-size: .85rem; }
.pay-option-desc { font-size: .74rem; color: var(--muted); }
.modal-confirm { background: var(--accent); color: #fff; border: none; border-radius: 7px; padding: 11px; width: 100%; font-family: 'Inter', sans-serif; font-weight: 600; font-size: .9rem; cursor: pointer; transition: all .15s; }
.modal-confirm:hover { background: #c85220; }

/* ── BIKE DETAIL LIGHTBOX (in-place, keine URL-Änderung) ── */
.lightbox-overlay { display: none; position: fixed; inset: 0; z-index: 300; background: rgba(20,17,12,.6); backdrop-filter: blur(5px); align-items: flex-start; justify-content: center; padding: 32px 16px; overflow-y: auto; }
.lightbox-overlay.open { display: flex; }
.lightbox { background: var(--surface); border-radius: var(--radius-lg); max-width: 880px; width: 100%; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,.3); overflow: hidden; margin: auto 0; }
.lightbox-close { position: absolute; top: 16px; right: 16px; z-index: 5; background: rgba(20,17,12,.55); color: #fff; border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: .95rem; transition: all .15s; }
.lightbox-close:hover { background: rgba(20,17,12,.8); }
.lightbox-grid { display: grid; grid-template-columns: 1fr 1fr; }
.lightbox-media { position: relative; background: var(--surface2); min-height: 320px; }
.lightbox-media-main { width: 100%; height: 100%; min-height: 320px; object-fit: contain; background: var(--surface2); display: block; }
.lightbox-thumbs { position: absolute; bottom: 12px; left: 12px; right: 12px; display: flex; gap: 6px; }
.lightbox-thumbs img { width: 44px; height: 32px; object-fit: cover; border-radius: 5px; cursor: pointer; border: 2px solid rgba(255,255,255,.7); opacity: .75; transition: all .15s; }
.lightbox-thumbs img:hover, .lightbox-thumbs img.active { opacity: 1; border-color: #fff; }
.lightbox-badge { position: absolute; top: 16px; left: 16px; background: var(--accent); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 4px 10px; border-radius: 5px; z-index: 2; }
.lightbox-body { padding: 30px 32px 32px; display: flex; flex-direction: column; max-height: 80vh; overflow-y: auto; }
.lightbox-name { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.4px; margin-bottom: 4px; line-height: 1.2; }
.lightbox-price { font-size: 1.7rem; font-weight: 800; color: var(--accent); letter-spacing: -0.5px; margin-bottom: 16px; }
.lightbox-desc { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.lightbox-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 24px; }
.lightbox-spec { background: var(--surface2); border-radius: 7px; padding: 9px 12px; }
.lightbox-spec .spec-key { font-size: .64rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 2px; }
.lightbox-spec .spec-val { font-size: .84rem; font-weight: 600; color: var(--text); }
.lightbox-actions { display: grid; gap: 9px; margin-top: auto; }
.lightbox-note { font-size: .76rem; color: var(--muted); text-align: center; margin-top: 10px; }
.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--success); color: #fff; border: none; border-radius: 8px;
  padding: 13px; font-family: 'Inter', sans-serif; font-weight: 700; font-size: .92rem;
  cursor: pointer; transition: all .15s; text-decoration: none;
}
.btn-whatsapp:hover { background: #157d4a; }
.btn-email {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--surface2); color: var(--text); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: .88rem;
  cursor: pointer; transition: all .15s; text-decoration: none;
}
.btn-email:hover { border-color: var(--text); }
.bike-card { cursor: pointer; }
.bike-card .buy-btn { position: relative; z-index: 2; }

/* ── CONTACT ────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.contact-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.contact-line { font-size: .88rem; color: var(--muted); margin-bottom: 5px; }
.contact-line strong { color: var(--text); }
.contact-form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; grid-column: 1 / -1; }

/* ── PAYMENT ────────────────────────────────────────── */
.payment-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 12px; margin-top: 18px; }
.payment-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.payment-name { font-weight: 600; font-size: .86rem; margin-bottom: 3px; }
.payment-desc { font-size: .76rem; color: var(--muted); }

/* ── FEATURE TILES ──────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 14px; }
.feature-tile { cursor: pointer; transition: box-shadow .15s; }
.feature-tile:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); }

/* ── TOAST ──────────────────────────────────────────── */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px); z-index: 500; background: var(--text); color: #fff; border-radius: 7px; padding: 10px 18px; display: flex; align-items: center; gap: 8px; font-size: .84rem; font-weight: 500; opacity: 0; transition: all .3s cubic-bezier(.34,1.56,.64,1); pointer-events: none; white-space: nowrap; max-width: 90vw; box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }

/* ── FOOTER ─────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 40px 32px; background: var(--surface); }
.footer-inner { max-width: 1020px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start; }
.footer-brand { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; letter-spacing: -0.2px; }
.footer-brand span { color: var(--accent); }
.footer-brand-img { height: 30px; width: auto; display: block; }
.footer-tagline { font-size: .82rem; color: var(--muted); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: flex-end; align-items: center; }
.footer-links a { font-size: .82rem; color: var(--muted); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { max-width: 1020px; margin: 20px auto 0; padding-top: 20px; border-top: 1px solid var(--border); font-size: .76rem; color: var(--muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--text); }
.footer-whatsapp { display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; font-size: .82rem; font-weight: 600; color: var(--success); text-decoration: none; }
.footer-whatsapp:hover { text-decoration: underline; }
.footer-credit { max-width: 1020px; margin: 14px auto 0; font-size: .74rem; color: var(--muted); text-align: center; }
.footer-credit a { color: var(--muted); font-weight: 600; text-decoration: none; }
.footer-credit a:hover { color: var(--accent); }

/* ── LEGAL PAGES ────────────────────────────────────── */
.legal-content { max-width: 700px; margin: 0 auto; padding: 40px 24px 80px; }
.legal-content h1 { font-size: 1.75rem; font-weight: 700; letter-spacing: -0.4px; margin-bottom: 6px; }
.legal-date { font-size: .8rem; color: var(--muted); margin-bottom: 40px; display: block; }
.legal-content h2 { font-size: 1rem; font-weight: 700; margin: 30px 0 8px; color: var(--text); }
.legal-content h3 { font-size: .92rem; font-weight: 600; margin: 18px 0 6px; }
.legal-content p { font-size: .88rem; color: var(--muted); line-height: 1.8; margin-bottom: 10px; }
.legal-content a { color: var(--accent); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content ul { padding-left: 18px; margin-bottom: 10px; }
.legal-content ul li { font-size: .88rem; color: var(--muted); line-height: 1.75; }

/* ── ABOUT US ───────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 32px 0; }
.about-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.about-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.about-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 14px; margin: 28px 0; }
.team-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.team-avatar { width: 100%; max-width: 220px; aspect-ratio: 1 / 1; background: rgba(var(--accent-rgb),.08); border: 1px solid rgba(var(--accent-rgb),.2); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 700; color: var(--accent); margin-bottom: 16px; overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-hero { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 260px; margin-bottom: 36px; display: flex; align-items: flex-end; }
.about-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,17,12,.05) 30%, rgba(20,17,12,.75) 100%); }
.about-hero-content { position: relative; z-index: 2; padding: 30px 32px; color: #fff; }
.about-hero-content .label { color: #ffd8c2; }
.about-hero-content h1 { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.5px; }
.team-name { font-weight: 700; font-size: .95rem; margin-bottom: 3px; }
.team-role { font-size: .75rem; color: var(--accent); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }
.team-bio { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ── ADMIN ──────────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 300px 1fr; gap: 20px; max-width: 1200px; margin: 0 auto; padding: 28px 20px 80px; }
.artikel-list { display: flex; flex-direction: column; gap: 7px; }
.artikel-item { background: var(--surface); border: 1px solid var(--border); border-radius: 7px; padding: 11px 13px; cursor: pointer; transition: all .15s; display: flex; align-items: center; gap: 11px; }
.artikel-item:hover { border-color: #c0c0bc; }
.artikel-item.active { border-color: var(--accent); background: rgba(var(--accent-rgb),.04); }
.artikel-thumb { width: 42px; height: 42px; border-radius: 6px; background: var(--surface2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .7rem; color: var(--muted); overflow: hidden; font-weight: 600; }
.artikel-thumb img { width: 100%; height: 100%; object-fit: cover; }
.artikel-info { flex: 1; min-width: 0; }
.artikel-title { font-size: .88rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.artikel-price { font-size: .76rem; color: var(--muted); margin-top: 2px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; background: var(--success); }
.status-dot.inactive { background: var(--border); }
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.panel-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 22px; letter-spacing: -0.3px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
input[type=text], input[type=number], input[type=url] { width: 100%; }
.upload-area { border: 2px dashed var(--border); border-radius: 8px; padding: 26px; text-align: center; cursor: pointer; transition: all .15s; background: var(--surface2); }
.upload-area:hover, .upload-area.drag { border-color: var(--accent); }
.upload-icon { font-size: 1.5rem; margin-bottom: 6px; opacity: .35; }
.upload-text { font-size: .86rem; color: var(--muted); }
.upload-text strong { color: var(--accent); }
.preview-img { width: 100%; max-height: 200px; object-fit: contain; border-radius: 7px; margin-top: 12px; display: none; }
.merkmale-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.merkmal-row { background: var(--surface2); border: 1px solid var(--border); border-radius: 7px; padding: 11px; display: flex; flex-direction: column; gap: 5px; }
.merkmal-row input { font-size: .82rem; padding: 6px 9px; }
.merkmal-row .merkmal-label-input { font-size: .72rem; font-weight: 600; letter-spacing: .3px; color: var(--accent); text-transform: uppercase; }
.merkmal-label-fixed { font-size: .72rem; font-weight: 600; letter-spacing: .3px; color: var(--accent); text-transform: uppercase; padding: 1px 0 3px; display: block; }
.merkmal-hint { font-size: .65rem; color: var(--muted); margin-top: 3px; font-style: italic; }
.merkmal-pos { font-size: .65rem; color: var(--muted); letter-spacing: .6px; }
.form-actions { display: flex; gap: 10px; align-items: center; padding-top: 18px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.toggle-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.toggle { position: relative; width: 40px; height: 22px; cursor: pointer; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: var(--surface2); border: 1px solid var(--border); border-radius: 22px; transition: .25s; }
.toggle-slider::before { content: ''; position: absolute; height: 14px; width: 14px; left: 3px; bottom: 3px; background: var(--muted); border-radius: 50%; transition: .25s; }
.toggle input:checked + .toggle-slider { background: rgba(var(--accent-rgb),.15); border-color: var(--accent); }
.toggle input:checked + .toggle-slider::before { transform: translateX(18px); background: var(--accent); }
.toggle-label { font-size: .88rem; }
.admin-toast { position: fixed; bottom: 24px; right: 24px; background: var(--text); color: #fff; border-radius: 7px; padding: 12px 18px; font-size: .86rem; font-weight: 500; z-index: 300; transform: translateY(80px); opacity: 0; transition: all .25s; pointer-events: none; box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.admin-toast.show { transform: translateY(0); opacity: 1; }
.admin-toast.success { background: var(--success); }
.admin-toast.error { background: var(--danger); }
.empty-panel { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 300px; color: var(--muted); text-align: center; }
.empty-panel .icon { font-size: 2rem; margin-bottom: 14px; opacity: .2; }
.empty-panel p { font-size: .9rem; }

/* ── MOBILE NAV ─────────────────────────────────────── */
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px 4px; margin-left: auto; flex-shrink: 0;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .2s;
}

.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--surface); flex-direction: column;
  padding: 20px 28px 48px;
}
.mobile-nav-overlay.open { display: flex; }

.mobile-nav-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.mobile-nav-logo {
  font-size: 1.15rem; font-weight: 700; color: var(--text);
  letter-spacing: -0.3px; text-decoration: none;
  display: flex; align-items: center;
}
.mobile-nav-logo span { color: var(--accent); }
.mobile-nav-logo-img { height: 57px; width: auto; display: block; }
.mobile-nav-close {
  background: none; border: 1px solid var(--border); color: var(--muted);
  width: 38px; height: 38px; border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all .15s; flex-shrink: 0;
}
.mobile-nav-close:hover { border-color: var(--text); color: var(--text); }

.mobile-nav-link {
  font-size: 1.4rem; font-weight: 700; color: var(--text);
  padding: 18px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; letter-spacing: -0.3px; transition: color .15s;
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--accent); }
.mobile-nav-link::after { content: '→'; font-size: .95rem; font-weight: 400; opacity: .3; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .admin-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .merkmale-grid { grid-template-columns: 1fr; }
  .konfig-layout { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .about-teaser { grid-template-columns: 1fr; }
  .about-teaser-text { padding: 24px 28px 32px; }
  .about-teaser-img { min-height: 220px; }
  .lightbox-grid { grid-template-columns: 1fr; }
  .lightbox-media, .lightbox-media-main { min-height: 220px; }
}
@media (max-width: 640px) {
  nav { padding: 0 16px; }
  nav .nav-btn { display: none; }
  .nav-whatsapp { display: none; }
  .nav-hamburger { display: flex; }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 0 16px; }
  .bike-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-card { grid-column: 1; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 16px 36px; }
  .container { padding: 28px 16px 60px; }
  footer { padding: 28px 16px; }
  .hero-media { padding: 0 12px; }
  .hero-media-inner { min-height: 46vh; }
  .hero-media-content { padding: 20px 20px 22px; }
  .hero-media-label { font-size: .68rem; padding: 5px 11px; margin-bottom: 12px; }
  .hero-media-content h1 { font-size: 1.55rem; margin-bottom: 10px; }
  .hero-media-content p { font-size: .88rem; margin-bottom: 18px; }
  .hero-media-actions { gap: 8px; }
  .hero-media-actions .btn-white, .hero-media-actions .btn-outline-white { padding: 9px 16px; font-size: .82rem; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cta-banner { padding: 30px 24px; flex-direction: column; align-items: flex-start; }
  .lightbox-body { padding: 24px 20px 26px; }
}
