/* ─────────────────────────────────────────────────────────────────────────────
   Panini Exchange — main.css
   Mobile-first, thème sobre : vert / gris / bleu / orange
   ───────────────────────────────────────────────────────────────────────────── */

/* ── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-bg:          #f4f5f7;
  --clr-surface:     #ffffff;
  --clr-border:      #dde1e7;
  --clr-text:        #1a1d23;
  --clr-text-muted:  #6b7280;

  --clr-green-light: #bbf7d0;
  --clr-green-dark:  #15803d;
  --clr-green-mid:   #4ade80;
  --clr-gray-stk:    #e2e8f0;

  --clr-blue:        #2563eb;
  --clr-blue-dark:   #1d4ed8;
  --clr-blue-light:  #dbeafe;

  --clr-orange:      #f97316;
  --clr-orange-bg:   #fff7ed;

  --clr-red:         #dc2626;
  --clr-red-bg:      #fef2f2;
  --clr-yellow:      #d97706;
  --clr-yellow-bg:   #fefce8;
  --clr-green-alert: #15803d;
  --clr-green-bg:    #f0fdf4;

  --header-h:        56px;
  --radius:          8px;
  --shadow:          0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:       0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text);
  min-height: 100vh;
}

a { color: var(--clr-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* ── Header ───────────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  height: 100%;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text);
  white-space: nowrap;
  text-decoration: none;
}
.logo-text { display: none; }
@media (min-width: 480px) { .logo-text { display: inline; } }

/* ── Navigation ───────────────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: background .15s, color .15s;
  position: relative;
}
.nav-link:hover { background: var(--clr-bg); color: var(--clr-text); text-decoration: none; }
.nav-link.active { background: var(--clr-blue-light); color: var(--clr-blue); }
.nav-admin { color: var(--clr-orange) !important; }

.notif-link { position: relative; }
.notif-badge-nav {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--clr-orange);
  color: #fff;
  border-radius: 50%;
  min-width: 18px; height: 18px;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}

/* ── User menu ────────────────────────────────────────────────────────────── */
.user-menu { position: relative; }

.user-btn {
  display: flex; align-items: center; gap: 4px;
  background: none; border: 1px solid var(--clr-border);
  border-radius: 6px; padding: 5px 10px;
  font-size: 0.85rem; cursor: pointer;
  color: var(--clr-text);
  transition: background .15s;
}
.user-btn:hover { background: var(--clr-bg); }

.user-name { display: none; }
@media (min-width: 600px) { .user-name { display: inline; } }

.caret { font-size: 0.65rem; color: var(--clr-text-muted); }

.user-menu .dropdown {
  display: none;
  position: absolute;
  right: 0; top: calc(100% + 4px);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 190px;
  z-index: 200;
  overflow: hidden;
}
.user-menu.open .dropdown { display: block; }
.user-menu .dropdown a {
  display: block; padding: 10px 16px;
  font-size: 0.88rem; color: var(--clr-text);
}
.user-menu .dropdown a:hover { background: var(--clr-bg); text-decoration: none; }
.user-menu .dropdown hr { border: none; border-top: 1px solid var(--clr-border); margin: 2px 0; }

/* ── Main content ─────────────────────────────────────────────────────────── */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 12px 40px;
}

/* ── Auth pages ───────────────────────────────────────────────────────────── */
.auth-body {
  background: linear-gradient(135deg, #1a3a5c 0%, #2563eb 100%);
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; padding: 16px;
}

.auth-card {
  background: var(--clr-surface);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
  padding: 32px 28px;
  width: 100%; max-width: 380px;
  text-align: center;
}

.auth-logo { font-size: 3rem; margin-bottom: 8px; }
.auth-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 4px; }
.auth-subtitle { color: var(--clr-text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.auth-form { text-align: left; }

/* ── Alerts ───────────────────────────────────────────────────────────────── */
.alerts-container { margin-bottom: 16px; }

.alert {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 8px;
  animation: slideIn .2s ease;
}

.alert-error   { background: var(--clr-red-bg);    color: var(--clr-red);          border-left: 3px solid var(--clr-red); }
.alert-success { background: var(--clr-green-bg);  color: var(--clr-green-alert);  border-left: 3px solid var(--clr-green-alert); }
.alert-info    { background: var(--clr-blue-light); color: var(--clr-blue-dark);   border-left: 3px solid var(--clr-blue); }
.alert-warning { background: var(--clr-yellow-bg); color: var(--clr-yellow);       border-left: 3px solid var(--clr-yellow); }

.alert-close {
  background: none; border: none; cursor: pointer;
  font-size: 1.1rem; line-height: 1; color: inherit; opacity: .6;
  flex-shrink: 0; padding: 0;
}
.alert.fade-out { opacity: 0; transition: opacity .5s; }

@keyframes slideIn {
  from { transform: translateY(-6px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ── Cards ────────────────────────────────────────────────────────────────── */
.card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card h2 { font-size: 1rem; font-weight: 600; margin-bottom: 12px; }
.card-narrow { max-width: 480px; margin: 0 auto; }
.card-highlight { border-color: var(--clr-orange); border-width: 2px; background: var(--clr-orange-bg); }
.card-success   { border-color: var(--clr-green-dark); background: var(--clr-green-bg); }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }

/* ── Page header ──────────────────────────────────────────────────────────── */
.page-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  margin-bottom: 16px;
}
.page-header h1 { font-size: 1.3rem; font-weight: 700; }

/* ── Forms ────────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 5px; color: var(--clr-text);
}
.form-group label small { font-weight: 400; color: var(--clr-text-muted); }

input[type="text"], input[type="password"], input[type="email"],
input[type="file"], select, textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--clr-text);
  background: var(--clr-surface);
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--clr-blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}
input[type="file"] { padding: 6px 8px; cursor: pointer; }

.form-stacked .form-group { margin-bottom: 16px; }
.form-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.inline-form { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  padding: 9px 18px;
  border-radius: 6px; border: none; cursor: pointer;
  font-size: 0.9rem; font-weight: 600; font-family: var(--font);
  transition: background .15s, transform .1s, box-shadow .15s;
  text-decoration: none; white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-full { width: 100%; }

.btn-primary   { background: var(--clr-blue);    color: #fff; }
.btn-primary:hover { background: var(--clr-blue-dark); text-decoration: none; color: #fff; }

.btn-secondary { background: var(--clr-bg); color: var(--clr-text); border: 1px solid var(--clr-border); }
.btn-secondary:hover { background: #e5e7eb; text-decoration: none; }

.btn-success { background: var(--clr-green-dark); color: #fff; }
.btn-success:hover { background: #14532d; text-decoration: none; }

.btn-warning { background: var(--clr-yellow); color: #fff; }
.btn-warning:hover { background: #b45309; text-decoration: none; }

.btn-danger  { background: var(--clr-red);   color: #fff; }
.btn-danger:hover  { background: #b91c1c; text-decoration: none; }

.btn-sm  { padding: 5px 12px; font-size: 0.8rem; }
.btn-xs  { padding: 3px 8px;  font-size: 0.75rem; }

/* ── Badges ───────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center;
  padding: 2px 8px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600;
}
.badge-admin       { background: #fce7f3; color: #9d174d; }
.badge-participant { background: var(--clr-blue-light); color: var(--clr-blue-dark); }
.badge-ok      { background: var(--clr-green-bg);  color: var(--clr-green-dark); }
.badge-warning { background: var(--clr-yellow-bg); color: var(--clr-yellow); }
.badge-pending { background: var(--clr-bg); color: var(--clr-text-muted); border: 1px solid var(--clr-border); }
.badge-strict  { background: var(--clr-blue-light); color: var(--clr-blue-dark); }
.badge-libre   { background: var(--clr-orange-bg);  color: var(--clr-orange); }

/* ── Tables ───────────────────────────────────────────────────────────────── */
.table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.data-table th {
  background: var(--clr-bg); text-align: left;
  padding: 8px 12px; font-weight: 600; font-size: 0.8rem;
  border-bottom: 2px solid var(--clr-border);
  white-space: nowrap;
}
.data-table td { padding: 8px 12px; border-bottom: 1px solid var(--clr-border); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--clr-bg); }
.actions-cell { display: flex; gap: 6px; flex-wrap: wrap; }
.reset-row td { background: var(--clr-yellow-bg) !important; }

/* ── Admin grid ───────────────────────────────────────────────────────────── */
.admin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .admin-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Progress bar ─────────────────────────────────────────────────────────── */
.progress-container { margin-bottom: 16px; }
.progress-bar {
  height: 14px; background: var(--clr-gray-stk);
  border-radius: 999px; overflow: hidden;
}
.progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--clr-green-mid), var(--clr-green-dark));
  border-radius: 999px; transition: width .4s ease;
}
.progress-text { font-size: 0.85rem; color: var(--clr-text-muted); margin-top: 4px; }

/* ── Legend ───────────────────────────────────────────────────────────────── */
.legend {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-bottom: 12px; font-size: 0.8rem;
}
.legend-item { display: flex; align-items: center; gap: 5px; font-weight: 500; }
.legend-item.q-0      { color: #64748b; }
.legend-item.q-1      { color: var(--clr-green-dark); }
.legend-item.q-2plus  { color: #065f46; }
.legend-help { color: var(--clr-text-muted); font-style: italic; }

/* ── Category filter bar ──────────────────────────────────────────────────── */
.cat-filter-bar {
  display: flex; gap: 6px; flex-wrap: nowrap;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding-bottom: 8px; margin-bottom: 16px;
  scrollbar-width: thin;
}
.cat-btn {
  flex-shrink: 0;
  padding: 5px 12px;
  border: 1px solid var(--clr-border);
  border-radius: 999px; background: var(--clr-surface);
  font-size: 0.8rem; font-weight: 500; cursor: pointer;
  color: var(--clr-text-muted); transition: background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.cat-btn:hover     { background: var(--clr-bg); color: var(--clr-text); }
.cat-btn.active    { background: var(--clr-blue); border-color: var(--clr-blue); color: #fff; }

/* ── Category section ─────────────────────────────────────────────────────── */
.category-section { margin-bottom: 24px; }
.cat-title {
  font-size: 1rem; font-weight: 600;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.cat-count { font-size: 0.8rem; font-weight: 400; color: var(--clr-text-muted); }

.cat-code-badge {
  display: inline-block;
  background: var(--clr-blue);
  color: #fff;
  border-radius: 4px;
  padding: 1px 7px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .04em;
  font-family: monospace;
  flex-shrink: 0;
}

/* ── Cat tag list (admin dashboard) ──────────────────────────────────────────── */
.cat-tag-list {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px;
}
.cat-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 0.78rem;
}
.cat-tag strong { color: var(--clr-blue); font-family: monospace; font-size: 0.8rem; }
.cat-tag-nom { color: var(--clr-text-muted); }

/* ── CSV example block ────────────────────────────────────────────────────────── */
pre.csv-example {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-family: monospace;
  margin: 6px 0 8px;
  white-space: pre;
  overflow-x: auto;
}

/* ── Sticker grid ─────────────────────────────────────────────────────────── */
.sticker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 6px;
}

.sticker {
  position: relative;
  min-width: 44px; min-height: 44px;
  border-radius: 6px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 4px 2px;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  transition: transform .1s, background-color .2s;
  border: 1px solid transparent;
  text-align: center;
  overflow: hidden;
}

.sticker[data-editable] { cursor: pointer; }
.sticker[data-editable]:hover { transform: scale(1.06); border-color: rgba(0,0,0,.12); }
.sticker[data-editable]:active { transform: scale(.95); }

.sticker.q-0 {
  background: var(--clr-gray-stk);
  color: #94a3b8;
}
.sticker.q-1 {
  background: var(--clr-green-light);
  color: #14532d;
}
.sticker.q-2plus {
  background: var(--clr-green-dark);
  color: #fff;
}

.sticker-num {
  font-size: 0.9rem; font-weight: 800;
  line-height: 1.1; letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
}
.sticker-nom {
  font-size: 0.55rem; line-height: 1.2;
  margin-top: 2px; opacity: .85;
  word-break: break-word; text-align: center;
}

.sticker-badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--clr-orange);
  color: #fff; border-radius: 50%;
  width: 16px; height: 16px;
  font-size: 0.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* ── Exchange page ────────────────────────────────────────────────────────── */
.exchange-controls {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-bottom: 16px;
}
.mode-toggle { display: flex; gap: 6px; }
.cat-select-wrapper { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; }
.cat-select-wrapper select { width: auto; }

.pairs-list { display: flex; flex-direction: column; gap: 12px; }

.pair-card { padding: 0; overflow: hidden; }
.pair-empty { opacity: .7; }

.pair-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; cursor: pointer;
  transition: background .15s;
}
.pair-header:hover { background: var(--clr-bg); }

.pair-title { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pair-count { font-size: 0.85rem; }
.badge-count {
  background: var(--clr-green-bg); color: var(--clr-green-dark);
  padding: 2px 8px; border-radius: 999px; font-weight: 600; font-size: 0.8rem;
}
.badge-none {
  color: var(--clr-text-muted); font-size: 0.8rem; font-style: italic;
}
.pair-chevron { color: var(--clr-text-muted); font-size: 0.8rem; }

.pair-body { padding: 0 16px 16px; border-top: 1px solid var(--clr-border); }
.pair-subtitle { font-size: 0.85rem; color: var(--clr-text-muted); margin: 10px 0 8px; }
.pair-empty-msg { font-size: 0.85rem; color: var(--clr-text-muted); padding: 8px 0; font-style: italic; }

.strict-pairs { display: flex; flex-direction: column; gap: 8px; }
.strict-pair-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding: 6px 8px; background: var(--clr-bg); border-radius: 6px;
  font-size: 0.85rem;
}
.pair-arrow { color: var(--clr-text-muted); font-size: 1rem; }

.libre-columns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 10px;
}
@media (max-width: 480px) { .libre-columns { grid-template-columns: 1fr; } }

.libre-col h4 { font-size: 0.85rem; margin-bottom: 8px; color: var(--clr-text-muted); }
.libre-row {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 0; border-bottom: 1px solid var(--clr-border);
  font-size: 0.83rem;
}
.no-items { color: var(--clr-text-muted); font-style: italic; font-size: 0.83rem; }

.badge-img {
  background: var(--clr-bg); border: 1px solid var(--clr-border);
  padding: 2px 8px; border-radius: 4px; font-size: 0.82rem;
  font-family: monospace;
}

/* ── Proposals ────────────────────────────────────────────────────────────── */
.proposal-row {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--clr-border);
}
.proposal-row:last-child { border-bottom: none; }
.proposal-info { flex: 1; min-width: 200px; font-size: 0.88rem; line-height: 1.6; }
.proposal-actions { display: flex; gap: 6px; }
.proposal-mode { font-size: 0.7rem; margin-left: 6px; }
.proposal-sent { opacity: .8; }
.inline { display: inline; }

/* ── Notifications ────────────────────────────────────────────────────────── */
.notif-list { display: flex; flex-direction: column; gap: 8px; }
.notif-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--clr-surface); border: 1px solid var(--clr-border);
  border-radius: var(--radius); padding: 12px 16px;
  box-shadow: var(--shadow);
}
.notif-unread {
  border-left: 3px solid var(--clr-orange);
  background: var(--clr-orange-bg);
}
.notif-content { flex: 1; }
.notif-message { font-size: 0.9rem; line-height: 1.5; margin-bottom: 4px; }
.notif-time { font-size: 0.78rem; color: var(--clr-text-muted); }
.notif-dot {
  flex-shrink: 0; width: 10px; height: 10px;
  background: var(--clr-orange); border-radius: 50%;
  margin-top: 4px;
}

/* ── Empty state ──────────────────────────────────────────────────────────── */
.empty-state {
  text-align: center; padding: 48px 16px;
  color: var(--clr-text-muted); font-size: 1rem;
}
.empty-state p { margin-bottom: 16px; }

/* ── Errors list ──────────────────────────────────────────────────────────── */
.errors-list { margin-bottom: 16px; }

/* ── Code ─────────────────────────────────────────────────────────────────── */
code {
  background: var(--clr-bg); border: 1px solid var(--clr-border);
  border-radius: 4px; padding: 1px 5px;
  font-size: 0.85em; font-family: monospace;
}

/* ── Responsive tweaks ────────────────────────────────────────────────────── */
@media (min-width: 640px) {
  .main-content { padding: 24px 20px 60px; }
  .sticker-grid { grid-template-columns: repeat(auto-fill, minmax(70px, 1fr)); gap: 8px; }
  .sticker { min-height: 56px; }
  .sticker-num { font-size: 1rem; }
  .sticker-nom { font-size: 0.6rem; }
}

@media (min-width: 1024px) {
  .sticker-grid { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 10px; }
  .sticker { min-height: 64px; }
  .sticker-num { font-size: 1.1rem; }
  .sticker-nom { font-size: 0.65rem; }
}

/* ── Export / Import panel ─────────────────────────────────────────────── */
.export-import-panel {
  margin: 0.75rem 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background: var(--card-bg);
}
.export-import-panel summary {
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  user-select: none;
}
.export-import-panel summary:hover { background: var(--bg-secondary); border-radius: var(--radius); }
.export-import-body {
  padding: 0.75rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.export-btns { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.import-form { display: flex; flex-direction: column; gap: 0.4rem; }
.import-label input[type="file"] { display: block; margin-top: 0.25rem; }
.import-hint { color: var(--text-secondary); font-size: 0.8rem; }
.btn-sm { padding: 0.25rem 0.6rem; font-size: 0.85rem; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: var(--radius);
  padding: 0.25rem 0.65rem;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
}
.btn-outline:hover { background: var(--primary-color); color: #fff; }
