@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --bg-alt: #f7f7f7;
  --surface: #ffffff;
  --border: #dddddd;
  --border-light: #ebebeb;
  --text: #222222;
  --text-secondary: #717171;
  --brand: #ff5722;
  --brand-dark: #e64a19;
  --brand-tint: #fbe9e7;
  --black: #222222;
  --ink: #222222;
  --on-ink: #ffffff;
  --radius-card: 14px;
  --radius-btn: 8px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 6px 20px rgba(0, 0, 0, 0.14);
  --shadow-pill: 0 1px 2px rgba(0, 0, 0, 0.08), 0 3px 12px rgba(0, 0, 0, 0.08);
  --max-width: 1280px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  color: var(--brand);
}
.logo .logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}
.logo span.word { color: var(--text); font-weight: 800; }

nav.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
nav.main-nav a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
nav.main-nav a:hover, nav.main-nav a.active {
  color: var(--text);
  border-color: var(--text);
}

.header-right { display: flex; align-items: center; gap: 12px; }

.header-cta {
  background: var(--brand);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: background .15s, transform .15s;
}
.header-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }

.menu-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 8px 6px 14px;
  cursor: pointer;
  background: var(--surface);
  box-shadow: var(--shadow-pill);
  transition: box-shadow .15s;
}
.menu-pill:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.menu-pill .bars { font-size: 15px; color: var(--text); }
.menu-pill .avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: #717171;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text);
}

/* ---------- Search pill (Airbnb-style) ---------- */
.search-bar-section {
  padding: 28px 0 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
}
.search-pill {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-pill);
  padding: 6px;
}
.search-segment {
  flex: 1;
  padding: 10px 22px;
  border-right: 1px solid var(--border-light);
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: background .15s;
  min-width: 0;
}
.search-segment:last-of-type { border-right: none; }
.search-segment:hover { background: var(--bg-alt); }
.search-segment .seg-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.search-segment .seg-value {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-segment select {
  border: none;
  background: transparent;
  font-size: 13px;
  color: var(--text-secondary);
  font-family: inherit;
  width: 100%;
  padding: 0;
  cursor: pointer;
}
.search-segment select:focus { outline: none; }
.search-submit {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  align-self: center;
  transition: background .15s, transform .15s;
}
.search-submit:hover { background: var(--brand-dark); transform: scale(1.04); }

/* ---------- Category icon strip ---------- */
.category-strip {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  scrollbar-width: none;
}
.category-strip::-webkit-scrollbar { display: none; }
.cat-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex-shrink: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid transparent;
  opacity: 0.65;
  transition: opacity .15s, border-color .15s;
}
.cat-tab:hover { opacity: 1; }
.cat-tab.active { opacity: 1; border-color: var(--text); }
.cat-tab .cat-tab-icon { font-size: 22px; }
.cat-tab .cat-tab-label { font-size: 12.5px; font-weight: 600; color: var(--text); white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .1s, box-shadow .15s, background .15s;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-secondary:hover { background: var(--bg-alt); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-block { width: 100%; }
.btn-pill { border-radius: var(--radius-pill); }

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 40px;
  text-align: center;
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(15,17,21,0.55), rgba(15,17,21,0.78)),
    url('https://images.unsplash.com/photo-1770129749675-5a4b43feb7d5?q=80&w=1317&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover;
  background-position: center 65%;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
}
h1.hero-title {
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 auto 16px;
  font-weight: 800;
  max-width: 720px;
  color: #fff;
}
h1.hero-title span { color: var(--brand); }
.hero-sub {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 8px;
  max-width: 560px;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 32px 0 8px;
  flex-wrap: wrap;
}
.trust-item { text-align: center; min-width: 100px; }
.trust-num { font-size: 24px; font-weight: 800; color: #fff; }
.trust-label { font-size: 12.5px; color: rgba(255, 255, 255, 0.7); font-weight: 600; }

/* ---------- Section shells ---------- */
.section { padding: 48px 0; }
.section-alt { background: var(--bg-alt); }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: 22px;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  font-weight: 800;
}
.section-head p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14.5px;
}
.section-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  text-decoration: underline;
  white-space: nowrap;
}
.section-link:hover { color: var(--brand); }

/* ---------- Category feature cards ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.cat-card {
  display: block;
  cursor: pointer;
}
.cat-card .cat-card-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 12px;
  transition: box-shadow .15s;
}
.cat-card:hover .cat-card-media { box-shadow: var(--shadow-card-hover); }
.cat-card h4 { margin: 0 0 4px; font-size: 15px; font-weight: 700; }
.cat-card p { margin: 0; font-size: 13px; color: var(--text-secondary); }

/* ---------- Shoe cards (Airbnb listing style) ---------- */
.shoe-card {
  display: flex;
  flex-direction: column;
  cursor: default;
}
.shoe-media {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 12px;
  transition: box-shadow .15s;
}
.shoe-card:hover .shoe-media { box-shadow: var(--shadow-card-hover); }

.shoe-thumb {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  overflow: hidden;
}
.shoe-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  box-sizing: border-box;
  mix-blend-mode: multiply;
}
.shoe-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ffffff;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.compare-check {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.compare-check input { display: none; }
.compare-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 19px;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
  transition: transform .1s;
}
.compare-check:hover .compare-check-icon { transform: scale(1.12); }
.compare-check input:checked + .compare-check-icon { color: var(--brand); }

.shoe-body { display: flex; flex-direction: column; gap: 2px; }
.shoe-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.shoe-name { font-size: 15px; font-weight: 600; margin: 0; line-height: 1.35; }
.shoe-rating { display: flex; align-items: center; gap: 4px; font-size: 13.5px; font-weight: 600; flex-shrink: 0; white-space: nowrap; }
.star-ico { font-size: 12px; }
.shoe-subtitle { margin: 0; font-size: 13.5px; color: var(--text-secondary); }
.shoe-best-for { margin: 2px 0 6px; font-size: 13.5px; color: var(--text-secondary); }
.shoe-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 2px; }
.shoe-price { font-size: 15px; }
.shoe-price strong { font-weight: 700; }
.shoe-cta { font-size: 13.5px; font-weight: 700; color: var(--brand); }
.shoe-cta:hover { color: var(--brand-dark); text-decoration: underline; }

/* ---------- Brand tiles ---------- */
.brand-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.brand-tile {
  position: relative;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.brand-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); border-color: transparent; }
.brand-tile-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.brand-tile-name { font-size: 13.5px; font-weight: 700; color: var(--text); }
.brand-tile-count { font-size: 11.5px; color: var(--text-secondary); }
.brand-tile-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--brand);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 18px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-secondary); font-weight: 600; }
.breadcrumb a:hover { color: var(--text); text-decoration: underline; }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--text); font-weight: 600; }

/* ---------- Landing page hero (Damen/Herren/Marken hubs) ---------- */
.landing-hero { padding: 8px 0 32px; }
.landing-hero h1 { font-size: 32px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 12px; max-width: 700px; }
.landing-hero p.intro { font-size: 15.5px; color: var(--text-secondary); max-width: 720px; margin: 0; line-height: 1.7; }

/* ---------- Quick filter row (brand/category chips on hub pages) ---------- */
.quick-filter-row { display: flex; gap: 10px; flex-wrap: wrap; padding: 20px 0 8px; }

/* ---------- FAQ (native <details>) ---------- */
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: transform .15s;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 12px 0 0; font-size: 14.5px; color: var(--text-secondary); line-height: 1.7; }

/* ---------- Model page ---------- */
.model-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 12px 0 40px;
}
.model-hero-media {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 90px;
  overflow: hidden;
}
.model-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 40px;
  box-sizing: border-box;
  mix-blend-mode: multiply;
}
.model-hero-info .eyebrow { margin-bottom: 14px; }
.model-hero-info h1 { font-size: 32px; font-weight: 800; margin: 0 0 10px; letter-spacing: -0.01em; }
.model-hero-info .model-rating { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.model-hero-info .model-rating .stars { color: var(--star-color, #f5a623); }
.model-hero-info p.lede { font-size: 15.5px; color: var(--text-secondary); line-height: 1.7; margin: 0 0 20px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-row .btn { flex: 1; min-width: 200px; }

.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; max-width: 560px; }
.spec-table td { padding: 12px 0; border-bottom: 1px solid var(--border-light); }
.spec-table td:first-child { color: var(--text-secondary); font-weight: 600; width: 45%; }
.spec-table td:last-child { font-weight: 700; }

.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pros-cons-col h4 { font-size: 15px; margin: 0 0 14px; }
.pros-cons-col.pros h4 { color: #059669; }
.pros-cons-col.cons h4 { color: #dc2626; }
.pros-cons-col ul { margin: 0; padding-left: 20px; font-size: 14.5px; color: var(--text-secondary); line-height: 1.8; }

.related-models-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ---------- Ratgeber / article pages ---------- */
.article-hero { padding: 4px 0 4px; max-width: 780px; }
.article-hero .eyebrow { margin-bottom: 14px; }
.article-hero h1 { font-size: 32px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 14px; line-height: 1.2; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 28px;
  flex-wrap: wrap;
}
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-secondary); }

.tldr-box {
  background: var(--brand-tint);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin: 0 0 32px;
  max-width: 780px;
}
.tldr-box .tldr-label {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--brand-dark);
  margin-bottom: 8px;
}
.tldr-box p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--text); }

.article-body { max-width: 780px; }
.article-body h2 { font-size: 21px; font-weight: 800; margin: 36px 0 14px; letter-spacing: -0.01em; }
.article-body h3 { font-size: 16px; font-weight: 700; margin: 22px 0 8px; }
.article-body p { font-size: 15px; line-height: 1.75; color: var(--text); margin: 0 0 16px; }
.article-body ul, .article-body ol { font-size: 15px; line-height: 1.75; color: var(--text); margin: 0 0 16px; padding-left: 22px; }
.article-body li { margin-bottom: 6px; }
.article-body strong { font-weight: 700; }
.article-body table { width: 100%; border-collapse: collapse; margin: 8px 0 20px; font-size: 14px; }
.article-body table th, .article-body table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border-light); }
.article-body table th { font-size: 12px; text-transform: uppercase; letter-spacing: .03em; color: var(--text-secondary); }

.article-cta-inline {
  background: var(--bg-alt);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  margin: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.article-cta-inline p { margin: 0; font-size: 14.5px; font-weight: 600; max-width: 480px; }

.author-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  max-width: 780px;
}
.author-box .author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: var(--on-ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.author-box .author-name { font-weight: 700; font-size: 14px; }
.author-box .author-role { font-size: 12.5px; color: var(--text-secondary); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; }
.step-num {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink);
  color: var(--on-ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin: 0 auto 14px;
}
.step h4 { margin: 0 0 6px; font-size: 15px; font-weight: 700; }
.step p { margin: 0; font-size: 13.5px; color: var(--text-secondary); }

/* ---------- Blog cards ---------- */
.blog-card { display: flex; flex-direction: column; gap: 10px; cursor: pointer; }
.blog-card .blog-media {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-card);
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  transition: box-shadow .15s;
  overflow: hidden;
}
.blog-card:hover .blog-media { box-shadow: var(--shadow-card-hover); }
.blog-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Article hero image (Ratgeber/Blog article pages) ---------- */
.article-hero-media {
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin: 20px 0 28px;
  max-width: 780px;
}
.article-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card h4 { margin: 0; font-size: 15px; font-weight: 700; line-height: 1.35; }
.blog-card p { margin: 0; font-size: 13.5px; color: var(--text-secondary); }
.blog-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--brand);
}
.blog-date { font-size: 12px; color: var(--text-secondary); font-weight: 600; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--ink);
  color: var(--on-ink);
  border-radius: 24px;
  padding: 48px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter h3 { margin: 0 0 8px; font-size: 24px; font-weight: 800; }
.newsletter p { margin: 0; color: rgba(255,255,255,0.72); font-size: 14.5px; max-width: 420px; }
.newsletter form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input[type=email] {
  padding: 13px 18px;
  border-radius: var(--radius-pill);
  border: none;
  min-width: 240px;
  font-size: 14px;
  font-family: inherit;
}
.newsletter .btn-primary { border-radius: var(--radius-pill); padding: 13px 24px; }

/* ---------- Footer ---------- */
footer.site-footer {
  border-top: 1px solid var(--border-light);
  padding: 44px 0 26px;
  background: var(--bg-alt);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.footer-col h5 { font-size: 13px; margin: 0 0 14px; text-transform: uppercase; letter-spacing: .04em; color: var(--text-secondary); font-weight: 700; }
.footer-col a { display: block; font-size: 14px; margin-bottom: 10px; color: var(--text); }
.footer-col a:hover { text-decoration: underline; }
.footer-brand p { color: var(--text-secondary); font-size: 13.5px; max-width: 280px; }
.disclosure {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.disclosure a { text-decoration: underline; }
.disclosure a:hover { color: var(--text); }

/* ---------- Finder page ---------- */
.finder-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: start;
  padding-top: 8px;
}

.filters-sidebar {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 116px);
  overflow-y: auto;
  padding-right: 4px;
}
.filters-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 4px;
}
.filters-sidebar-head h3 { margin: 0; font-size: 17px; font-weight: 800; }
.filters-sidebar-head .link-btn { font-size: 12.5px; }

.filter-group {
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
}
.filter-group:last-child { border-bottom: none; }
.filter-group h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--text);
}

.price-range-display {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  margin-top: 10px;
  color: var(--text-secondary);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  font-size: 13.5px;
  color: var(--text);
  cursor: pointer;
  user-select: none;
}
.check-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--brand);
  flex-shrink: 0;
  cursor: pointer;
}
.check-row .check-label { flex: 1; }
.check-row .check-count { color: var(--text-secondary); font-size: 12px; }
.check-row.disabled { opacity: .4; pointer-events: none; }

.color-swatch-list { display: flex; flex-wrap: wrap; gap: 10px; }
.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: transform .1s, border-color .15s;
}
.color-swatch:hover { transform: scale(1.08); }
.color-swatch.active { border-color: var(--brand); box-shadow: 0 0 0 2px var(--brand-tint); }
.color-swatch.disabled { opacity: .35; pointer-events: none; }
.color-swatch[data-name="Weiß"] { border-color: var(--border); }

.show-more-link {
  background: none;
  border: none;
  color: var(--text);
  font-weight: 700;
  font-size: 12.5px;
  text-decoration: underline;
  cursor: pointer;
  padding: 6px 0 0;
}

.finder-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.results-count { font-size: 15px; font-weight: 700; color: var(--text); }
.toolbar-right { display: flex; align-items: center; gap: 10px; }

.sort-select {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 600;
  background: var(--surface);
  cursor: pointer;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 28px 24px;
  padding-bottom: 64px;
}
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
  grid-column: 1 / -1;
}
.empty-state .emoji { font-size: 40px; margin-bottom: 12px; }

/* ---------- Floating compare pill ---------- */
.compare-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 140%);
  background: var(--ink);
  color: var(--on-ink);
  border-radius: var(--radius-pill);
  padding: 10px 10px 10px 22px;
  z-index: 60;
  transition: transform .25s ease;
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: calc(100% - 48px);
}
.compare-bar.visible { transform: translate(-50%, 0); }
.compare-chips { display: flex; gap: 8px; flex-wrap: wrap; max-width: 420px; }
.compare-chip {
  background: rgba(255,255,255,0.14);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.compare-chip button { background: none; border: none; color: #fff; cursor: pointer; font-size: 13px; opacity: .7; padding: 0; }
.compare-chip button:hover { opacity: 1; }
.compare-bar-actions { display: flex; gap: 8px; flex-shrink: 0; }
.compare-clear-link { background: none; border: none; color: rgba(255,255,255,0.75); font-weight: 700; font-size: 13px; cursor: pointer; padding: 8px; }
.compare-clear-link:hover { color: #fff; }
.compare-open-btn {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
}
.compare-open-btn:hover { background: var(--brand-dark); }

/* ---------- Modal shell (filter + compare) ---------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--surface);
  border-radius: 18px;
  max-width: 620px;
  width: 100%;
  max-height: 86vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.modal-box.modal-wide { max-width: 980px; }
.modal-head {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}
.modal-head h3 { margin: 0; font-size: 16px; font-weight: 700; }
.modal-close {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 16px;
}
.modal-close:hover { background: var(--bg-alt); }
.modal-body { padding: 8px 24px 24px; overflow-y: auto; }
.modal-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
  flex-shrink: 0;
}
.modal-footer .link-btn { background: none; border: none; font-weight: 700; text-decoration: underline; cursor: pointer; font-size: 14px; }

.filter-section { padding: 22px 0; border-bottom: 1px solid var(--border-light); }
.filter-section:last-child { border-bottom: none; }
.filter-section h4 { margin: 0 0 14px; font-size: 15px; font-weight: 700; }
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  background: var(--surface);
  transition: all .12s;
}
.chip:hover { border-color: var(--text); }
.chip.active { background: var(--ink); border-color: var(--ink); color: var(--on-ink); }

.range-row { display: flex; align-items: center; gap: 14px; }
input[type=range] { flex: 1; accent-color: var(--brand); }
.range-val { font-size: 14px; font-weight: 700; min-width: 70px; text-align: right; }

/* ---------- Comparison table ---------- */
.compare-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.compare-table th, .compare-table td { padding: 14px 12px; border-bottom: 1px solid var(--border-light); text-align: left; vertical-align: top; }
.compare-table th { color: var(--text-secondary); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; }
.compare-table td:first-child, .compare-table th:first-child { position: sticky; left: 0; background: var(--surface); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .wrap { padding: 0 24px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .related-models-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .model-hero { grid-template-columns: 1fr; }
  .model-hero-media { aspect-ratio: 16 / 9; font-size: 60px; }
  .finder-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; max-height: none; overflow: visible; padding-right: 0; }
}

@media (max-width: 900px) {
  nav.main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .menu-pill { display: none; }
}

@media (max-width: 720px) {
  h1.hero-title { font-size: 30px; }
  .grid-4, .grid-3, .results-grid, .related-models-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; align-items: flex-start; }
  .search-segment { padding: 10px 14px; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .landing-hero h1 { font-size: 26px; }
}

/* shoerio always renders in its light theme, deliberately —
   like Airbnb, the brand look is a white background regardless of
   the visitor's system preference. No dark-mode override. */
