/* ── Objekttyp-Schnellwahl ──────────────────────────── */
.objekt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
@media (min-width: 576px) {
  .objekt-grid { grid-template-columns: repeat(6, 1fr); }
}
.objekt-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 6px;
  border: 2px solid #dee2e6;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 500;
  color: #495057;
  transition: all .15s;
  text-align: center;
  line-height: 1.2;
}
.objekt-btn .obj-icon { font-size: 1.5rem; }
.objekt-btn:hover { border-color: #02b1ec; background: #f0fafe; color: #02b1ec; }
.objekt-btn.active { border-color: #02b1ec; background: #e8f8fd; color: #02b1ec; font-weight: 700; }

/* ── Raumwähler ─────────────────────────────────────── */
.raumwaehler {
  border: 1px solid #dee2e6;
  border-radius: 12px;
  overflow: hidden;
}
.raum-row {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s;
}
.raum-row:last-child { border-bottom: none; }
.raum-row.has-value  { background: #f0fafe; }

.raum-icon  { font-size: 1.3rem; width: 36px; flex-shrink: 0; }
.raum-label { flex: 1; font-size: .95rem; font-weight: 500; }

.raum-stepper {
  display: flex;
  align-items: center;
  gap: 0;
}
.stepper-btn {
  width: 36px; height: 36px;
  border: 1.5px solid #ced4da;
  background: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: all .15s;
  display: flex; align-items: center; justify-content: center;
}
.stepper-btn.minus { border-radius: 8px 0 0 8px; }
.stepper-btn.plus  { border-radius: 0 8px 8px 0; border-left: none; }
.stepper-btn:hover { background: #e8f8fd; border-color: #02b1ec; color: #02b1ec; }
.stepper-btn:active { transform: scale(.92); }

.stepper-val {
  min-width: 38px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  border-top: 1.5px solid #ced4da;
  border-bottom: 1.5px solid #ced4da;
  height: 36px;
  line-height: 33px;
  color: #212529;
}
.has-value .stepper-val { color: #02b1ec; }
.has-value .stepper-btn.plus {
  background: #02b1ec; border-color: #02b1ec; color: #fff;
}

/* ── Print / PDF ────────────────────────────────────── */
@media print {
  body { background: #fff !important; }
  .no-print,
  #service-cards,
  #placeholder,
  .step-label,
  .card-body .btn,
  a.btn { display: none !important; }
  .card { box-shadow: none !important; border: 1px solid #dee2e6 !important; }
  #details-section { display: block !important; }
  .service-block { display: block !important; }
  #preis-range { font-size: 2rem !important; }
}