/* ═══════════════════════════════════════════════════════
   Bogensport Agent – Widget CSS v1.3
   Passt exakt zum Site-CD: Roboto Condensed · #2b2b2b
   Weisser Hintergrund · Keine Ecken bei Buttons
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&family=DM+Sans:wght@400;500;700;800&display=swap');

:root {
  --bsa-black:    #111111;
  --bsa-nav:      #222222;    /* exakt wie Site-Nav */
  --bsa-text:     #2b2b2b;    /* exakt wie Site-Body */
  --bsa-white:    #ffffff;
  --bsa-g100:     #f5f5f5;
  --bsa-g200:     #e8e8e8;
  --bsa-g300:     #cccccc;
  --bsa-g400:     #999999;
  --bsa-g600:     #555555;
  --bsa-success:  #2a7a3b;
  --bsa-danger:   #cc2222;
  --bsa-font:     'Roboto Condensed', Helvetica, Arial, sans-serif;
  --bsa-font-h:   'DM Sans', Helvetica, Arial, sans-serif;
  --bsa-w:        400px;
  --bsa-h:        600px;
}

/* ── LAUNCHER — schwarz, weisse Schrift, KEINE Ecken ─── */
#bsa-launcher {
  position: fixed;
  bottom: 28px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bsa-black);
  color: var(--bsa-white);
  border-radius: 0;                /* KEINE runden Ecken */
  padding: 14px 24px;
  cursor: pointer;
  font-family: var(--bsa-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  outline: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: box-shadow .2s, transform .15s;
  user-select: none;
}
#bsa-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.32);
}
#bsa-launcher.bsa-pos-bottom-right { right: 28px; }
#bsa-launcher.bsa-pos-bottom-left  { left:  28px; }
.bsa-launcher-icon  { font-size: 18px; line-height: 1; }
.bsa-launcher-badge {
  position: absolute; top: -7px; right: -7px;
  background: var(--bsa-danger); color: #fff;
  font-size: 10px; font-weight: 700;
  border-radius: 0;                /* keine Ecken */
  padding: 2px 6px; min-width: 20px;
  text-align: center; border: 2px solid #fff; display: none;
}

/* ── CHAT WINDOW ─────────────────────────────────────── */
#bsa-chat-window {
  position: fixed;
  bottom: 86px;
  z-index: 99998;
  width: var(--bsa-w);
  height: var(--bsa-h);
  max-height: calc(100vh - 110px);
  background: var(--bsa-white);
  border: 1px solid var(--bsa-g200);
  border-radius: 0;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: var(--bsa-font);
  animation: bsaUp .2s ease;
}

/* ── BOWIE MASCOT — sitzt oben auf dem Chatfenster ──── */
/* Uses a sibling element OUTSIDE the chat window, positioned relative to launcher container */
.bsa-bowie-mascot {
  position: fixed;
  z-index: 99999;
  width: 90px;
  height: 90px;
  pointer-events: none;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.22));
  animation: bsaBob 3.5s ease-in-out infinite;
  /* Position calculated by JS based on chat window position */
}
.bsa-bowie-mascot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 50%;
  border: 3px solid var(--bsa-white);
}
@keyframes bsaBob {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-6px); }
}
#bsa-chat-window.bsa-pos-bottom-right { right: 28px; }
#bsa-chat-window.bsa-pos-bottom-left  { left:  28px; }
@keyframes bsaUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* ── INLINE / SHORTCODE ──────────────────────────────── */
#bsa-inline-chat, .bsa-inline {
  width: 100%; height: 640px;
  border: 1px solid var(--bsa-g200);
  overflow: hidden; background: var(--bsa-white);
  font-family: var(--bsa-font); display: flex; flex-direction: column;
}

/* ── HEADER ──────────────────────────────────────────── */
.bsa-header {
  background: var(--bsa-nav);     /* #222222 wie Site-Nav */
  padding: 13px 16px;
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.bsa-logo {
  width: 44px; height: 44px;
  flex-shrink: 0; overflow: hidden;
  border-radius: 50%;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
}
.bsa-logo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  border-radius: 50%;
}
.bsa-header-text h3 {
  font-family: var(--bsa-font-h);
  font-size: 14px; font-weight: 700;
  color: var(--bsa-white); letter-spacing: .02em;
  text-transform: uppercase; margin: 0; line-height: 1.2;
}
.bsa-header-text p {
  font-size: 11px; color: rgba(255,255,255,.45); margin: 2px 0 0;
  font-family: var(--bsa-font); font-weight: 300;
}
.bsa-header-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.bsa-status-dot { width: 6px; height: 6px; border-radius: 50%; background: #5adc7e; flex-shrink: 0; }
.bsa-status-label { font-size: 11px; color: rgba(255,255,255,.4); font-family: var(--bsa-font); }
.bsa-close-btn {
  background: none; border: none; color: rgba(255,255,255,.45);
  font-size: 18px; cursor: pointer; padding: 0; line-height: 1;
  transition: color .15s;
}
.bsa-close-btn:hover { color: var(--bsa-white); }

/* ── CART LINK IN HEADER ─────────────────────────────── */
.bsa-cart-link {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.75); font-size: 12px;
  font-family: var(--bsa-font); text-decoration: none;
  border: 1px solid rgba(255,255,255,.2);
  padding: 5px 10px;
  transition: background .15s;
}
.bsa-cart-link:hover { background: rgba(255,255,255,.1); color: var(--bsa-white); }
.bsa-cart-count-badge {
  background: var(--bsa-white); color: var(--bsa-black);
  font-weight: 700; font-size: 10px;
  padding: 1px 5px; min-width: 16px; text-align: center;
}

/* ── MESSAGES ────────────────────────────────────────── */
.bsa-messages {
  flex: 1; overflow-y: auto;
  padding: 16px 14px 10px;
  display: flex; flex-direction: column; gap: 12px;
  background: var(--bsa-white);
}
.bsa-messages::-webkit-scrollbar { width: 3px; }
.bsa-messages::-webkit-scrollbar-track { background: transparent; }
.bsa-messages::-webkit-scrollbar-thumb { background: var(--bsa-g300); }

.bsa-msg { display: flex; gap: 9px; animation: bsaIn .2s ease; }
@keyframes bsaIn {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: none; }
}
.bsa-msg.bsa-user { flex-direction: row-reverse; }

.bsa-avatar {
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center;
  justify-content: center; margin-top: 2px; border-radius: 0;
}
.bsa-avatar.bsa-bot {
  background: transparent;
  padding: 0; overflow: hidden; border-radius: 50%;
}
.bsa-avatar.bsa-bot img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  border-radius: 50%;
}
.bsa-avatar.bsa-user { background: var(--bsa-g200); font-size: 14px; }

.bsa-bubble {
  max-width: 82%; padding: 10px 13px;
  border-radius: 0;
  line-height: 1.6; font-size: 13.5px;
  word-break: break-word; font-family: var(--bsa-font);
  color: var(--bsa-text);
}
.bsa-msg.bsa-bot .bsa-bubble {
  background: var(--bsa-g100);
  border: 1px solid var(--bsa-g200);
  border-top-left-radius: 0;
}
.bsa-msg.bsa-user .bsa-bubble {
  background: var(--bsa-nav);     /* #222 = site nav farbe */
  color: var(--bsa-white);
}
.bsa-bubble strong { font-weight: 700; }
.bsa-bubble ul { margin: 6px 0 6px 16px; }
.bsa-bubble li { margin: 3px 0; font-size: 13px; }

/* ── FEEDBACK BAR ───────────────────────────────────── */
.bsa-feedback-bar {
  display: flex; align-items: center; gap: 6px;
  margin-top: 6px; padding: 4px 0 0 0;
}
.bsa-fb-btn {
  background: none; border: 1px solid var(--bsa-g300);
  border-radius: 14px; padding: 2px 10px; cursor: pointer;
  font-size: 14px; line-height: 1.4; opacity: 0.5;
  transition: opacity .15s, background .15s;
}
.bsa-fb-btn:hover { opacity: 1; background: var(--bsa-g100, #f5f5f5); }
.bsa-fb-btn.bsa-fb-active { opacity: 1; border-color: var(--bsa-nav); }
.bsa-fb-thanks {
  font-size: 12px; color: var(--bsa-g500, #888); font-style: italic;
}
.bsa-fb-correction {
  display: flex; flex-direction: column; gap: 4px; width: 100%;
}
.bsa-fb-label { font-size: 11px; color: var(--bsa-g500, #888); }
.bsa-fb-input {
  border: 1px solid var(--bsa-g300); border-radius: 4px;
  padding: 5px 8px; font-size: 12px; font-family: var(--bsa-font);
  width: 100%; box-sizing: border-box;
}
.bsa-fb-input:focus { outline: none; border-color: var(--bsa-nav); }
.bsa-fb-send {
  align-self: flex-end; background: var(--bsa-nav); color: var(--bsa-white);
  border: none; border-radius: 4px; padding: 4px 12px;
  font-size: 12px; cursor: pointer; font-family: var(--bsa-font);
}
.bsa-fb-send:hover { opacity: 0.9; }
.bsa-fb-sent .bsa-fb-btn { pointer-events: none; }

/* ── QUICK REPLIES ───────────────────────────────────── */
.bsa-qr { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.bsa-qr-btn {
  background: var(--bsa-white);
  border: 1px solid var(--bsa-g300);
  border-radius: 0;
  padding: 6px 14px;
  font-size: 13px; color: var(--bsa-text);
  cursor: pointer; font-family: var(--bsa-font);
  font-weight: 400; transition: all .15s;
}
.bsa-qr-btn:hover {
  background: var(--bsa-nav); color: var(--bsa-white);
  border-color: var(--bsa-nav);
}

/* ── PRODUCT CARDS ───────────────────────────────────── */
.bsa-products { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.bsa-products-hidden { display: none; }

.bsa-product-card {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--bsa-g200);
  background: var(--bsa-white);
  overflow: hidden;
  transition: border-color .15s;
}
.bsa-product-card:hover { border-color: var(--bsa-g500); }

/* Thumbnail */
.bsa-product-img-wrap {
  flex-shrink: 0;
  width: 70px;
  display: block;
  background: var(--bsa-g100);
  overflow: hidden;
}
.bsa-product-img {
  width: 70px;
  height: 100%;
  min-height: 70px;
  object-fit: cover;
  display: block;
}

/* Body */
.bsa-product-body {
  flex: 1;
  min-width: 0;
  padding: 8px 9px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bsa-product-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--bsa-text);
  line-height: 1.35;
  word-break: break-word;
  font-family: var(--bsa-font);
  text-decoration: none;
  display: block;
}
.bsa-product-name:hover { text-decoration: underline; }
.bsa-product-meta {
  font-size: 10px;
  color: var(--bsa-g400);
  line-height: 1.3;
  font-family: var(--bsa-font);
}
/* Variation selectors for variable products */
.bsa-variations {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 6px 0;
  padding: 6px 0;
  border-top: 1px solid var(--bsa-g200, #eee);
}
.bsa-var-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bsa-var-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--bsa-g500, #666);
  min-width: 50px;
  font-family: var(--bsa-font);
}
.bsa-var-select {
  flex: 1;
  font-size: 11px;
  padding: 3px 6px;
  border: 1px solid var(--bsa-g300, #ccc);
  border-radius: 4px;
  background: var(--bsa-bg, #fff);
  color: var(--bsa-text, #222);
  font-family: var(--bsa-font);
  cursor: pointer;
  max-width: 160px;
}
.bsa-var-select:focus {
  outline: none;
  border-color: var(--bsa-accent, #e8a020);
}
.bsa-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: auto;
  padding-top: 5px;
}
.bsa-product-price {
  font-size: 12px;
  font-weight: 700;
  /* Use inherit so the price adopts the card's effective text color.
     Fixes low-contrast rendering when site theme overrides --bsa-text
     (e.g. dark Divi variants served white product names). */
  color: inherit;
  font-family: var(--bsa-font);
  white-space: nowrap;
}

/* ATC button */
.bsa-atc-btn {
  background: var(--bsa-black); color: var(--bsa-white);
  border: none; border-radius: 0;
  padding: 5px 10px;
  font-size: 10.5px; font-weight: 700; font-family: var(--bsa-font);
  text-transform: uppercase; letter-spacing: .04em;
  cursor: pointer; white-space: nowrap; transition: opacity .15s;
}
.bsa-atc-btn:hover { opacity: .75; }
.bsa-atc-btn.bsa-added { background: var(--bsa-success); }
.bsa-atc-btn:disabled { opacity: .4; cursor: not-allowed; }

/* Show-more / Load-more */
.bsa-products-footer {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.bsa-show-more-btn,
.bsa-load-more-btn {
  flex: 1;
  padding: 7px 10px;
  background: var(--bsa-white);
  border: 1px solid var(--bsa-g300);
  color: var(--bsa-g600);
  font-family: var(--bsa-font);
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.bsa-show-more-btn:hover,
.bsa-load-more-btn:hover {
  background: var(--bsa-black);
  border-color: var(--bsa-black);
  color: var(--bsa-white);
}
.bsa-load-more-btn:disabled { opacity: .4; cursor: default; }

/* ── SUCCESS TOAST (nach Warenkorb) ──────────────────── */
.bsa-toast {
  background: var(--bsa-success); color: var(--bsa-white);
  padding: 10px 14px; font-size: 12.5px; font-family: var(--bsa-font);
  border-radius: 0; margin-top: 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  animation: bsaIn .2s ease;
}
.bsa-toast a {
  color: var(--bsa-white); font-weight: 700;
  text-decoration: underline; white-space: nowrap;
}
.bsa-toast-err {
  background: #fdf0f0; border: 1px solid #f5c0c0; color: #8b1a1a;
  padding: 9px 13px; font-size: 12px; font-family: var(--bsa-font);
  border-radius: 0; margin-top: 8px;
}

/* ── SPINE CALCULATOR ────────────────────────────────── */
.bsa-spine-calc {
  background: var(--bsa-white); border: 1px solid var(--bsa-g200);
  border-top: 3px solid var(--bsa-black);
  border-radius: 0; padding: 14px; margin-top: 8px;
}
.bsa-spine-calc h4 {
  font-family: var(--bsa-font-h); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--bsa-text); margin: 0 0 12px;
}
.bsa-calc-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.bsa-calc-field { flex: 1; min-width: 90px; }
.bsa-calc-field label {
  font-size: 10px; color: var(--bsa-g400); display: block;
  margin-bottom: 4px; text-transform: uppercase; letter-spacing: .06em; font-weight: 700;
}
.bsa-calc-field input,
.bsa-calc-field select {
  width: 100%; background: var(--bsa-g100);
  border: 1px solid var(--bsa-g200); border-radius: 0;
  padding: 7px 9px; color: var(--bsa-text);
  font-size: 13px; font-family: var(--bsa-font); outline: none;
  transition: border-color .15s; appearance: auto;
}
.bsa-calc-field input:focus,
.bsa-calc-field select:focus { border-color: var(--bsa-black); background: var(--bsa-white); }
.bsa-calc-result {
  background: var(--bsa-g100); border: 1px solid var(--bsa-g200);
  border-radius: 0; padding: 9px 12px; font-size: 13px;
  color: var(--bsa-g400); margin-top: 4px; min-height: 36px; line-height: 1.55;
}
.bsa-calc-result strong { color: var(--bsa-text); font-size: 15px; }
.bsa-calc-btn {
  background: var(--bsa-black); color: var(--bsa-white); border: none;
  border-radius: 0; padding: 9px 14px; font-family: var(--bsa-font);
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  cursor: pointer; margin-top: 8px; width: 100%; transition: opacity .15s;
}
.bsa-calc-btn:hover { opacity: .75; }

/* ── TYPING ──────────────────────────────────────────── */
.bsa-typing { display: flex; gap: 4px; align-items: center; padding: 12px 13px; }
.bsa-typing span {
  width: 6px; height: 6px; background: var(--bsa-g300); border-radius: 50%;
  animation: bsaBounce .9s ease-in-out infinite;
}
.bsa-typing span:nth-child(2) { animation-delay: .15s; }
.bsa-typing span:nth-child(3) { animation-delay: .30s; }
@keyframes bsaBounce {
  0%,80%,100% { transform: scale(.7); opacity: .4; }
  40%         { transform: scale(1);  opacity: 1; }
}

/* ── INPUT AREA ──────────────────────────────────────── */
.bsa-input-area {
  border-top: 1px solid var(--bsa-g200); padding: 11px 13px;
  background: var(--bsa-white); flex-shrink: 0;
}
.bsa-input-row { display: flex; gap: 8px; align-items: flex-end; }
.bsa-input {
  flex: 1; background: var(--bsa-g100); border: 1px solid var(--bsa-g200);
  border-radius: 0; padding: 9px 13px; color: var(--bsa-text);
  font-size: 13.5px; font-family: var(--bsa-font); outline: none;
  resize: none; min-height: 40px; max-height: 120px;
  line-height: 1.5; transition: border-color .15s; overflow-y: auto;
}
.bsa-input:focus { border-color: var(--bsa-black); background: var(--bsa-white); }
.bsa-input::placeholder { color: var(--bsa-g300); }
.bsa-send-btn {
  background: var(--bsa-black); border: none; border-radius: 0;
  width: 40px; height: 40px; display: flex; align-items: center;
  justify-content: center; cursor: pointer; flex-shrink: 0; transition: opacity .15s;
}
.bsa-send-btn:hover { opacity: .72; }
.bsa-send-btn:active { transform: scale(.95); }
.bsa-send-btn svg { width: 16px; height: 16px; fill: var(--bsa-white); }
.bsa-send-btn:disabled { opacity: .25; cursor: not-allowed; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 480px) {
  #bsa-chat-window {
    bottom: 0 !important; right: 0 !important; left: 0 !important;
    width: 100% !important; height: 100% !important;
    max-height: 100vh !important;
  }
  #bsa-launcher.bsa-pos-bottom-right { right: 20px; bottom: 20px; }
  #bsa-launcher.bsa-pos-bottom-left  { left: 20px;  bottom: 20px; }
  /* Mobile fix: chat is fullscreen and launcher has higher z-index (99999 vs 99998),
     so it would overlap the input bar and cover the mic + send buttons.
     Hide launcher entirely while the chat is open — reappears on close. */
  body.bsa-chat-open #bsa-launcher { display: none !important; }
}

/* ── v2.0 additions ──────────────────────────────────── */
.bsa-product-link {
  color: var(--bsa-text);
  text-decoration: none;
}
.bsa-product-link:hover { text-decoration: underline; }

.bsa-oos {
  font-size: 11px; color: var(--bsa-danger);
  font-weight: 700; margin-top: 3px;
}

.bsa-btn-outline {
  background: none !important;
  border: 1px solid var(--bsa-black) !important;
  color: var(--bsa-black) !important;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.bsa-btn-outline:hover {
  background: var(--bsa-black) !important;
  color: var(--bsa-white) !important;
}

/* Search loader reuses typing animation */

/* ── v2.1: Adaptive Spine Calc ──────────────────────── */
.bsa-spine-calc p {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--bsa-g600);
}
.bsa-calc-note {
  background: var(--bsa-g100);
  border-left: 3px solid var(--bsa-g300);
  padding: 6px 10px;
  font-size: 11.5px;
  color: var(--bsa-g600);
  margin-bottom: 10px;
}
.bsa-calc-note strong { color: var(--bsa-text); }

/* ── Wiki Link Button ────────────────────────────────── */
.bsa-wiki-btn {
  display: inline-block;
  margin: 6px 0;
  padding: 8px 14px;
  background: var(--bsa-white);
  border: 1px solid var(--bsa-black);
  color: var(--bsa-black);
  font-family: var(--bsa-font);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.bsa-wiki-btn:hover {
  background: var(--bsa-black);
  color: var(--bsa-white);
}
.bsa-wiki-btn::after {
  content: ' \2197'; /* arrow up-right */
  font-size: 11px;
}

/* ── Disclaimer Box ──────────────────────────────────── */
.bsa-disclaimer {
  background: #fff8f0;
  border: 1px solid #c8860a;
  border-left: 4px solid #c8860a;
  padding: 0;
  margin: 8px 0;
  font-family: var(--bsa-font);
}
.bsa-disclaimer-header {
  background: #c8860a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 7px 14px;
}
.bsa-disclaimer-body {
  padding: 14px 16px 10px;
}
.bsa-disclaimer-body p {
  font-size: 13px;
  color: var(--bsa-text);
  line-height: 1.6;
  margin: 0 0 10px 0;
}
.bsa-disclaimer-body p:last-child { margin-bottom: 0; }
.bsa-disclaimer-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--bsa-g600);
  cursor: pointer;
  margin: 12px 16px;
  line-height: 1.45;
}
.bsa-disclaimer-check input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #c8860a;
}
.bsa-disclaimer-confirm {
  margin: 4px 16px 14px;
  display: block;
}
.bsa-disclaimer-confirm:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ── Draw Length Slider ──────────────────────────── */
.bsa-draw-slider {
  background: var(--bsa-white);
  border: 1px solid var(--bsa-g200);
  padding: 14px 16px;
  margin: 6px 0;
  font-family: var(--bsa-font);
}
.bsa-draw-slider-title {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--bsa-text);
  margin-bottom: 12px;
}
.bsa-draw-option { margin-bottom: 10px; }
.bsa-draw-label {
  display: block;
  font-size: 11.5px;
  color: var(--bsa-g600);
  margin-bottom: 6px;
  font-weight: 600;
}
.bsa-slider-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bsa-slider,
.bsa-height-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--bsa-g300);
  outline: none;
  border-radius: 2px;
  cursor: pointer;
}
.bsa-slider::-webkit-slider-thumb,
.bsa-height-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--bsa-black);
  cursor: pointer;
  border-radius: 50%;
}
.bsa-slider::-moz-range-thumb,
.bsa-height-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--bsa-black);
  cursor: pointer;
  border-radius: 50%;
  border: none;
}
.bsa-slider-val,
.bsa-height-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--bsa-text);
  min-width: 48px;
  text-align: right;
  font-family: var(--bsa-font);
}
.bsa-height-result {
  font-size: 11.5px;
  color: var(--bsa-g600);
  margin-top: 5px;
  font-style: italic;
}
.bsa-draw-or {
  font-size: 11px;
  color: var(--bsa-g400);
  text-align: center;
  margin: 10px 0;
}
.bsa-draw-confirm {
  width: 100%;
  margin-top: 8px;
}

/* ── Fallback Note ───────────────────────────────────── */
.bsa-fallback-note {
  font-size: 11.5px;
  color: #8a6000;
  background: #fffbea;
  border-left: 3px solid #e0a000;
  padding: 6px 10px;
  margin: 4px 0;
  font-family: var(--bsa-font);
  font-style: italic;
}
