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

:root {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --text: #0f172a;
  --text-body: #1e293b;
  --muted: #475569;
  --border: #dbe3ef;
  --brand-blue: #002058;
  --primary: #002058;
  --primary-dark: #001848;
  --primary-active: #001030;
  --primary-soft: #e8eef6;
  --primary-border: #8fa3bf;
  --success: #15803d;
  --success-soft: #f0fdf4;
  --success-border: #86efac;
  --warning: #b45309;
  --warning-soft: #fffbeb;
  --warning-border: #fcd34d;
  --error: #b91c1c;
  --error-soft: #fef2f2;
  --error-border: #fca5a5;
  --info-soft: #eff6ff;
  --info-border: #93c5fd;
  --btn-radius: 10px;
  --btn-padding-y: 12px;
  --btn-padding-x: 18px;
  --btn-font-weight: 700;
  --radius: 16px;
  --shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  --brand-logo-height: clamp(104px, 14vw, 168px);
  --brand-logo-max-width: min(880px, 90vw);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.top-strip {
  background: #0f172a;
  color: #cbd5e1;
  font-size: 12px;
  padding: 8px 0;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.brand-logo__image {
  height: var(--brand-logo-height);
  width: auto;
  max-width: var(--brand-logo-max-width);
  object-fit: contain;
  display: block;
  image-rendering: auto;
}

.search-form {
  flex: 1 1 320px;
  min-width: 0;
  display: flex;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.search-form input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
}

.search-form button {
  border: none;
  background: var(--primary);
  color: #fff;
  font-weight: var(--btn-font-weight);
  padding: 0 var(--btn-padding-x);
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.search-form button:hover { background: var(--primary-dark); }

.search-form button:active { background: var(--primary-active); }

.search-form button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.header-actions {
  flex: 1 1 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.header-actions .btn-ghost {
  min-width: 0;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 42px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--primary-soft);
}

.btn-ghost:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 32, 88, 0.16);
}

.hero {
  padding: 72px 0;
  background: linear-gradient(135deg, #001030 0%, var(--brand-blue) 45%, #001848 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1617814076367-b759c7d7e738?q=85&w=2400&auto=format&fit=crop') center/cover;
  background-size: cover;
  opacity: 0.12;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.hero-search {
  display: flex;
  gap: 0;
  max-width: 560px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-search input {
  flex: 1;
  border: none;
  padding: 14px 16px;
  font-size: 15px;
}

.hero-search button {
  border: none;
  background: var(--primary);
  color: #fff;
  font-weight: var(--btn-font-weight);
  padding: 0 22px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.hero-search button:hover {
  background: var(--primary-dark);
}

.hero-search button:active {
  background: var(--primary-active);
}

.home-search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 920px;
  margin-top: 8px;
}

.home-search-grid--solo {
  grid-template-columns: 1fr;
  max-width: min(520px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.hero-content--centered {
  text-align: center;
}

.hero-content--centered .home-search-grid--solo {
  text-align: left;
}

.home-search-panel {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  padding: 16px;
  /* Kein backdrop-filter — verursacht unscharfe Hero-/Seitenwirkung */
}

.home-search-panel__title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
}

.home-search-panel .hero-search {
  max-width: none;
}

.vehicle-search-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vehicle-search-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.vehicle-search-row--selects {
  grid-template-columns: 1fr;
}

.vehicle-search-form input,
.vehicle-search-form select {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
}

.vehicle-search-form .field-label {
  margin: 4px 0 2px;
  font-size: 12px;
  font-weight: 600;
  color: inherit;
  opacity: 0.95;
}

.catalog-search-tools .vehicle-search-form .field-label {
  color: var(--text);
}

.vehicle-search-form #veh_part_q {
  margin-top: 4px;
}

.vehicle-search-or {
  margin: 0;
  font-size: 12px;
  opacity: 0.85;
  text-align: center;
}

.vehicle-search-hint {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 8px 10px;
  display: none;
}

.catalog-search-tools .vehicle-search-hint {
  color: var(--primary-dark);
  background: var(--primary-soft);
  border-color: var(--primary-border);
}

.vehicle-search-hint.visible {
  display: block;
}

.vehicle-recognized {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  border-radius: 8px;
  padding: 8px 10px;
  display: none;
}

.vehicle-recognized:not([hidden]) {
  display: block;
}

.vehicle-recognized--found {
  color: rgba(255, 255, 255, 0.98);
  background: rgba(16, 185, 129, 0.22);
  border: 1px solid rgba(110, 231, 183, 0.45);
}

.vehicle-recognized--ambiguous {
  color: rgba(255, 255, 255, 0.98);
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(147, 197, 253, 0.4);
}

.vehicle-recognized--unknown {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vehicle-recognized--loading {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 500;
}

.catalog-search-tools .vehicle-recognized--found {
  color: #065f46;
  background: #d1fae5;
  border-color: #6ee7b7;
}

.catalog-search-tools .vehicle-recognized--ambiguous {
  color: #1e40af;
  background: #dbeafe;
  border-color: #93c5fd;
}

.catalog-search-tools .vehicle-recognized--unknown {
  color: var(--text-muted, #64748b);
  background: var(--surface-muted, #f1f5f9);
  border-color: var(--border, #e2e8f0);
}

.catalog-search-tools .vehicle-recognized--loading {
  color: var(--text-muted, #64748b);
  background: var(--surface-muted, #f8fafc);
  border-color: var(--border, #e2e8f0);
}

.vehicle-search-submit {
  border: none;
  border-radius: var(--btn-radius);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  font-weight: var(--btn-font-weight);
  cursor: pointer;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 32, 88, 0.24);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.vehicle-search-submit:hover {
  background: var(--primary-dark);
}

.vehicle-search-submit:active {
  background: var(--primary-active);
  transform: translateY(1px);
}

.vehicle-search-submit:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 32, 88, 0.22);
}

.catalog-search-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.catalog-search-tools--vehicle-only {
  grid-template-columns: 1fr;
  max-width: min(560px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.catalog-search-tools .home-search-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  /* Kein backdrop-filter — vermeidet milchige Produktbilder auf Katalogseiten */
}

.catalog-search-tools .home-search-panel__title {
  color: var(--text);
}

.catalog-inline-search {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.catalog-inline-search input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  font-size: 14px;
}

.catalog-inline-search button {
  border: none;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 0 18px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .home-search-grid,
  .catalog-search-tools {
    grid-template-columns: 1fr;
  }
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 32px 0;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-title {
  margin: 48px 0 20px;
}

.section-title h2 {
  margin: 0 0 6px;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.section-title p {
  margin: 0;
  color: var(--muted);
}

.page-head {
  padding: 28px 0 8px;
}

.page-head--compact {
  padding: 16px 0 4px;
}

.page-head--compact h1 {
  font-size: 22px;
}

.page-head--compact .meta {
  font-size: 14px;
}

.page-catalog-main #results {
  min-height: 0;
}

/* Kompakter Fahrzeugfilter auf der Ergebnisseite */
.catalog-vehicle-filter {
  margin: 0 0 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.catalog-vehicle-filter__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
}

.catalog-vehicle-filter__head {
  min-width: 0;
  flex: 1;
}

.catalog-vehicle-filter__title {
  display: block;
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.catalog-vehicle-filter__summary {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  word-break: break-word;
}

.catalog-vehicle-filter__toggle {
  flex-shrink: 0;
  white-space: nowrap;
}

.catalog-vehicle-filter__panel {
  border-top: 1px solid var(--border);
  padding: 12px 14px 14px;
  background: #f8fafc;
}

.catalog-vehicle-filter__panel[hidden] {
  display: none;
}

.vehicle-search-form--compact {
  gap: 8px;
}

.vehicle-search-form--compact .vehicle-search-row {
  gap: 8px;
}

.vehicle-search-form--compact input,
.vehicle-search-form--compact select {
  padding: 8px 10px;
  font-size: 13px;
}

.vehicle-search-form--compact .field-label {
  margin-top: 2px;
  font-size: 12px;
}

.vehicle-search-form--compact .vehicle-search-or {
  margin: 2px 0;
  font-size: 12px;
}

.vehicle-search-form--compact .vehicle-search-hint {
  margin: 0;
  min-height: 0;
  font-size: 12px;
}

.vehicle-search-form--compact .vehicle-search-submit {
  align-self: flex-start;
  margin-top: 4px;
}

.catalog-vehicle-info {
  margin: 0 0 12px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-body);
  background: var(--info-soft);
  border: 1px solid var(--info-border);
  border-radius: 8px;
}

.promo-meldeonline--below-results {
  margin-top: 32px;
}

.catalog-pagination {
  margin: 20px 0 8px;
  padding: 12px 0 0;
  border-top: 1px solid var(--border);
}

.catalog-pagination__detail {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--text-body);
}

.catalog-pagination__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.catalog-pagination__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.catalog-pagination__nav:hover {
  border-color: var(--primary-border);
  background: var(--primary-soft);
}

.catalog-pagination__nav.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.catalog-pagination__pages {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.catalog-pagination__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.catalog-pagination__page:hover {
  border-color: var(--primary-border);
  background: var(--primary-soft);
}

.catalog-pagination__page.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

@media (max-width: 640px) {
  .catalog-vehicle-filter__bar {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .catalog-vehicle-filter__toggle {
    width: 100%;
    justify-content: center;
  }
}

.page-head h1 {
  margin: 0 0 6px;
  font-size: 28px;
}

.page-head .meta {
  color: var(--text-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.product-grid {
  display: grid;
  gap: 16px;
  padding: 8px 0 32px;
}

.product-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.product-card--compact {
  gap: 16px;
  padding: 14px 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.product-card--compact .product-card__footer {
  margin-top: 0;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.product-card__details {
  margin: 2px 0 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fafc;
}

.product-card__details-summary {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.product-card__details-summary::-webkit-details-marker {
  display: none;
}

.product-card__details-summary::before {
  content: "▸";
  display: inline-block;
  margin-right: 8px;
  font-size: 11px;
  color: var(--muted);
  transition: transform 0.15s ease;
}

.product-card__details[open] .product-card__details-summary::before {
  transform: rotate(90deg);
}

.product-card__details-body {
  padding: 0 12px 12px;
  border-top: 1px solid var(--border);
}

.product-card__details-section {
  margin-top: 12px;
}

.product-card__details-heading {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-card__details-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-body);
}

.product-card__details-body .product-spec {
  margin: 12px 0 0;
  padding: 12px 14px;
}

.product-card__details-body .product-card__multifitment {
  margin: 12px 0 0;
}

.product-card__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.product-card__head h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.product-card__head h2 a {
  text-decoration: none;
  color: inherit;
}

.product-card__head h2 a:hover {
  color: var(--primary);
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.availability-badge--partner,
.availability-badge--order {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

.availability-badge--stock {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.detail-panel .availability-badge {
  margin-bottom: 8px;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.product-card__excerpt-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.product-card__excerpt {
  margin: 0;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.product-card__excerpt-more {
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
}

.product-card__excerpt-more:hover {
  text-decoration: underline;
}

.product-card__multifitment {
  margin: 8px 0 10px;
  padding: 8px 10px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
}

.fitment-listing-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--primary-dark);
  background: #dbeafe;
  border-radius: 4px;
}

.fitment-listing-line {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #1e3a8a;
}

.fitment-listing-hint {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-body);
  font-weight: 500;
}

.product-card__footer {
  margin-top: 4px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.product-card__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-add-cart.is-loading {
  opacity: 0.7;
  cursor: wait;
}

.cart-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(12px);
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--success-soft);
  border: 1px solid var(--success-border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cart-toast--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cart-toast__msg {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #14532d;
}

.cart-toast__link {
  text-decoration: none;
}

.detail-sticky-bar__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-items: center;
}

.detail-sticky-bar__cart {
  padding: 10px 14px;
  font-size: 13px;
  white-space: nowrap;
}

.chip--source {
  flex-shrink: 0;
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
  font-weight: 600;
}

.chip--primary {
  background: #f8fafc;
}

.chip--saleable-ok {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
  font-weight: 600;
}

.chip--saleable-no {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
  font-weight: 600;
}

.chips--grouped .chips__primary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips--grouped .chips__more {
  margin-top: 8px;
}

.chips--grouped .chips__more summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  list-style: none;
}

.chips--grouped .chips__more summary::-webkit-details-marker {
  display: none;
}

.chips--grouped .chips__secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.catalog-state {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px 22px;
  margin: 24px 0 48px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.catalog-state--compact {
  max-width: 520px;
  margin: 8px 0 24px;
  padding: 14px 16px;
  text-align: left;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.catalog-state--compact .catalog-state__lead {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.catalog-state--compact .catalog-state__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-body);
}

.catalog-state--compact .catalog-state__hint {
  margin: 0 0 12px;
  font-size: 13px;
}

.catalog-state--compact .btn-primary,
.catalog-state--compact .btn-secondary {
  margin-top: 0;
}

.catalog-state--neutral {
  background: var(--surface);
  border-color: var(--border);
}

.catalog-state--neutral .catalog-state__lead,
.catalog-state--neutral strong {
  color: var(--text);
}

.catalog-state--neutral .catalog-state__text,
.catalog-state--neutral p {
  color: var(--text-body);
}

.catalog-state--loading.catalog-state--compact {
  max-width: none;
  text-align: center;
  padding: 12px 16px;
  margin: 8px 0 16px;
}

.catalog-state strong {
  display: block;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}

.catalog-state p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-body);
}

.catalog-state p:last-child {
  margin-bottom: 0;
}

.catalog-state--loading {
  background: var(--info-soft);
  border-color: var(--info-border);
  color: var(--text-body);
}

.catalog-state--loading p,
.catalog-state__loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
}

.catalog-state--loading p::before,
.catalog-state__loading::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary-border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: ui-spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes ui-spin {
  to { transform: rotate(360deg); }
}

.catalog-state--empty {
  background: var(--info-soft);
  border-color: var(--info-border);
}

.catalog-state--empty strong {
  color: var(--primary-dark);
}

.catalog-state--info {
  background: var(--info-soft);
  border-color: var(--info-border);
}

.catalog-state--info strong {
  color: var(--primary-dark);
}

.catalog-state--info p {
  color: var(--text-body);
}

.catalog-state--not-found {
  background: var(--warning-soft);
  border-color: var(--warning-border);
}

.catalog-state--not-found strong {
  color: var(--warning);
}

.catalog-state--error,
.catalog-state--network {
  background: var(--error-soft);
  border-color: var(--error-border);
}

.catalog-state--error strong,
.catalog-state--network strong {
  color: var(--error);
}

.catalog-state--error p,
.catalog-state--network p {
  color: #7f1d1d;
}

.catalog-state__query {
  font-weight: 800;
  color: var(--text);
}

.catalog-state__hint {
  font-size: 15px;
  margin-top: 10px;
  color: var(--text-body);
  line-height: 1.55;
}

.catalog-state .btn-secondary {
  margin-top: 16px;
}

.vehicle-results-header {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 0 0 20px;
  box-shadow: var(--shadow);
}

.vehicle-results-header__title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.vehicle-results-header__query {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
}

.vehicle-results-header__query-label {
  display: inline-block;
  margin-right: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.vehicle-results-header__summary {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.vehicle-results-header__split {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
}

.vehicle-results-header__more {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.vehicle-results-header__kba {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}

.vehicle-results-header__kba-label {
  display: inline-block;
  margin-right: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.vehicle-results-header__detail {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.vehicle-results-header__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vehicle-results-header__stat {
  flex: 1 1 100px;
  min-width: 88px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f8fafc;
  text-align: center;
}

.vehicle-results-header__stat--total {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.vehicle-results-header__stat--recycle {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.vehicle-results-header__stat--am24 {
  background: #fff7ed;
  border-color: #fed7aa;
}

.vehicle-results-header__stat-value {
  display: block;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
}

.vehicle-results-header__stat--total .vehicle-results-header__stat-value {
  color: var(--primary-dark);
}

.vehicle-results-header__stat--recycle .vehicle-results-header__stat-value {
  color: #15803d;
}

.vehicle-results-header__stat--am24 .vehicle-results-header__stat-value {
  color: #c2410c;
}

.vehicle-results-header__stat-label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.vehicle-results-header__warn {
  margin: 14px 0 0;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--text-body);
  background: var(--info-soft);
  border: 1px solid var(--info-border);
  border-radius: 8px;
}

@media (max-width: 640px) {
  .vehicle-results-header {
    padding: 16px;
  }

  .vehicle-results-header__title {
    font-size: 18px;
  }

  .vehicle-results-header__stat {
    flex: 1 1 calc(50% - 6px);
  }

  .vehicle-results-header__stat--total {
    flex: 1 1 100%;
  }
}

.detail-actions--inline {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.detail-sticky-bar {
  display: none;
}

body.has-detail-sticky {
  padding-bottom: 0;
}

.product-card .media {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card .media img,
.product-card__img {
  display: block;
  max-width: 100%;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
}

.product-card .chips,
.chips--flat {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-spec {
  margin: 4px 0 12px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #f1f5f9 100%);
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  display: grid;
  gap: 0;
}

.product-spec__row {
  display: grid;
  grid-template-columns: minmax(92px, 118px) 1fr;
  gap: 10px 14px;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid rgba(203, 213, 225, 0.65);
}

.product-spec__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.product-spec__row:first-child {
  padding-top: 0;
}

.product-spec__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-dark);
  line-height: 1.35;
}

.product-spec__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  word-break: break-word;
}

.detail-panel .product-spec {
  margin: 12px 0 18px;
}

.chip {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f8fafc;
  color: var(--text-body);
}

.chip strong { color: var(--primary-dark); }

.price-block {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.price-main {
  font-size: 24px;
  font-weight: 800;
  color: var(--success);
}

.price-main--on-request,
.detail-sticky-bar__amount--on-request {
  color: var(--text-body);
  font-size: 1.125rem;
  font-weight: 700;
}

.price-sub--on-request,
.detail-sticky-bar__sub--on-request {
  color: var(--text-muted, #64748b);
}

.price-sub {
  font-size: 13px;
  color: var(--text-body);
  font-weight: 500;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--btn-radius);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  background: var(--primary);
  color: #fff;
  font-weight: var(--btn-font-weight);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 32, 88, 0.24);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  filter: none;
}

.btn-primary:active {
  background: var(--primary-active);
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(0, 32, 88, 0.2);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 32, 88, 0.22);
}

.btn-primary--disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--btn-radius);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  background: #e2e8f0;
  color: #64748b;
  font-weight: var(--btn-font-weight);
  cursor: not-allowed;
  box-shadow: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd5e1;
  border-radius: var(--btn-radius);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  background: #fff;
  color: var(--text-body);
  font-weight: var(--btn-font-weight);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--primary-soft);
}

.btn-secondary:active {
  background: #dbeafe;
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 32, 88, 0.16);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px 0 48px;
}

.detail-gallery {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.detail-main-image {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: min(520px, 70vh);
  min-height: 200px;
  margin: 0 auto;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 12px;
  image-rendering: auto;
}

.thumb-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.thumb-row img {
  width: 72px;
  height: 72px;
  max-width: 72px;
  max-height: 72px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid var(--border);
  cursor: pointer;
  image-rendering: auto;
}

.detail-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.detail-panel h1 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.2;
}

.detail-section-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.detail-beschreibung {
  margin: 16px 0 20px;
}

.detail-desc {
  margin-top: 0;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.6;
  white-space: pre-wrap;
}

/* Unified message / alert system (catalog-state + reusable) */
.ui-message {
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-body);
}

.ui-message strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 800;
}

.ui-message--info {
  background: var(--info-soft);
  border-color: var(--info-border);
}

.ui-message--info strong {
  color: var(--primary-dark);
}

.ui-message--warning {
  background: var(--warning-soft);
  border-color: var(--warning-border);
}

.ui-message--warning strong {
  color: var(--warning);
}

.ui-message--error {
  background: var(--error-soft);
  border-color: var(--error-border);
}

.ui-message--error strong {
  color: var(--error);
}

.ui-message--success {
  background: var(--success-soft);
  border-color: var(--success-border);
}

.ui-message--success strong {
  color: var(--success);
}

.ui-message--loading {
  background: var(--info-soft);
  border-color: var(--info-border);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary-dark);
}

.ui-message--loading::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary-border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: ui-spin 0.7s linear infinite;
}

/* Phase B — Mehrfachverwendung (oe_knowledge_fitments) */
.fitment-multi {
  margin: 16px 0 20px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.fitment-multi__headline {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

.fitment-multi__count {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
}

.fitment-accordion {
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.fitment-accordion__summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  list-style: none;
  user-select: none;
}

.fitment-accordion__summary::-webkit-details-marker {
  display: none;
}

.fitment-accordion__summary::before {
  content: "▸ ";
  display: inline-block;
  transition: transform 0.15s ease;
}

.fitment-accordion[open] .fitment-accordion__summary::before {
  transform: rotate(90deg);
}

.fitment-table-wrap {
  margin-top: 12px;
  max-height: min(420px, 55vh);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}

.fitment-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 720px;
}

.fitment-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f1f5f9;
  text-align: left;
  padding: 10px 12px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.fitment-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eef2f7;
  vertical-align: top;
}

.fitment-table__row--primary {
  background: #eff6ff;
}

.fitment-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--primary-dark);
  background: #dbeafe;
  border-radius: 4px;
}

.fitment-kba {
  font-size: 12px;
  white-space: normal;
  word-break: break-word;
}

.detail-compat {
  margin: 12px 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.detail-compat__text {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.detail-compat__action {
  margin-top: 10px;
  display: inline-flex;
}

.detail-compat--confirmed {
  background: var(--success-soft);
  border-color: var(--success-border);
  color: #14532d;
}

.detail-compat--confirmed .detail-compat__text {
  color: #14532d;
}

.detail-compat--uncertain {
  background: var(--info-soft);
  border-color: var(--info-border);
  color: #1e3a5f;
}

.detail-compat--uncertain .detail-compat__text {
  color: #1e3a5f;
  font-weight: 500;
}

.detail-compat--prompt {
  background: #f8fafc;
  border-color: var(--border);
}

.detail-compat--prompt .detail-compat__text {
  color: var(--text-body);
  font-weight: 500;
}

@media (max-width: 640px) {
  .fitment-table-wrap {
    margin-left: -4px;
    margin-right: -4px;
    border-radius: 8px;
  }

  .fitment-multi {
    padding: 12px;
  }

  .detail-compat {
    margin: 10px 0 14px;
    padding: 10px 12px;
  }

  .detail-compat__text {
    font-size: 13px;
  }
}

.empty-state, .loading-state, .error-state {
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  color: var(--muted);
  margin: 24px 0 48px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 32px 0;
  margin-top: 48px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
}

.footer-links--legal {
  justify-content: flex-end;
}

.footer-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.footer-links a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.footer-links a[aria-current="page"] {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.checkout-page {
  padding: 32px 0 48px;
}

.checkout-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.checkout-card h1 {
  margin: 0 0 24px;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.checkout-form {
  display: grid;
  gap: 16px;
}

.checkout-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: #fff;
}

.checkout-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.checkout-input:disabled {
  background: #f8fafc;
  color: var(--muted);
}

.checkout-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}

.checkout-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.checkout-price-box {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
}

.checkout-price-box p {
  margin: 0 0 8px;
}

.checkout-price-box p:last-child {
  margin-bottom: 0;
}

.checkout-total {
  font-weight: 800;
  color: var(--success);
}

.checkout-submit {
  width: 100%;
  border: none;
  border-radius: var(--btn-radius);
  padding: 14px var(--btn-padding-x);
  background: var(--primary);
  color: #fff;
  font-weight: var(--btn-font-weight);
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 32, 88, 0.24);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.checkout-submit:hover {
  background: var(--primary-dark);
}

.checkout-submit:active {
  background: var(--primary-active);
  transform: translateY(1px);
}

.checkout-submit:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 32, 88, 0.22);
}

.checkout-back {
  display: block;
  margin-top: 20px;
  text-align: center;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.checkout-back:hover {
  text-decoration: underline;
}

.hidden {
  display: none !important;
}

/* Auth modal — component-style, no inline display overrides */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.55);
  padding: 16px;
}

.auth-modal.is-open {
  display: flex;
}

.auth-modal__panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  width: min(420px, calc(100% - 32px));
  box-shadow: var(--shadow);
}

.auth-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.auth-modal__header h2 {
  margin: 0;
  font-size: 20px;
}

.auth-modal__close {
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
}

.auth-modal__form {
  display: grid;
  gap: 12px;
}

.auth-modal__input {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
}

.auth-modal__submit {
  padding: 12px;
  border: none;
  border-radius: var(--btn-radius);
  background: var(--primary);
  color: #fff;
  font-weight: var(--btn-font-weight);
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.auth-modal__submit:hover {
  background: var(--primary-dark);
}

.auth-modal__submit:active {
  background: var(--primary-active);
}

.auth-modal__submit:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 32, 88, 0.22);
}

.auth-modal__forgot {
  margin: 0;
  font-size: 13px;
  text-align: right;
}

.auth-modal__forgot a {
  color: var(--primary);
  text-decoration: none;
}

.auth-modal__forgot a:hover {
  text-decoration: underline;
}

.auth-modal__register {
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

/* ── Account dashboard (Phase 2) ── */
.account-page {
  padding: 24px 0 48px;
}

.account-hero {
  margin-bottom: 24px;
}

.account-hero h1 {
  margin: 0 0 6px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: -0.02em;
}

.account-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.account-section {
  margin-bottom: 24px;
}

.account-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.account-card__header {
  padding: 20px 20px 0;
}

.account-card__header h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.account-card__header p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.account-card__body {
  padding: 16px 20px 20px;
}

.account-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.account-grid--top {
  margin-bottom: 24px;
}

.account-card--featured {
  border-color: var(--primary-border);
  box-shadow: 0 8px 24px rgba(0, 32, 88, 0.08);
}

.account-card--muted {
  background: var(--surface-muted, #f8fafc);
}

.account-section--orders {
  margin-top: 8px;
}

.account-subheading {
  margin: 20px 0 12px;
  font-size: 15px;
  font-weight: 600;
}

.account-form--compact {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.header-vehicle-chip {
  display: none;
  align-items: center;
  flex: 0 1 auto;
  max-width: 100%;
  padding: 6px 12px;
  border: 1px solid var(--primary-border);
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
  white-space: normal;
  overflow: visible;
}

.header-vehicle-chip:not([hidden]) {
  display: inline-flex;
}

.header-vehicle-chip[hidden] {
  display: none !important;
}

.header-vehicle-chip:hover {
  background: #dce6f2;
}

.header-vehicle-chip__label {
  color: var(--muted);
  font-weight: 500;
  margin-right: 4px;
}

.saved-vehicle-view__lead {
  margin: 0 0 8px;
  font-size: 16px;
}

.saved-vehicle-view__meta {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.saved-vehicle-view__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.saved-vehicle-form {
  margin-top: 4px;
}

.saved-vehicle-form__hint {
  margin: 0;
  min-height: 1.2em;
  color: #b45309;
  font-size: 13px;
}

.saved-vehicle-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

@media (min-width: 900px) {
  .account-grid--top {
    grid-template-columns: repeat(3, 1fr);
  }
}

.account-form {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.account-form--inline {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: #fff;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.field-value {
  font-weight: 600;
  font-size: 15px;
}

.field-value--readonly {
  padding: 10px 12px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.profile-form .form-input {
  width: 100%;
  box-sizing: border-box;
}

.profile-name-hint {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.profile-phone-form {
  margin-top: 4px;
}

.profile-fields {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.entity-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8fafc;
}

.entity-card + .entity-card {
  margin-top: 12px;
}

.entity-card__title {
  margin: 0 0 4px;
  font-size: 16px;
}

.entity-card__meta {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.entity-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.account-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.account-badge--success {
  background: #dcfce7;
  color: #166534;
}

.account-badge--info {
  background: #e0e7ff;
  color: #3730a3;
}

.account-badge--danger {
  background: #fee2e2;
  color: #991b1b;
}

.account-badge--warning {
  background: #fef3c7;
  color: #92400e;
}

.account-badge--muted {
  background: #f1f5f9;
  color: #475569;
}

.btn-sm {
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 10px;
}

.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #dc2626;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.btn-danger:hover {
  filter: brightness(0.95);
}

.order-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.order-card + .order-card {
  margin-top: 16px;
}

.order-card__header {
  padding: 16px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.order-card__label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 2px;
}

.order-card__id {
  font-weight: 800;
  font-size: 15px;
}

.order-card__meta {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.order-card__meta a {
  color: var(--brand);
}

.order-card__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.order-card__total {
  color: var(--success);
}

.order-card__items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.order-card__item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.order-card__item:last-child {
  border-bottom: none;
}

.order-card__item-name {
  font-weight: 600;
  font-size: 14px;
}

.order-card__item-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.order-card__item-price {
  font-weight: 700;
  white-space: nowrap;
}

.state-block {
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
}

.state-block strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.state-block p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.state-block--loading {
  background: #f8fafc;
  border: 1px dashed var(--border);
}

.state-block--empty {
  background: #f8fafc;
  border: 1px dashed var(--border);
}

.state-block--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.state-block--error p {
  color: #b91c1c;
}

@media (min-width: 900px) {
  .account-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .order-card__stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .entity-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 860px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .account-form--inline {
    grid-template-columns: 1fr;
  }
}

/* ── Legal / trust pages (Phase 2) ── */
.legal-page {
  padding: 24px 0 48px;
}

.legal-page__head {
  margin-bottom: 20px;
}

.legal-page__head h1 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: -0.02em;
}

.legal-page__head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.legal-notice {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #92400e;
}

.legal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.legal-content section + section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.legal-content h3 {
  margin: 16px 0 8px;
  font-size: 15px;
}

.legal-content p,
.legal-content li {
  color: #334155;
  font-size: 15px;
  line-height: 1.65;
}

.legal-content ul {
  margin: 8px 0;
  padding-left: 20px;
}

.legal-content dl {
  margin: 0;
}

.legal-content dt {
  font-weight: 700;
  margin-top: 12px;
  font-size: 14px;
}

.legal-content dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  gap: 20px;
}

.contact-info-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.contact-form-card {
  display: grid;
  gap: 12px;
}

.contact-form-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.footer-copy {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.footer-tech-credit-wrap {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.footer-tech-credit {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.footer-tech-credit strong {
  display: block;
  color: var(--text);
  font-size: 13px;
  margin-bottom: 6px;
}

.footer-tech-credit a {
  color: var(--muted);
  text-decoration: none;
}

.footer-tech-credit a:hover {
  color: var(--primary);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

@media (max-width: 860px) {
  .page-catalog .top-strip .container {
    font-size: 11px;
  }

  .features { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 1fr; }
  .product-card__footer {
    flex-direction: column;
    align-items: stretch;
  }
  .product-card__actions {
    width: 100%;
  }
  .product-card__actions .btn-primary,
  .product-card__actions .btn-secondary {
    flex: 1 1 auto;
    justify-content: center;
  }
  .detail-layout { grid-template-columns: 1fr; }
  .checkout-grid-2 { grid-template-columns: 1fr; }

  body.has-detail-sticky {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .detail-sticky-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.1);
  }

  .detail-sticky-bar__price {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .detail-sticky-bar__amount {
    font-size: 18px;
    font-weight: 800;
    color: var(--success);
  }

  .detail-sticky-bar__sub {
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .detail-sticky-bar__cta {
    flex-shrink: 0;
    padding: 12px 20px;
  }

  .detail-actions--inline .btn-primary {
    display: none;
  }

  .product-spec__row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }

  .product-spec__label {
    font-size: 10px;
  }

  .product-spec__value {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .page-head h1 {
    font-size: 22px;
  }
}

/* meldeonlineab.de promo — server-rendered in index.html + suche.html (not cart/checkout) */
.promo-meldeonline {
  margin: 24px 0;
  padding: 0;
}

.promo-meldeonline__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid #bfdbfe;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.promo-meldeonline__content {
  flex: 1 1 280px;
  min-width: 0;
}

.promo-meldeonline__kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.promo-meldeonline__headline {
  margin: 0 0 8px;
  font-size: clamp(17px, 2.4vw, 20px);
  line-height: 1.35;
  font-weight: 700;
  color: var(--text);
}

.promo-meldeonline__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 62ch;
}

.promo-meldeonline__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.promo-meldeonline__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.promo-meldeonline__cta:hover {
  background: var(--primary-dark);
}

.promo-meldeonline__dismiss {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.promo-meldeonline__dismiss:hover {
  background: rgba(15, 23, 42, 0.06);
  color: var(--text);
}

@media (max-width: 640px) {
  .promo-meldeonline__inner {
    padding: 16px;
  }

  .promo-meldeonline__actions {
    width: 100%;
    justify-content: space-between;
  }

  .promo-meldeonline__cta {
    flex: 1;
    white-space: normal;
    text-align: center;
  }
}

/* Produktbilder — scharf: kein blur/backdrop, kein width/height 100% Upscale */
.site-header,
.detail-sticky-bar,
.home-search-panel,
.catalog-search-tools .home-search-panel {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.product-card .media img,
.product-card__img,
.product-grid .product-card .media img,
.page-catalog .product-card .media img {
  display: block;
  max-width: 100%;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  transform: none;
  filter: none;
}

.detail-gallery img,
.detail-main-image,
#detail-main-image {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: min(520px, 70vh);
  object-fit: contain;
  image-rendering: auto;
  transform: none;
  filter: none;
}

.thumb-row img {
  width: 72px;
  height: 72px;
  max-width: 72px;
  max-height: 72px;
  object-fit: contain;
  transform: none;
  filter: none;
}

.hero::after {
  transform: none;
  filter: none;
}

/* —— Homepage content sections —— */
.home-main {
  padding-bottom: 48px;
}

.home-trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.home-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.home-trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.home-trust-item__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
}

.home-trust-item__icon svg {
  width: 22px;
  height: 22px;
}

.home-trust-item strong {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 4px;
}

.home-trust-item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}

.home-section {
  padding: 48px 0 0;
}

.home-section__head {
  max-width: 640px;
  margin-bottom: 28px;
}

.home-section__head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  letter-spacing: -0.02em;
  color: var(--primary);
}

.home-section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.home-card-grid {
  display: grid;
  gap: 20px;
}

.home-card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.home-card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.home-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 32, 88, 0.06);
  border-top: 3px solid var(--primary);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.home-card:hover {
  box-shadow: 0 12px 32px rgba(0, 32, 88, 0.1);
  transform: translateY(-2px);
}

.home-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 16px;
}

.home-card__icon svg {
  width: 22px;
  height: 22px;
}

.home-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  color: var(--text);
}

.home-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.home-card--step {
  position: relative;
  padding-top: 28px;
}

.home-card__step {
  position: absolute;
  top: -14px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 32, 88, 0.25);
}

.home-vehicle-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 32, 88, 0.05);
  border-left: 4px solid var(--primary);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-vehicle-card:hover {
  border-color: var(--primary-border);
  box-shadow: 0 10px 28px rgba(0, 32, 88, 0.12);
  transform: translateY(-2px);
}

.home-vehicle-card__brand {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.home-vehicle-card__models {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.home-vehicle-card__cta {
  margin-top: auto;
  padding-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.home-popular {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-popular__chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 32, 88, 0.04);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.home-popular__chip:hover {
  background: var(--primary-soft);
  border-color: var(--primary-border);
  color: var(--primary);
}

.home-section--sustain {
  padding-top: 56px;
}

.home-sustain {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, var(--primary-soft) 0%, #fff 55%);
  border: 1px solid var(--primary-border);
}

.home-sustain__content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--primary);
  letter-spacing: -0.02em;
}

.home-sustain__content p {
  margin: 0 0 12px;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.65;
}

.home-sustain__content p:last-child {
  margin-bottom: 0;
}

.home-sustain__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-sustain__list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

.home-sustain__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.15;
}

.home-section--faq {
  padding-bottom: 16px;
}

.home-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.home-faq__item summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  list-style: none;
}

.home-faq__item summary::-webkit-details-marker {
  display: none;
}

.home-faq__item summary::after {
  content: "+";
  float: right;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.home-faq__item[open] summary::after {
  content: "−";
}

.home-faq__item p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .home-trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-sustain {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .home-trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .home-card-grid--3,
  .home-card-grid--4 {
    grid-template-columns: 1fr;
  }

  .home-section {
    padding-top: 36px;
  }

  .home-sustain {
    padding: 22px 18px;
  }
}
