/* ── Kundentyp: brutto/netto ──────────────────────────────────────────
   Der Shop faehrt zwei Token-Saetze: shop.css (--divider/--text-*) und
   shop-redesign.css (--line/--ink-*). Jede Farbe steht deshalb mit
   Rueckfall auf die jeweils andere Quelle, damit EINE Datei fuer beide
   Seitenwelten reicht. */
.shop-taxseg,
.kt-card {
  --kt-line: var(--line, var(--divider));
  --kt-line-2: var(--line-2, var(--divider-2));
  --kt-field: var(--field, var(--surface-elevated));
  --kt-card: var(--card, var(--surface));
  --kt-ink: var(--ink, var(--text-primary));
  --kt-ink-2: var(--ink-2, var(--text-secondary));
  --kt-ink-3: var(--ink-3, var(--text-tertiary));
}

/* Umschalter in der Kopfzeile */
.shop-taxseg {
  display: flex;
  gap: 2px;
  padding: 2px;
  border: 1px solid var(--kt-line);
  border-radius: 999px;
  background: var(--kt-field);
  flex-shrink: 0;
}
.shop-taxseg button {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--kt-ink-2);
  background: transparent;
  transition: background 0.12s, color 0.12s;
}
.shop-taxseg button:hover { color: var(--kt-ink); }
.shop-taxseg button.on {
  background: var(--kt-ink);
  color: var(--bg, #fff);
}

/* Auswahl beim ersten Besuch */
.kt-root {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
}
.kt-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 14, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.kt-card {
  position: relative;
  width: min(420px, 100%);
  background: var(--kt-card);
  border: 1px solid var(--kt-line);
  border-radius: 14px;
  padding: 26px 24px 20px;
  box-shadow: 0 24px 60px -12px rgba(14, 14, 20, 0.35);
  animation: ktIn 0.18s ease;
}
.kt-card h2 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--kt-ink);
}
.kt-sub {
  margin: 6px 0 18px;
  font-size: 13.5px;
  color: var(--kt-ink-2);
}
.kt-opt {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
  text-align: left;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  padding: 14px 16px;
  margin-bottom: 10px;
  border: 1px solid var(--kt-line-2);
  border-radius: 10px;
  background: transparent;
  transition: background 0.12s, border-color 0.12s;
}
.kt-opt:hover,
.kt-opt:focus-visible {
  background: var(--kt-field);
  border-color: var(--kt-ink);
  outline: none;
}
.kt-opt-t {
  font-size: 15px;
  font-weight: 700;
  color: var(--kt-ink);
}
.kt-opt-s {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--kt-ink-2);
}
.kt-note {
  margin: 14px 0 0;
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--kt-ink-3);
}

@keyframes ktIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .kt-card { animation: none; }
}
@media (max-width: 640px) {
  .shop-taxseg button { padding: 0 9px; font-size: 11px; }
}

/* Auf dem Handy eigene Leiste unter dem Kopf — die Kopfzeile ist dort voll. */
.shop-taxbar {
  display: flex;
  justify-content: flex-end;
  padding: 8px 16px 0;
}
