/* ──────────────────────────────────────────────────────────────────
   EL BART · BEAT THE DISTILLER — Stylesheet v1.0 (2.7.1)
   Dunkles Aviation-Theme (Ink/Brass/Bone), mobile-first, build-frei.
   ────────────────────────────────────────────────────────────────── */
:root {
  --bt-ink: #1A1410;
  --bt-ink-2: #241C16;
  --bt-bone: #F8F3E6;
  --bt-bone-dim: rgba(248, 243, 230, 0.72);
  --bt-mut: rgba(248, 243, 230, 0.55);
  --bt-brass: #B4894A;
  --bt-brass-d: #8A6532;
  --bt-line: rgba(180, 137, 74, 0.35);
  --bt-green: #6FA287;
  --bt-red: #D66A5E;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bt-ink);
  color: var(--bt-bone);
  font: 16px/1.55 Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.bt-app {
  max-width: 560px;
  margin: 0 auto;
  padding: 1.4rem 1.1rem calc(3rem + env(safe-area-inset-bottom, 0));
}

/* ─── Kopf / Marke ───────────────────────────────────────────────── */
.bt-head { text-align: center; padding-top: 1rem; }
.bt-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--bt-brass); margin: 0 0 0.6rem;
}
.bt-logo {
  margin: 0; font-size: 2.1rem; line-height: 0.95; letter-spacing: 0.06em;
  font-style: italic; font-weight: 700;
}
.bt-logo span {
  display: block; font-size: 0.85rem; letter-spacing: 0.55em;
  color: var(--bt-brass); font-style: normal; margin: 0.25rem 0;
}
.bt-claim { color: var(--bt-brass); font-style: italic; margin: 0.8rem 0 0; }

/* Medaille(n) */
.bt-startmedal { text-align: center; margin: 1.6rem 0 1.2rem; }
.bt-medalrow { display: flex; align-items: center; justify-content: center; gap: 0.9rem; }
.bt-medal-sm {
  width: 58px; height: 58px; object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.45));
  opacity: 0.95;
}
/* Echtes Medaillen-Bild: OHNE goldenen Hintergrund/Beschnitt — das Bild steht für sich
   (nur ein weicher Schatten). Der goldene Kreis gehört ausschließlich zum SVG-Fallback. */
.bt-medal { display: inline-block; background: transparent; }
.bt-medal img {
  width: 100%; height: 100%; display: block; object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
}
.bt-medal svg { width: 100%; height: 100%; display: block; }
.bt-medal--svg {
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(180, 137, 74, 0.65);
}
.bt-byline { font-size: 0.85rem; color: var(--bt-bone-dim); margin: 0.7rem 0 0; }
.bt-byline strong { color: var(--bt-brass); }

/* „So funktioniert's" auf der Startseite */
.bt-how {
  background: var(--bt-ink-2); border: 1px solid var(--bt-line);
  border-radius: 14px; padding: 1.1rem 1.2rem; margin-top: 1.3rem;
}
.bt-how-title {
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--bt-brass); margin: 0 0 0.6rem;
}
.bt-how ul { margin: 0; padding: 0; list-style: none; }
.bt-how li {
  position: relative; padding-left: 1.3rem; margin: 0.45rem 0;
  font-size: 0.9rem; line-height: 1.45; color: var(--bt-bone-dim);
}
.bt-how li::before {
  content: "◆"; position: absolute; left: 0; top: 0.1rem;
  color: var(--bt-brass); font-size: 0.6rem;
}

/* ─── Buttons / Inputs ───────────────────────────────────────────── */
.bt-stack { display: flex; flex-direction: column; gap: 0.7rem; margin: 1.4rem 0 0.8rem; }
.bt-btn {
  display: block; width: 100%; text-align: center; text-decoration: none;
  background: linear-gradient(180deg, #C0954F, var(--bt-brass) 55%, var(--bt-brass-d));
  color: #241A0E; font: inherit; font-weight: 700; font-size: 1.02rem;
  border: 0; border-radius: 10px; padding: 0.95rem 1.2rem; cursor: pointer;
  box-shadow: 0 10px 24px -10px rgba(154, 114, 55, 0.9);
}
.bt-btn:disabled { opacity: 0.45; cursor: default; box-shadow: none; }
.bt-btn--ghost {
  background: transparent; color: var(--bt-bone);
  border: 1px solid var(--bt-line); box-shadow: none;
}
.bt-link {
  display: block; margin: 0.9rem auto 0; background: none; border: 0;
  color: var(--bt-mut); font: inherit; font-size: 0.88rem; cursor: pointer;
}
.bt-hint { text-align: center; color: var(--bt-mut); font-size: 0.88rem; margin: 0.9rem 0; }
.bt-err { color: var(--bt-red); font-size: 0.9rem; margin: 0.5rem 0; }
.bt-note { color: var(--bt-mut); font-size: 0.8rem; margin: 0.6rem 0 0; }
.bt-mut { color: var(--bt-mut); }

.bt-card {
  background: var(--bt-ink-2); border: 1px solid var(--bt-line);
  border-radius: 16px; padding: 1.4rem 1.2rem; margin-top: 1.6rem;
}
.bt-card h2 { margin: 0 0 0.4rem; font-size: 1.25rem; }

.bt-input, .bt-code {
  width: 100%; font: inherit; color: var(--bt-bone);
  background: rgba(248, 243, 230, 0.06); border: 1px solid var(--bt-line);
  border-radius: 10px; padding: 0.8rem 0.9rem; margin-top: 0.6rem;
}
.bt-input::placeholder, .bt-code::placeholder { color: rgba(248, 243, 230, 0.3); }
.bt-code {
  font-size: 1.9rem; letter-spacing: 0.55em; text-align: center;
  font-family: ui-monospace, Menlo, Consolas, monospace; padding-left: 1.3rem;
}
.bt-chk {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.85rem; color: var(--bt-bone-dim); margin-top: 0.9rem; cursor: pointer;
}
.bt-chk input { width: 1.1rem; height: 1.1rem; margin-top: 0.15rem; accent-color: var(--bt-brass); flex: 0 0 auto; }

.bt-choice {
  display: block; width: 100%; text-align: left; font: inherit; color: var(--bt-bone);
  background: rgba(248, 243, 230, 0.05); border: 1px solid var(--bt-line);
  border-radius: 12px; padding: 0.95rem 1.1rem; margin-top: 0.8rem; cursor: pointer;
}
.bt-choice strong { display: block; font-size: 1.05rem; color: var(--bt-brass); }
.bt-choice span { display: block; font-size: 0.85rem; color: var(--bt-mut); margin-top: 0.15rem; }

.bt-slugcard {
  display: flex; flex-direction: column; gap: 0.25rem; text-align: center;
  background: var(--bt-ink-2); border: 1px dashed var(--bt-brass-d);
  border-radius: 12px; padding: 0.8rem 1rem; margin-top: 1.2rem;
}
.bt-badge {
  align-self: center; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bt-brass); border: 1px solid var(--bt-line); border-radius: 20px; padding: 0.15rem 0.7rem;
}

/* Gin-Auswahl fürs Zuhause-Tasting (alle vorausgewählt, abwählbar) */
.bt-ginpicks { display: flex; flex-direction: column; gap: 0.55rem; margin-top: 0.9rem; }
.bt-ginpick {
  display: flex; align-items: center; gap: 0.7rem; width: 100%;
  font: inherit; font-size: 1rem; color: var(--bt-mut); text-align: left;
  background: rgba(248, 243, 230, 0.04); border: 1px dashed var(--bt-line);
  border-radius: 12px; padding: 0.8rem 1rem; cursor: pointer; min-height: 3rem;
}
.bt-ginpick-check {
  width: 1.5rem; height: 1.5rem; border-radius: 50%; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--bt-line); color: transparent; font-size: 0.85rem; font-weight: 700;
}
.bt-ginpick.on { color: var(--bt-bone); border-style: solid; border-color: var(--bt-brass); background: rgba(180, 137, 74, 0.14); }
.bt-ginpick.on .bt-ginpick-check { background: var(--bt-brass); border-color: var(--bt-brass); color: #241A0E; }

/* Verdeckte Zuordnung (blind): drei Gläser mit Fragezeichen */
.bt-cover { display: flex; gap: 0.8rem; justify-content: center; margin-top: 1.1rem; }
.bt-cover span {
  width: 3.2rem; height: 3.2rem; border-radius: 50%;
  border: 1px dashed var(--bt-brass); background: rgba(248, 243, 230, 0.06);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.15rem; color: var(--bt-bone-dim);
  position: relative;
}
.bt-cover span::after {
  content: "?"; position: absolute; right: -0.2rem; bottom: -0.2rem;
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: var(--bt-brass); color: #241A0E; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
}

/* Einladen-Schritt (QR fürs private Tasting) */
.bt-sharebox { background: #FFFFFF; border-radius: 12px; padding: 8px; display: inline-block; line-height: 0; margin: 0.8rem auto 0.4rem; }
.bt-sharelink {
  font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 0.8rem;
  color: var(--bt-bone-dim); word-break: break-all; user-select: all; margin: 0.3rem 0 0;
}

/* ─── Einschenken ────────────────────────────────────────────────── */
.bt-pourrow {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(180, 137, 74, 0.18);
  font-size: 1.05rem;
}
.bt-glassbadge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.2rem; height: 2.2rem; padding: 0 0.5rem; border-radius: 50%;
  background: var(--bt-brass); color: #241A0E; font-weight: 700;
}
/* Groß + unübersehbar: WELCHES Glas gerade verkostet wird (User-Feedback: war zu klein) */
.bt-glassbadge--big {
  min-width: 4.6rem; height: 4.6rem; font-size: 2.4rem; font-style: italic;
  box-shadow: 0 0 0 3px rgba(180, 137, 74, 0.35), 0 10px 24px -8px rgba(180, 137, 74, 0.7);
}

/* ─── Phase ──────────────────────────────────────────────────────── */
.bt-phasehead { padding-top: 0.4rem; }
.bt-progress {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bt-mut); text-align: center; margin-bottom: 0.9rem;
}
.bt-glassrow { display: flex; align-items: center; gap: 0.9rem; }
.bt-phasename {
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--bt-brass); margin: 0;
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.bt-phicon { flex: 0 0 auto; vertical-align: -3px; }
.bt-phtag .bt-phicon { margin-right: 0.3rem; vertical-align: -2px; }
.bt-q { margin: 0.1rem 0 0; font-size: 1.45rem; font-style: italic; }
.bt-openmap { color: var(--bt-mut); font-size: 0.85rem; margin: 0.5rem 0 0; }

.bt-wheelwrap { max-width: 340px; margin: 1.1rem auto 0; }
.bt-wheel { display: block; width: 100%; height: auto; }
.bt-seg { cursor: pointer; stroke: var(--bt-ink); stroke-width: 1; transition: opacity 0.18s ease; }
.bt-seg.dim { opacity: 0.28; }
.bt-seg-dot { fill: #FFFFFF; stroke: var(--bt-ink); stroke-width: 1.2; opacity: 0; pointer-events: none; transition: opacity 0.15s ease; }
.bt-seg-dot.on { opacity: 1; }
.bt-wheel-center1, .bt-wheel-center2 {
  fill: var(--bt-ink); font-family: Georgia, serif; font-style: italic;
}
.bt-wheel-center1 { font-size: 17px; }
.bt-wheel-center2 { font-size: 17px; }

.bt-fams { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; margin: 0.8rem 0 0; }
.bt-fam {
  font: inherit; font-size: 0.8rem; color: var(--bt-bone);
  background: rgba(248, 243, 230, 0.06); border: 1px solid var(--bt-line);
  border-radius: 20px; padding: 0.35rem 0.8rem; cursor: pointer;
  border-left: 5px solid var(--fc, var(--bt-brass));
}
.bt-fam.on { background: var(--fc, var(--bt-brass)); color: #1A1410; font-weight: 700; border-color: var(--fc, var(--bt-brass)); }

.bt-picker { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0.9rem 0 0; justify-content: center; }
.bt-chip {
  display: inline-flex; align-items: stretch; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--bt-line); background: rgba(248, 243, 230, 0.05);
  min-height: 2.75rem; /* Touch-Ziel ≥ 44px */
}
.bt-chip-main {
  font: inherit; font-size: 0.95rem; color: var(--bt-bone); background: transparent;
  border: 0; padding: 0.5rem 0.75rem 0.5rem 0.95rem; cursor: pointer;
  border-left: 6px solid var(--ac, var(--bt-brass));
}
.bt-chip.on { background: var(--ac, var(--bt-brass)); border-color: var(--ac, var(--bt-brass)); }
.bt-chip.on .bt-chip-main { color: #16100B; font-weight: 700; }
.bt-chip-info {
  font: inherit; font-size: 1.05rem; font-style: italic; font-weight: 700;
  color: var(--bt-bone-dim);
  background: rgba(0, 0, 0, 0.18); border: 0; border-left: 1px solid rgba(0, 0, 0, 0.25);
  width: 2.75rem; cursor: pointer; /* mobile-tauglich (User-Feedback: war zu klein) */
}
.bt-chip.on .bt-chip-info { color: rgba(22, 16, 11, 0.75); }
/* „Familie erkannt, nicht genauer" — gestrichelt, volle Breite unter den Aromen */
.bt-chip--any { border-style: dashed; border-color: var(--bt-brass); flex-basis: 100%; justify-content: center; }
.bt-chip--any .bt-chip-main { border-left: 0; color: var(--bt-brass); font-style: italic; }
.bt-chip--any.on { background: rgba(180, 137, 74, 0.25); border-style: solid; }
.bt-chip--any.on .bt-chip-main { color: var(--bt-bone); }

.bt-selected { margin-top: 1rem; }
.bt-selhead { font-size: 0.8rem; color: var(--bt-mut); margin: 0 0 0.4rem; }
.bt-selrow {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 0; border-bottom: 1px solid rgba(180, 137, 74, 0.16);
}
.bt-selname { flex: 1; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; }
.bt-selname i { width: 12px; height: 12px; border-radius: 3px; display: inline-block; flex: 0 0 auto; }
.bt-ints { display: inline-flex; gap: 0.25rem; }
.bt-int {
  width: 1.7rem; height: 1.7rem; border-radius: 50%; font: inherit; font-size: 0.78rem;
  color: var(--bt-mut); background: transparent; border: 1px solid var(--bt-line); cursor: pointer;
}
.bt-int.on { background: var(--bt-brass); border-color: var(--bt-brass); color: #241A0E; font-weight: 700; }
.bt-selx { background: none; border: 0; color: var(--bt-mut); font-size: 0.9rem; cursor: pointer; padding: 0.3rem; }

.bt-cant { margin-top: 1.1rem; }
.bt-confirmbar { margin-top: 1rem; text-align: center; }
.bt-confirmbar .bt-note { text-align: center; }

/* Geschmacks-Bewertung: Slider 1–10 ohne Zahlen */
.bt-raterow { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.1rem; }
.bt-ratewrap { flex: 1; }
.bt-rate {
  -webkit-appearance: none; appearance: none; width: 100%; height: 8px;
  border-radius: 5px; background: rgba(248, 243, 230, 0.14); outline: none; margin: 0.4rem 0 0.15rem;
}
.bt-rate::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #C79A57, var(--bt-brass-d));
  border: 2px solid var(--bt-bone); cursor: pointer;
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.5);
}
.bt-rate::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bt-brass); border: 2px solid var(--bt-bone); cursor: pointer;
}
.bt-rate::-moz-range-track { height: 8px; border-radius: 5px; background: rgba(248, 243, 230, 0.14); }
.bt-rate-ends { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--bt-mut); }

/* Hilfe-Sheet */
.bt-sheet {
  position: fixed; inset: 0; background: rgba(10, 7, 5, 0.72); z-index: 50;
  display: flex; align-items: flex-end; justify-content: center;
}
/* ❗ display:flex überschreibt sonst das hidden-Attribut → unsichtbares
   Vollbild-Overlay blockierte ALLE Klicks (2.7.2-Bug „es geht nicht weiter"). */
.bt-sheet[hidden] { display: none; }
.bt-sheet-inner {
  width: 100%; max-width: 560px; background: var(--bt-ink-2);
  border: 1px solid var(--bt-line); border-bottom: 0;
  border-radius: 18px 18px 0 0; padding: 1.4rem 1.2rem calc(1.4rem + env(safe-area-inset-bottom, 0));
  text-align: center;
}
.bt-sheet-dot { display: inline-block; width: 26px; height: 26px; border-radius: 50%; margin-bottom: 0.5rem; }
/* Sensorik-Erklärung: „Was passiert hier?" */
.bt-scibtn {
  margin-top: 0.45rem; font: inherit; font-size: 0.8rem; cursor: pointer;
  color: var(--bt-brass); background: transparent;
  border: 1px solid var(--bt-line); border-radius: 16px; padding: 0.28rem 0.75rem;
}
.bt-sheet-inner--sci {
  max-height: 82vh; overflow-y: auto; text-align: left; color: var(--bt-bone);
  -webkit-overflow-scrolling: touch;
}
.bt-sheet-inner--sci .bt-phicon { color: var(--bt-brass); display: block; margin: 0 auto 0.4rem; }
.bt-sheet-inner--sci h3 { text-align: center; }
.bt-sci-p { font-size: 0.92rem; line-height: 1.55; color: var(--bt-bone-dim); margin: 0.6rem 0; }
.bt-sci-termstitle {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bt-brass); margin: 1.1rem 0 0.4rem;
  border-top: 1px solid rgba(180, 137, 74, 0.25); padding-top: 0.9rem;
}
.bt-sci-terms { margin: 0 0 1rem; }
.bt-sci-terms dt { font-weight: 700; color: var(--bt-bone); margin-top: 0.55rem; }
.bt-sci-terms dd { margin: 0.1rem 0 0; font-size: 0.88rem; color: var(--bt-mut); }
.bt-sheet-inner--sci .bt-btn { margin-top: 0.4rem; }
.bt-sheet-inner h3 { margin: 0 0 0.2rem; font-size: 1.3rem; }
.bt-sheet-desc { font-style: italic; font-size: 1.05rem; margin: 0.7rem 0 1rem; }

/* ─── Reveal ─────────────────────────────────────────────────────── */
.bt-head--reveal { padding-top: 1.4rem; }
.bt-revealtitle { margin: 0.2rem 0 0; font-size: 1.7rem; letter-spacing: 0.12em; font-style: italic; }
.bt-revealcard {
  background: var(--bt-ink-2); border: 1px solid var(--bt-line);
  border-radius: 18px; padding: 1.5rem 1.2rem; margin-top: 1.4rem; text-align: center;
}
.bt-glasswas { font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--bt-mut); margin: 0; }
.bt-ginname { margin: 0.3rem 0 0.6rem; font-size: 1.5rem; font-style: italic; color: var(--bt-brass); }
.bt-ginimg { max-height: 190px; max-width: 80%; object-fit: contain; margin: 0.4rem auto 0.8rem; display: block; }

.bt-bigscore { margin: 0.7rem 0 0.4rem; }
.bt-bigscore-label { display: block; font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--bt-mut); }
.bt-bigscore-val { font-size: 2.6rem; font-weight: 700; color: var(--bt-bone); }

.bt-scores { margin: 0.6rem 0 0; text-align: left; }
.bt-scorerow { display: grid; grid-template-columns: 1fr 90px 52px; align-items: center; gap: 0.6rem; margin: 0.4rem 0; }
.bt-scorelabel { font-size: 0.85rem; }
.bt-scorelabel em { display: block; font-size: 0.72rem; color: var(--bt-mut); font-style: normal; }
.bt-scorebar { height: 8px; border-radius: 5px; background: rgba(248, 243, 230, 0.1); overflow: hidden; }
.bt-scorebar span { display: block; height: 100%; background: var(--bt-brass); }
.bt-scoreval { font-size: 0.85rem; text-align: right; color: var(--bt-bone-dim); }

.bt-beat {
  border: 1px dashed var(--bt-brass); border-radius: 12px;
  background: rgba(180, 137, 74, 0.1); padding: 0.9rem; margin: 1rem 0 0;
}
.bt-beat strong { color: var(--bt-brass); letter-spacing: 0.14em; }
.bt-beat p { margin: 0.4rem 0 0; font-size: 0.9rem; }

.bt-sec {
  margin: 1.4rem 0 0.5rem; font-size: 0.78rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--bt-brass);
  border-top: 1px solid rgba(180, 137, 74, 0.22); padding-top: 1rem;
}
.bt-phline { text-align: left; margin: 0.45rem 0; font-size: 0.92rem; }
.bt-phtag {
  display: inline-block; min-width: 6.2rem; font-size: 0.68rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--bt-mut); margin-right: 0.4rem;
}
.bt-mini {
  display: inline-block; font-size: 0.85rem; color: var(--bt-bone);
  background: rgba(248, 243, 230, 0.07); border: 1px solid var(--bt-line);
  border-left: 5px solid var(--ac, var(--bt-brass));
  border-radius: 16px; padding: 0.18rem 0.6rem; margin: 0.15rem 0.2rem 0.15rem 0;
}
.bt-mini b { color: var(--bt-green); }

.bt-botlist { text-align: left; margin: 0.2rem 0 0; padding-left: 1.4rem; font-size: 0.95rem; }
.bt-botlist li { margin: 0.22rem 0; }
.bt-botlist i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 0.45rem; }

.bt-buy { margin-top: 1.3rem; }
/* Offizielles Tasting: Kauf-Hinweis auf den Veranstalter (kein Shop-Link) */
.bt-local {
  margin-top: 1.3rem; padding: 0.9rem 1rem;
  border: 1px solid var(--bt-brass); border-radius: 12px;
  background: rgba(180, 137, 74, 0.12);
  color: var(--bt-bone); font-size: 0.95rem; font-style: italic;
}

.bt-foot { text-align: center; margin-top: 2rem; }
.bt-foot p { margin: 0.5rem 0 0; }
/* Kleiner „Tasting beenden"-Link (aktive Session) */
.bt-abort { text-align: center; margin-top: 2.2rem; }
.bt-abort button {
  font: inherit; font-size: 0.78rem; color: var(--bt-mut);
  background: none; border: 0; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px; opacity: 0.8;
}
.bt-abort button:hover { opacity: 1; color: var(--bt-red); }

.bt-mailnote {
  display: inline-block; margin-top: 0.8rem; padding: 0.5rem 0.9rem;
  border: 1px solid var(--bt-line); border-radius: 20px;
  background: rgba(180, 137, 74, 0.12); color: var(--bt-bone); font-size: 0.88rem;
}

@media (min-width: 700px) {
  .bt-app { padding-top: 2.4rem; }
  .bt-logo { font-size: 2.6rem; }
}
@media (prefers-reduced-motion: reduce) {
  .bt-seg, .bt-seg-dot { transition: none; }
}
