/* Refurbix Ankauf – Stylesheet v2 */

:root {
  --blue-dark: #0b2239;
  --blue: #14467c;
  --blue-light: #eaf1f9;
  --orange: #ff7a00;
  --orange-dark: #e56d00;
  --orange-soft: #fff3e8;
  --green: #189a52;
  --green-light: #e7f6ee;
  --red: #d23c3c;
  --red-light: #fdecec;
  --gray-bg: #f3f5f8;
  --gray-border: #e1e6ec;
  --gray-text: #5b6776;
  --text: #1c2630;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 3px rgba(11, 34, 57, 0.07), 0 4px 14px rgba(11, 34, 57, 0.06);
  --shadow-hover: 0 8px 28px rgba(11, 34, 57, 0.16);
  --ring: 0 0 0 3px rgba(255, 122, 0, 0.25);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.22; color: var(--blue-dark); letter-spacing: -0.015em; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

button { font-family: inherit; }

input:focus-visible, select:focus-visible, button:focus-visible { outline: none; box-shadow: var(--ring); }

/* ---------- Topbar ---------- */

.topbar { background: var(--blue-dark); color: #c6d8eb; font-size: 0.8rem; }
.topbar-inner { display: flex; gap: 28px; padding: 7px 20px; justify-content: center; flex-wrap: wrap; }

/* ---------- Header ---------- */

.header { background: #fff; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; gap: 24px; padding: 14px 20px; }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo:hover { text-decoration: none; }
.logo-text { font-size: 1.45rem; font-weight: 800; color: var(--blue-dark); letter-spacing: -0.03em; }
.logo-accent { color: var(--orange); }

.header-search { position: relative; flex: 1; max-width: 600px; }
.header-search input {
  width: 100%; padding: 12px 18px; font-size: 0.95rem;
  border: 2px solid var(--gray-border); border-radius: 999px; outline: none;
  background: var(--gray-bg); transition: border-color 0.15s, background 0.15s;
}
.header-search input:focus { border-color: var(--orange); background: #fff; box-shadow: none; }

.search-suggestions {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-hover);
  overflow: hidden; z-index: 60; border: 1px solid var(--gray-border);
}
.search-suggestion {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 10px 14px; border: none; background: none; cursor: pointer; text-align: left; font-size: 0.92rem;
}
.search-suggestion:hover, .search-suggestion.active { background: var(--blue-light); }
.search-suggestion img { width: 44px; height: 34px; object-fit: contain; }
.search-suggestion .price { margin-left: auto; font-weight: 700; color: var(--green); white-space: nowrap; }
.search-empty { padding: 12px 14px; color: var(--gray-text); font-size: 0.9rem; }

.cart-button {
  position: relative; display: flex; align-items: center; gap: 10px;
  color: var(--blue-dark); flex-shrink: 0; padding: 7px 12px; border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.cart-button:hover { background: var(--blue-light); text-decoration: none; }
.cart-info { display: flex; flex-direction: column; line-height: 1.2; }
.cart-label { font-size: 0.72rem; color: var(--gray-text); }
.cart-total { font-weight: 800; font-size: 0.95rem; color: var(--green); }
.cart-count {
  position: absolute; top: -1px; left: 24px;
  background: var(--orange); color: #fff; font-size: 0.7rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
  box-shadow: 0 0 0 2px #fff;
}

.mainnav { border-top: 1px solid var(--gray-border); background: #fff; }
.mainnav-inner { display: flex; gap: 2px; overflow-x: auto; padding: 0 20px; scrollbar-width: none; }
.mainnav-inner::-webkit-scrollbar { display: none; }
.mainnav a {
  padding: 11px 13px; font-size: 0.9rem; font-weight: 600; color: var(--blue-dark); white-space: nowrap;
  border-bottom: 3px solid transparent; transition: border-color 0.12s, color 0.12s;
}
.mainnav a:hover { text-decoration: none; border-bottom-color: var(--orange); color: var(--orange-dark); }

/* ---------- Main ---------- */

main { padding: 28px 20px 60px; min-height: 55vh; }

.breadcrumb { font-size: 0.85rem; color: var(--gray-text); margin-bottom: 18px; }
.breadcrumb a { color: var(--gray-text); }

/* ---------- Hero ---------- */

.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(255, 122, 0, 0.22), transparent 60%),
    radial-gradient(700px 380px at -10% 110%, rgba(36, 107, 175, 0.5), transparent 55%),
    linear-gradient(118deg, var(--blue-dark) 0%, #123a63 75%);
  border-radius: 22px; color: #fff; padding: 52px 48px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center;
  margin-bottom: 40px;
}
.hero h1 { color: #fff; font-size: 2.45rem; margin: 0 0 12px; }
.hero h1 .accent { color: var(--orange); }
.hero p { color: #cfdef0; font-size: 1.06rem; margin: 0 0 24px; max-width: 46ch; }
.hero-usps { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 11px; }
.hero-usps li { display: flex; align-items: center; gap: 11px; font-size: 0.98rem; }
.hero-usps .check {
  background: var(--orange); color: #fff; width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 800; flex-shrink: 0;
}
.hero-visual { text-align: center; }
.hero-visual img { max-width: 100%; max-height: 270px; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(0,0,0,0.4)); border-radius: 12px; }
.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22);
  padding: 8px 18px; border-radius: 999px; font-size: 0.92rem; margin-top: 16px; backdrop-filter: blur(4px);
}
.hero-badge strong { color: var(--orange); }
.hero-stats { display: flex; gap: 26px; margin-top: 22px; flex-wrap: wrap; }
.hero-stat .v { font-size: 1.35rem; font-weight: 800; color: #fff; }
.hero-stat .l { font-size: 0.78rem; color: #a9c2da; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: 999px; font-size: 1rem; font-weight: 700;
  border: none; cursor: pointer; transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.98); }
.btn-primary { background: linear-gradient(180deg, #ff8a1e, var(--orange-dark)); color: #fff; box-shadow: 0 3px 10px rgba(229, 109, 0, 0.35); }
.btn-primary:hover { background: linear-gradient(180deg, #ff9536, var(--orange)); }
.btn-secondary { background: #fff; color: var(--blue-dark); border: 2px solid var(--gray-border); }
.btn-secondary:hover { border-color: var(--blue-dark); }
.btn-ghost { background: none; color: var(--blue); padding: 8px 12px; }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 34px; font-size: 1.08rem; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; box-shadow: none; }

/* ---------- Sections ---------- */

.section { margin-bottom: 48px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.section-head h2 { margin: 0; font-size: 1.5rem; }
.section-head a { font-weight: 600; font-size: 0.92rem; white-space: nowrap; }

/* ---------- Verkaufs-Assistent ---------- */

.wizard {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 28px;
}
.wizard-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.wizard-head h2 { margin: 0; font-size: 1.45rem; }
.wizard-steps { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--gray-text); flex-wrap: wrap; }
.wizard-steps .wstep { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.wizard-steps .wstep .n {
  width: 22px; height: 22px; border-radius: 50%; background: var(--gray-border); color: var(--gray-text);
  display: inline-flex; align-items: center; justify-content: center; font-size: 0.74rem; font-weight: 800;
}
.wizard-steps .wstep.active { color: var(--blue-dark); }
.wizard-steps .wstep.active .n { background: var(--orange); color: #fff; }
.wizard-steps .wstep.done { color: var(--green); }
.wizard-steps .wstep.done .n { background: var(--green); color: #fff; }
.wizard-steps .wsep { color: var(--gray-border); }

.wizard-path { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.path-chip {
  background: var(--blue-light); color: var(--blue-dark); border: none; border-radius: 999px;
  padding: 7px 14px; font-size: 0.86rem; font-weight: 600; cursor: pointer;
}
.path-chip:hover { background: var(--orange-soft); color: var(--orange-dark); }

.chip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; }
.chip-grid.brands { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
.wizard-card {
  background: var(--gray-bg); border: 2px solid transparent; border-radius: var(--radius-sm);
  padding: 14px; text-align: center; cursor: pointer; display: flex; flex-direction: column; gap: 3px; align-items: center;
  transition: border-color 0.12s, background 0.12s, transform 0.12s; font-family: inherit;
}
.wizard-card:hover { border-color: var(--orange); background: #fff; transform: translateY(-2px); }
.wizard-card img { height: 64px; object-fit: contain; margin-bottom: 6px; }
.wizard-card .t { font-weight: 700; font-size: 0.92rem; color: var(--blue-dark); }
.wizard-card .s { font-size: 0.78rem; color: var(--gray-text); }
.wizard-card.brand { padding: 18px 14px; }

.model-list { display: grid; gap: 8px; max-height: 480px; overflow-y: auto; padding-right: 4px; }
.model-row {
  display: flex; align-items: center; gap: 14px; padding: 10px 14px;
  background: var(--gray-bg); border-radius: var(--radius-sm); color: inherit;
  border: 2px solid transparent; transition: border-color 0.12s, background 0.12s;
}
.model-row:hover { border-color: var(--orange); background: #fff; text-decoration: none; }
.model-row img { width: 56px; height: 44px; object-fit: contain; flex-shrink: 0; }
.model-row .info { flex: 1; display: flex; flex-direction: column; line-height: 1.3; }
.model-row .t { font-weight: 700; font-size: 0.93rem; color: var(--blue-dark); }
.model-row .s { font-size: 0.78rem; color: var(--gray-text); }
.model-row .price-upto .amount { font-size: 1.05rem; }
.model-row .arrow { color: var(--orange); font-weight: 800; }

.notfound-box {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  margin-top: 18px; padding: 14px 18px; border: 2px dashed var(--gray-border); border-radius: var(--radius-sm);
  font-size: 0.92rem; color: var(--gray-text);
}

/* ---------- Kategorie-Kacheln ---------- */

.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 18px; }
.category-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 22px 22px 20px; display: flex; flex-direction: column; gap: 5px;
  transition: box-shadow 0.18s, transform 0.18s; color: inherit; border: 1px solid transparent;
}
.category-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); text-decoration: none; border-color: var(--gray-border); }
.category-card img { height: 110px; object-fit: contain; margin-bottom: 12px; }
.category-card h3 { margin: 0; font-size: 1.08rem; }
.category-card p { margin: 0; color: var(--gray-text); font-size: 0.87rem; }
.category-card .count { margin-top: 10px; font-weight: 700; color: var(--orange-dark); font-size: 0.88rem; }

/* ---------- Produktkarten ---------- */

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(235px, 1fr)); gap: 18px; }
.product-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  display: flex; flex-direction: column; overflow: hidden; color: inherit;
  transition: box-shadow 0.18s, transform 0.18s; border: 1px solid transparent;
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); text-decoration: none; border-color: var(--gray-border); }
.product-card .img-wrap { background: #fff; height: 165px; display: flex; align-items: center; justify-content: center; padding: 16px; border-bottom: 1px solid var(--gray-border); }
.product-card img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-card .body { padding: 14px 16px 17px; display: flex; flex-direction: column; flex: 1; }
.product-card .brand { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--gray-text); font-weight: 600; }
.product-card h3 { margin: 3px 0 7px; font-size: 1rem; }
.product-card .specs { font-size: 0.81rem; color: var(--gray-text); margin-bottom: 12px; }
.product-card .price-row { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.price-upto { display: flex; flex-direction: column; line-height: 1.15; }
.price-upto .upto { font-size: 0.72rem; color: var(--gray-text); }
.price-upto .amount { font-size: 1.32rem; font-weight: 800; color: var(--green); }
.product-card .btn { padding: 9px 16px; font-size: 0.87rem; }

/* ---------- Kategorie-Toolbar ---------- */

.toolbar {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 12px 16px; margin: 18px 0 22px;
}
.toolbar .filter-input {
  flex: 1; min-width: 200px; padding: 10px 14px; font-size: 0.92rem;
  border: 2px solid var(--gray-border); border-radius: 999px; outline: none;
}
.toolbar .filter-input:focus { border-color: var(--orange); box-shadow: none; }
.toolbar select {
  padding: 10px 14px; font-size: 0.9rem; border: 2px solid var(--gray-border);
  border-radius: 999px; background: #fff; outline: none; font-family: inherit; cursor: pointer;
}
.toolbar .result-count { font-size: 0.85rem; color: var(--gray-text); white-space: nowrap; }

/* ---------- Produktdetail ---------- */

.product-detail { display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px; align-items: start; }
.product-gallery { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; text-align: center; position: sticky; top: 130px; }
.product-gallery img { max-width: 100%; max-height: 320px; object-fit: contain; }
.image-credit { font-size: 0.7rem; color: var(--gray-text); margin-top: 12px; }
.spec-list { list-style: none; padding: 0; margin: 18px 0 0; text-align: left; font-size: 0.88rem; }
.spec-list li { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; border-bottom: 1px dashed var(--gray-border); }
.spec-list li:last-child { border-bottom: none; }
.spec-list .k { color: var(--gray-text); }
.spec-list .v { font-weight: 600; text-align: right; }

.configurator { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; }
.configurator h1 { font-size: 1.55rem; margin: 0 0 4px; }
.configurator .subtitle { color: var(--gray-text); margin: 0 0 22px; font-size: 0.92rem; }
.config-step { margin-bottom: 26px; }
.config-step > h3 { font-size: 1.02rem; margin: 0 0 4px; display: flex; align-items: center; gap: 10px; }
.config-step .hint { font-size: 0.84rem; color: var(--gray-text); margin: 0 0 12px; }
.step-num {
  background: var(--blue-dark); color: #fff; width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0;
}

.condition-options { display: grid; gap: 10px; }
.condition-option {
  display: flex; gap: 12px; align-items: flex-start; padding: 13px 14px;
  border: 2px solid var(--gray-border); border-radius: var(--radius-sm); cursor: pointer; transition: border-color 0.12s, background 0.12s;
}
.condition-option:hover { border-color: var(--blue); }
.condition-option.selected { border-color: var(--orange); background: var(--orange-soft); }
.condition-option input { margin-top: 4px; accent-color: var(--orange); }
.condition-option .texts { flex: 1; }
.condition-option .label { font-weight: 700; font-size: 0.95rem; }
.condition-option .desc { font-size: 0.82rem; color: var(--gray-text); }
.condition-option .delta { font-size: 0.85rem; font-weight: 700; color: var(--green); white-space: nowrap; }

.accessory-options { display: grid; gap: 8px; }
.accessory-option {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px;
  border: 2px solid var(--gray-border); border-radius: var(--radius-sm); cursor: pointer; font-size: 0.92rem;
}
.accessory-option:hover { border-color: var(--blue); }
.accessory-option.selected { border-color: var(--orange); background: var(--orange-soft); }
.accessory-option input { accent-color: var(--orange); }
.accessory-option .effect { margin-left: auto; font-size: 0.82rem; color: var(--gray-text); white-space: nowrap; }

.price-box {
  background: var(--green-light); border: 2px solid var(--green); border-radius: var(--radius);
  padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px;
}
.price-box .label { font-size: 0.88rem; color: var(--blue-dark); font-weight: 600; }
.price-box .value { font-size: 2rem; font-weight: 800; color: var(--green); white-space: nowrap; }

/* ---------- So funktioniert's ---------- */

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px 20px; text-align: center; }
.step-card .icon {
  width: 56px; height: 56px; border-radius: 16px; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.5rem;
}
.step-card h3 { font-size: 1rem; margin: 0 0 6px; }
.step-card p { font-size: 0.86rem; color: var(--gray-text); margin: 0; }
.step-card .num { color: var(--orange); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Trust ---------- */

.trust-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-item { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; display: flex; gap: 14px; align-items: center; }
.trust-item .emoji { font-size: 1.7rem; }
.trust-item .t { font-weight: 700; font-size: 0.9rem; }
.trust-item .s { font-size: 0.8rem; color: var(--gray-text); }

/* ---------- FAQ ---------- */

.faq-list { display: grid; gap: 10px; max-width: 840px; }
.faq-item { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 16px 20px; font-weight: 700; font-size: 0.97rem; color: var(--blue-dark);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--orange); font-weight: 400; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 20px 18px; color: var(--gray-text); font-size: 0.92rem; }

/* ---------- Verkaufskorb ---------- */

.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; align-items: start; }
.cart-items { display: grid; gap: 14px; }
.cart-item {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  display: flex; gap: 18px; padding: 16px 18px; align-items: center;
}
.cart-item img { width: 90px; height: 70px; object-fit: contain; flex-shrink: 0; }
.cart-item .info { flex: 1; }
.cart-item h3 { margin: 0 0 4px; font-size: 1rem; }
.cart-item .meta { font-size: 0.84rem; color: var(--gray-text); }
.cart-item .price { font-size: 1.2rem; font-weight: 800; color: var(--green); white-space: nowrap; }
.cart-item .remove {
  background: none; border: none; color: var(--gray-text); cursor: pointer; font-size: 1.2rem; padding: 6px;
  border-radius: 8px;
}
.cart-item .remove:hover { color: var(--red); background: var(--red-light); }

.summary-box { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; position: sticky; top: 130px; }
.summary-box h3 { margin: 0 0 16px; font-size: 1.1rem; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.92rem; padding: 6px 0; gap: 12px; }
.summary-row.total { border-top: 2px solid var(--gray-border); margin-top: 10px; padding-top: 14px; font-weight: 800; font-size: 1.15rem; }
.summary-row.total .v { color: var(--green); font-size: 1.4rem; }
.summary-note { font-size: 0.8rem; color: var(--gray-text); margin: 14px 0 16px; }

.empty-state { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 60px 30px; text-align: center; }
.empty-state .emoji { font-size: 3rem; margin-bottom: 10px; }
.empty-state p { color: var(--gray-text); }

/* ---------- Checkout ---------- */

.checkout-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; align-items: start; }
.form-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; margin-bottom: 20px; }
.form-card h3 { margin: 0 0 18px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.84rem; font-weight: 600; color: var(--blue-dark); }
.form-field label .req { color: var(--red); }
.form-field input, .form-field select {
  padding: 11px 13px; border: 2px solid var(--gray-border); border-radius: var(--radius-sm); font-size: 0.95rem; outline: none;
  font-family: inherit; background: #fff;
}
.form-field input:focus, .form-field select:focus { border-color: var(--orange); box-shadow: none; }
.form-field input.invalid { border-color: var(--red); background: var(--red-light); }
.field-hint { font-size: 0.76rem; color: var(--gray-text); }

.choice-cards { display: grid; gap: 10px; }
.choice-card {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px; border: 2px solid var(--gray-border);
  border-radius: var(--radius-sm); cursor: pointer;
}
.choice-card:hover { border-color: var(--blue); }
.choice-card.selected { border-color: var(--orange); background: var(--orange-soft); }
.choice-card input { margin-top: 3px; accent-color: var(--orange); }
.choice-card .t { font-weight: 700; font-size: 0.94rem; }
.choice-card .s { font-size: 0.82rem; color: var(--gray-text); }
.choice-card .badge-free { margin-left: auto; background: var(--green-light); color: var(--green); font-size: 0.74rem; font-weight: 800; padding: 3px 10px; border-radius: 999px; white-space: nowrap; }

.consent-list { display: grid; gap: 12px; }
.consent-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.87rem; cursor: pointer; }
.consent-item input { margin-top: 3px; accent-color: var(--orange); flex-shrink: 0; }

.error-box { background: var(--red-light); border: 2px solid var(--red); border-radius: var(--radius); padding: 14px 18px; margin-bottom: 18px; }
.error-box ul { margin: 0; padding-left: 18px; font-size: 0.88rem; color: var(--red); }

/* ---------- Bestätigung ---------- */

.confirmation { max-width: 760px; margin: 0 auto; }
.confirmation-head { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px; text-align: center; margin-bottom: 20px; }
.confirmation-head .check-big {
  width: 70px; height: 70px; border-radius: 50%; background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 18px;
}
.confirmation-head h1 { margin: 0 0 8px; font-size: 1.6rem; }
.confirmation-head .order-number { font-size: 1.1rem; }
.confirmation-head .order-number strong { color: var(--orange); font-size: 1.3rem; }

.next-steps { counter-reset: step; display: grid; gap: 0; }
.next-step { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px dashed var(--gray-border); }
.next-step:last-child { border-bottom: none; }
.next-step .n {
  counter-increment: step; background: var(--blue-light); color: var(--blue-dark); font-weight: 800;
  width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.next-step .n::before { content: counter(step); }
.next-step .t { font-weight: 700; }
.next-step .s { font-size: 0.88rem; color: var(--gray-text); }

/* ---------- Status ---------- */

.status-timeline { display: grid; gap: 0; margin-top: 8px; }
.status-step { display: flex; gap: 14px; align-items: flex-start; padding-bottom: 22px; position: relative; }
.status-step::before {
  content: ""; position: absolute; left: 13px; top: 28px; bottom: 0; width: 2px; background: var(--gray-border);
}
.status-step:last-child::before { display: none; }
.status-step .dot {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
  background: var(--gray-border); color: var(--gray-text);
}
.status-step.done .dot { background: var(--green); color: #fff; }
.status-step.current .dot { background: var(--orange); color: #fff; }
.status-step .t { font-weight: 700; font-size: 0.95rem; }
.status-step .s { font-size: 0.82rem; color: var(--gray-text); }

.status-badge {
  display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 700;
}
.status-eingegangen { background: var(--blue-light); color: var(--blue); }
.status-ware-eingetroffen { background: #fff3e0; color: var(--orange-dark); }
.status-in-pruefung { background: #fff3e0; color: var(--orange-dark); }
.status-nachverhandlung { background: var(--red-light); color: var(--red); }
.status-ruecksendung { background: #fff3e0; color: var(--orange-dark); }
.status-ausgezahlt { background: var(--green-light); color: var(--green); }
.status-storniert { background: var(--red-light); color: var(--red); }

/* ---------- Inhaltsseiten ---------- */

.content-page { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px; max-width: 880px; }
.content-page h1 { margin-top: 0; }
.content-page h2 { font-size: 1.15rem; margin-top: 28px; }
.content-page p, .content-page li { color: var(--text); font-size: 0.94rem; }

/* ---------- Toast ---------- */

.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  background: var(--blue-dark); color: #fff; padding: 13px 26px; border-radius: 999px;
  box-shadow: var(--shadow-hover); font-size: 0.92rem; z-index: 100;
  animation: toast-in 0.25s ease;
}
@keyframes toast-in { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ---------- Footer ---------- */

.footer { background: var(--blue-dark); color: #b9cbdd; margin-top: 40px; }
.footer a { color: #d9e6f2; display: block; padding: 3px 0; font-size: 0.9rem; }
.footer h4 { color: #fff; margin: 0 0 10px; }
.footer p { font-size: 0.88rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding: 40px 20px 28px; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.12); padding: 16px 20px; font-size: 0.78rem; color: #8aa3bb;
}

/* ---------- Cookie-Consent ---------- */

.consent-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 200;
  max-width: 680px; margin: 0 auto;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-hover);
  border: 1px solid var(--gray-border); padding: 18px 22px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.consent-banner p { margin: 0; font-size: 0.88rem; flex: 1; min-width: 240px; }
.consent-banner .consent-actions { display: flex; gap: 10px; }
.consent-banner .btn { padding: 9px 18px; font-size: 0.88rem; }

/* ---------- Begleitschein (Druck) ---------- */

.packing-slip { display: none; }

@media print {
  body * { visibility: hidden; }
  .packing-slip, .packing-slip * { visibility: visible; }
  .packing-slip {
    display: block; position: absolute; top: 0; left: 0; width: 100%;
    padding: 40px; font-size: 13px; color: #000;
  }
  .packing-slip h1 { font-size: 22px; }
  .packing-slip table { width: 100%; border-collapse: collapse; margin: 16px 0; }
  .packing-slip th, .packing-slip td { border: 1px solid #444; padding: 7px 10px; text-align: left; font-size: 12px; }
  .packing-slip .slip-box { border: 2px solid #000; padding: 14px; margin: 14px 0; }
}

/* ---------- Responsive ---------- */

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; padding: 34px 26px; }
  .hero-visual { display: none; }
  .product-detail, .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .product-gallery, .summary-box { position: static; }
  .steps-grid, .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .header-inner { flex-wrap: wrap; gap: 14px; }
  .header-search { order: 3; max-width: none; flex-basis: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .steps-grid, .trust-bar, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.65rem; }
  .toolbar { flex-direction: column; align-items: stretch; }
}
