/* ═══════════════════════════════════════════════════
   BizScore — Professional Design System
   Mobile First | Plus Jakarta Sans + Inter
   ═══════════════════════════════════════════════════ */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #1646D4;
  --blue2:       #0F35A8;
  --blue-light:  #EEF2FF;
  --green:       #0A7C5C;
  --green-light: #E6F7F2;
  --amber:       #C47B0A;
  --amber-light: #FEF3DC;
  --red:         #C0392B;
  --red-light:   #FDECEA;
  --ink:         #0D0D0D;
  --ink2:        #3A3A3A;
  --ink3:        #6B6B6B;
  --bg:          #F7F5F0;
  --white:       #FFFFFF;
  --border:      #E2DDD5;
  --shadow:      0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 60px;
  font-size: 15px;
}
@media (min-width: 768px) { body { padding-top: 68px; } }

img, svg { max-width: 100%; height: auto; }
a { -webkit-tap-highlight-color: transparent; }
button { -webkit-tap-highlight-color: transparent; cursor: pointer; }
input, select, textarea { -webkit-appearance: none; appearance: none; }

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
.bs-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 60px; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(247,245,240,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
@media (min-width: 768px) { .bs-nav { height: 68px; padding: 0 40px; } }

.bs-nav-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 20px;
  color: var(--ink); text-decoration: none; letter-spacing: -0.5px;
  flex-shrink: 0;
}
@media (min-width: 768px) { .bs-nav-brand { font-size: 22px; } }
.bs-nav-brand span { color: var(--blue); }

.bs-nav-links {
  display: none; align-items: center; gap: 28px;
}
@media (min-width: 900px) { .bs-nav-links { display: flex; } }

.bs-nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--ink2); text-decoration: none;
  transition: color 0.2s;
}
.bs-nav-links a:hover { color: var(--blue); }

.bs-nav-cta {
  background: var(--ink) !important; color: #fff !important;
  padding: 8px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 500; text-decoration: none;
  transition: background 0.2s !important; min-height: 38px;
  display: inline-flex !important; align-items: center !important;
}
@media (min-width: 600px) { .bs-nav-cta { padding: 9px 22px; font-size: 14px; } }
.bs-nav-cta:hover { background: var(--blue) !important; }
.bs-nav-logout { color: var(--red) !important; }

.bs-nav-toggle {
  display: flex; background: none; border: none;
  font-size: 22px; padding: 6px; color: var(--ink);
}
@media (min-width: 900px) { .bs-nav-toggle { display: none; } }

.bs-nav-mobile {
  display: none; flex-direction: column;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 20px; gap: 0;
  position: fixed; top: 60px; left: 0; right: 0; z-index: 99;
}
@media (min-width: 768px) { .bs-nav-mobile { top: 68px; } }
.bs-nav-mobile.open { display: flex; }
.bs-nav-mobile a {
  font-size: 15px; font-weight: 500; color: var(--ink2);
  text-decoration: none; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.bs-nav-mobile a:last-child { border-bottom: none; }

/* ══════════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════════ */
.bs-main { min-height: calc(100vh - 60px); }
@media (min-width: 768px) { .bs-main { min-height: calc(100vh - 68px); } }

.bs-container {
  max-width: 1100px; margin: 0 auto;
  padding: 24px 16px 60px;
}
@media (min-width: 600px) { .bs-container { padding: 32px 24px 60px; } }
@media (min-width: 1024px) { .bs-container { padding: 40px 32px 60px; } }

.bs-auth-container {
  max-width: 600px; margin: 0 auto;
  padding: 24px 16px 60px;
}
@media (min-width: 600px) { .bs-auth-container { padding: 40px 24px 60px; } }

/* ══════════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════════ */
.bs-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}
@media (min-width: 600px) { .bs-card { padding: 28px; margin-bottom: 20px; } }

.bs-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 600;
  margin: 0 0 16px; color: var(--ink);
}
.bs-text-center { text-align: center; }

/* ══════════════════════════════════════════════════
   LOGO AREA (auth pages)
══════════════════════════════════════════════════ */
.bs-logo-area { text-align: center; margin-bottom: 28px; }
.bs-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px; font-weight: 800;
  color: var(--blue); letter-spacing: -0.5px;
}
.bs-tagline { font-size: 13px; color: var(--ink3); margin-top: 4px; }

/* ══════════════════════════════════════════════════
   TABS
══════════════════════════════════════════════════ */
.bs-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px; gap: 2px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.bs-tab {
  padding: 10px 16px; border: none; background: none;
  cursor: pointer; font-size: 13px; font-weight: 500;
  color: var(--ink3); border-bottom: 2px solid transparent;
  margin-bottom: -2px; border-radius: 6px 6px 0 0;
  white-space: nowrap; transition: all 0.15s;
  min-height: 42px; flex-shrink: 0;
}
@media (min-width: 600px) { .bs-tab { padding: 10px 20px; font-size: 14px; } }
.bs-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.bs-tab-content { display: none; }
.bs-tab-content.active { display: block; }

/* ══════════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════════ */
.bs-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px; margin-bottom: 20px;
}
@media (min-width: 600px) { .bs-form-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
.bs-field { display: flex; flex-direction: column; gap: 6px; }
.bs-field-full { grid-column: 1 / -1; }

.bs-field label {
  font-size: 13px; font-weight: 500; color: #3d3d3a;
}
.bs-field input,
.bs-field select,
.bs-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 16px; /* prevents iOS zoom */
  color: var(--ink);
  background: #fafaf8;
  width: 100%;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
@media (min-width: 600px) {
  .bs-field input, .bs-field select, .bs-field textarea { font-size: 14px; }
}
.bs-field input:focus,
.bs-field select:focus,
.bs-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22,70,212,0.1);
  background: #fff;
}
.bs-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.bs-field textarea { resize: vertical; min-height: 90px; }

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.bs-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: 10px;
  font-size: 15px; font-weight: 500;
  border: 1.5px solid transparent;
  text-decoration: none; transition: all 0.15s;
  min-height: 48px; white-space: nowrap;
  font-family: inherit;
}
.bs-btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.bs-btn-primary:hover { background: var(--blue2); border-color: var(--blue2); color: #fff; }
.bs-btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.bs-btn-outline:hover { background: var(--blue-light); }
.bs-btn-full { width: 100%; margin-top: 6px; }

.bs-btn-sm {
  padding: 7px 14px; font-size: 13px; font-weight: 500;
  border-radius: 8px; background: var(--blue-light);
  color: var(--blue); border: 1px solid #c7d7f8;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center;
  min-height: 36px; font-family: inherit;
}
.bs-btn-sm:hover { background: #dce8ff; }
.bs-btn-sm-outline { background: transparent; border-color: var(--border); color: var(--ink3); }
.bs-btn-sm-red { background: #fff0f0; color: var(--red); border-color: #fca5a5; }
.bs-btn-sm-red:hover { background: #fee2e2; }

/* ══════════════════════════════════════════════════
   BADGES
══════════════════════════════════════════════════ */
.bs-badge {
  display: inline-block; padding: 3px 10px;
  border-radius: 99px; font-size: 12px; font-weight: 500;
}
.bs-badge-green  { background: #dcfce7; color: #166534; }
.bs-badge-teal   { background: #ccfbf1; color: #0f5b4d; }
.bs-badge-amber  { background: #fef3c7; color: #92400e; }
.bs-badge-red    { background: #fee2e2; color: #991b1b; }
.bs-badge-darkred{ background: #fca5a5; color: #7f1d1d; }
.bs-badge-gray   { background: #f1efea; color: #44403c; }

/* ══════════════════════════════════════════════════
   ALERTS & MESSAGES
══════════════════════════════════════════════════ */
.bs-msg {
  font-size: 14px; margin: 10px 0 0;
  min-height: 20px; line-height: 1.5;
}
.bs-alert {
  padding: 12px 16px; border-radius: 10px;
  font-size: 14px; margin-bottom: 16px; line-height: 1.5;
}
.bs-alert-info { background: var(--blue-light); color: #1e40af; border: 1px solid #bfdbfe; }
.bs-alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.bs-alert-error { background: #fff1f2; color: #9f1239; border: 1px solid #fecdd3; }
.bs-info-box {
  background: var(--blue-light); border: 1px solid #bfdbfe;
  border-radius: 10px; padding: 12px 16px;
  font-size: 13px; color: #1e40af; margin-bottom: 20px; line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   DASHBOARD HEADER
══════════════════════════════════════════════════ */
.bs-dashboard-header {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .bs-dashboard-header {
    flex-direction: row; justify-content: space-between;
    align-items: flex-start;
  }
}
.bs-page-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 700;
  margin: 0 0 4px; letter-spacing: -0.3px;
}
@media (min-width: 600px) { .bs-page-title { font-size: 24px; } }
.bs-page-sub { font-size: 13px; color: var(--ink3); margin: 0; }
.bs-header-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════
   STATS ROW
══════════════════════════════════════════════════ */
.bs-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 20px;
}
@media (min-width: 768px) { .bs-stats-row { grid-template-columns: repeat(4,1fr); gap: 16px; } }

.bs-stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px; text-align: center;
}
@media (min-width: 600px) { .bs-stat-card { padding: 20px; } }
.bs-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--ink);
}
.bs-stat-label { font-size: 12px; color: var(--ink3); margin-top: 4px; }
.bs-stat-green .bs-stat-num { color: var(--green); }
.bs-stat-amber .bs-stat-num { color: var(--amber); }
.bs-stat-red   .bs-stat-num { color: var(--red); }

/* ══════════════════════════════════════════════════
   TABLE
══════════════════════════════════════════════════ */
.bs-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.bs-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 480px; }
.bs-table th {
  text-align: left; padding: 10px 14px;
  border-bottom: 2px solid var(--border);
  font-weight: 500; color: var(--ink3);
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.05em; white-space: nowrap;
}
.bs-table td {
  padding: 12px 14px; border-bottom: 1px solid #f0ede6;
  vertical-align: middle;
}
.bs-table tr:last-child td { border-bottom: none; }
.bs-table tr:hover td { background: #fafaf8; }
.bs-row-disputed td { opacity: 0.6; background: #fffbf0; }
.bs-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.bs-score { font-size: 18px; font-weight: 700; }

/* ══════════════════════════════════════════════════
   SCORE DISPLAY
══════════════════════════════════════════════════ */
.bs-score-hero {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
  padding: 12px 0; text-align: center;
}
@media (min-width: 600px) {
  .bs-score-hero { flex-direction: row; text-align: left; gap: 28px; }
}
.bs-score-circle {
  width: 120px; height: 120px; border-radius: 50%;
  border: 6px solid var(--score-color, var(--blue));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.bs-score-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px; font-weight: 800;
  color: var(--score-color, var(--blue));
}
.bs-score-max { font-size: 12px; color: var(--ink3); }
.bs-score-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px; font-weight: 700; margin-bottom: 8px;
}
.bs-score-details {
  display: flex; flex-direction: column; gap: 8px;
  align-items: center;
}
@media (min-width: 600px) { .bs-score-details { align-items: flex-start; } }
.bs-rater-count { font-size: 13px; color: var(--ink3); margin: 4px 0 0; }
.bs-score-pending { text-align: center; padding: 32px 16px; color: var(--ink3); }
.bs-score-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: #f1efea; font-size: 26px; font-weight: 700;
  color: #b4b2a9; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 14px;
}
.bs-rec {
  display: inline-block; padding: 7px 16px;
  border-radius: 9px; font-size: 14px; font-weight: 500; margin-top: 4px;
}
.bs-rec-safe    { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.bs-rec-caution { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.bs-rec-avoid   { background: #fff1f2; color: #9f1239; border: 1px solid #fecdd3; }

/* ══════════════════════════════════════════════════
   PAYMENT GRID
══════════════════════════════════════════════════ */
.bs-payment-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
@media (min-width: 768px) { .bs-payment-grid { grid-template-columns: repeat(4,1fr); } }
.bs-pay-card { border-radius: 12px; padding: 16px; text-align: center; }
.bs-pay-count {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px; font-weight: 700;
}
.bs-pay-label { font-size: 12px; margin-top: 4px; font-weight: 500; }
.bs-pay-bar { height: 4px; border-radius: 2px; background: rgba(0,0,0,0.08); margin-top: 10px; overflow: hidden; }
.bs-pay-bar-fill { height: 100%; border-radius: 2px; background: currentColor; opacity: 0.5; }
.bs-pay-advance { background: var(--green-light); color: #0f766e; }
.bs-pay-ontime  { background: #f0fdf4; color: #15803d; }
.bs-pay-late    { background: var(--amber-light); color: #b45309; }
.bs-pay-default { background: var(--red-light); color: #b91c1c; }

/* ══════════════════════════════════════════════════
   RATING UI
══════════════════════════════════════════════════ */
.bs-radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.bs-radio-card {
  flex: 1 1 calc(50% - 10px); min-width: 130px;
  padding: 14px; border: 2px solid var(--border);
  border-radius: 12px; cursor: pointer;
  display: flex; flex-direction: column; gap: 4px;
  transition: all 0.15s;
}
@media (min-width: 600px) { .bs-radio-card { flex: 1; min-width: 140px; } }
.bs-radio-card input { display: none; }
.bs-radio-card:hover { border-color: var(--blue); background: var(--blue-light); }
.bs-radio-teal.selected  { border-color: #0f766e; background: var(--green-light); }
.bs-radio-green.selected { border-color: #15803d; background: #f0fdf4; }
.bs-radio-amber.selected { border-color: #b45309; background: var(--amber-light); }
.bs-radio-red.selected   { border-color: #b91c1c; background: var(--red-light); }
.bs-radio-label { font-size: 14px; font-weight: 600; }
.bs-radio-desc  { font-size: 12px; color: var(--ink3); }

.bs-radio-inline { flex-direction: row; flex-wrap: wrap; }
.bs-radio-pill {
  padding: 9px 20px; border: 2px solid var(--border);
  border-radius: 99px; cursor: pointer; font-size: 14px; font-weight: 500;
  transition: all 0.15s; min-height: 44px;
  display: flex; align-items: center; font-family: inherit;
}
.bs-radio-pill input { display: none; }
.bs-radio-pill.selected { border-color: var(--blue); background: var(--blue-light); color: var(--blue); }

.bs-star-rating { display: flex; gap: 6px; font-size: 32px; cursor: pointer; }
.bs-star { color: #d0cec5; transition: color 0.1s; line-height: 1; }
.bs-star.active { color: #F59E0B; }

/* ══════════════════════════════════════════════════
   TOGGLE
══════════════════════════════════════════════════ */
.bs-toggle {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; font-size: 14px; user-select: none;
}
.bs-toggle input { display: none; }
.bs-toggle-slider {
  width: 44px; height: 24px; background: #d0cec5;
  border-radius: 99px; position: relative; flex-shrink: 0;
  transition: background 0.2s;
}
.bs-toggle-slider::after {
  content: ''; position: absolute;
  width: 18px; height: 18px; background: #fff;
  border-radius: 50%; top: 3px; left: 3px;
  transition: transform 0.2s;
}
.bs-toggle input:checked + .bs-toggle-slider { background: var(--blue); }
.bs-toggle input:checked + .bs-toggle-slider::after { transform: translateX(20px); }

/* ══════════════════════════════════════════════════
   UPLOAD
══════════════════════════════════════════════════ */
.bs-upload-card { border: 2px dashed #c7d7f8; background: #f8fbff; }
.bs-upload-row {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 10px; margin: 12px 0;
}
@media (min-width: 600px) { .bs-upload-row { flex-direction: row; align-items: center; } }
.bs-file-input { font-size: 14px; width: 100%; }
.bs-csv-format {
  background: #f1efea; border-radius: 8px;
  padding: 10px 14px; font-size: 13px; margin-top: 12px;
}
.bs-csv-format code {
  display: block; margin-top: 4px; font-family: monospace;
  font-size: 11px; word-break: break-all;
}

/* ══════════════════════════════════════════════════
   SEARCH
══════════════════════════════════════════════════ */
.bs-search-bar {
  display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 20px;
}
@media (min-width: 480px) { .bs-search-bar { flex-direction: row; } }
.bs-search-input {
  flex: 1; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: 10px;
  font-size: 16px; font-family: inherit;
  background: var(--white);
}
@media (min-width: 600px) { .bs-search-input { font-size: 14px; } }
.bs-search-input:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22,70,212,0.1);
}
.bs-search-result-item {
  display: flex; flex-direction: column; gap: 10px;
  padding: 14px; border: 1px solid var(--border);
  border-radius: 10px; margin-bottom: 10px;
  background: var(--white);
}
@media (min-width: 600px) {
  .bs-search-result-item {
    flex-direction: row; align-items: center; flex-wrap: wrap;
  }
}
.bs-search-result-item:hover { background: #fafaf8; }
.bs-result-info { flex: 1; min-width: 0; }
.bs-result-name { font-weight: 600; font-size: 15px; }
.bs-result-meta { font-size: 12px; color: var(--ink3); margin-top: 3px; }
.bs-result-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════
   SHOP UID
══════════════════════════════════════════════════ */
.bs-shop-uid {
  display: inline-block; background: #f1efea;
  color: var(--ink3); font-family: monospace;
  font-size: 13px; padding: 3px 10px;
  border-radius: 6px; margin-bottom: 8px;
}

/* ══════════════════════════════════════════════════
   MODAL
══════════════════════════════════════════════════ */
.bs-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 9999;
  display: flex; align-items: flex-end; justify-content: center;
}
@media (min-width: 600px) { .bs-modal { align-items: center; padding: 20px; } }
.bs-modal-box {
  background: #fff; border-radius: 20px 20px 0 0;
  padding: 24px 20px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
}
@media (min-width: 600px) {
  .bs-modal-box { border-radius: 16px; padding: 32px; max-width: 520px; max-height: none; }
}
.bs-modal-box h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px; font-weight: 700; margin: 0 0 20px;
}
.bs-modal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
@media (min-width: 480px) { .bs-modal-actions { flex-direction: row; } }

/* ══════════════════════════════════════════════════
   UTILITY
══════════════════════════════════════════════════ */
.bs-muted    { color: var(--ink3); }
.bs-small    { font-size: 12px; }
.bs-center   { text-align: center; }
.bs-divider  {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink3); font-size: 13px; margin: 24px 0;
}
.bs-divider::before,
.bs-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.bs-back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink3); font-size: 14px; text-decoration: none;
  margin-bottom: 18px; min-height: 44px;
}
.bs-back-link:hover { color: var(--blue); }
.bs-form-footer { text-align: center; font-size: 13px; color: var(--ink3); margin-top: 20px; }
.bs-form-footer a { color: var(--blue); text-decoration: none; font-weight: 500; }
.bs-empty-state { text-align: center; padding: 40px 16px; color: var(--ink3); }
.bs-empty-state p { margin-bottom: 16px; }
.bs-link-small { font-size: 13px; color: var(--ink3); text-decoration: none; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.bs-footer {
  background: var(--ink); color: rgba(255,255,255,0.4);
  padding: 28px 20px;
  display: flex; flex-direction: column;
  gap: 16px; align-items: center; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) {
  .bs-footer { flex-direction: row; justify-content: space-between; padding: 32px 40px; text-align: left; }
}
.bs-footer-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 16px; color: #fff;
}
.bs-footer-brand span { color: var(--blue); }
.bs-footer-copy { font-size: 13px; }
.bs-footer-links { display: flex; gap: 24px; }
.bs-footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.2s;
  min-height: 44px; display: inline-flex; align-items: center;
}
.bs-footer-links a:hover { color: rgba(255,255,255,0.8); }
