/* ===========================
   LUMIOS PRICE TRACKER – CSS
   =========================== */

:root {
  --bg-deep: #08090d;
  --bg-surface: #0f1117;
  --bg-card: #141721;
  --bg-card-hover: #1a1f2e;
  --border: rgba(255, 255, 255, 0.07);
  --border-glow: rgba(100, 120, 255, 0.2);

  --accent-blue: #4f6fff;
  --accent-purple: #8b5cf6;
  --accent-cyan: #06b6d4;
  --accent-green: #22c55e;
  --accent-orange: #f97316;
  --accent-red: #ef4444;
  --accent-gold: #f59e0b;

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #475569;

  --gradient-main: linear-gradient(135deg, #4f6fff 0%, #8b5cf6 50%, #06b6d4 100%);
  --gradient-hot: linear-gradient(135deg, #f97316, #ef4444);
  --gradient-gold: linear-gradient(135deg, #f59e0b, #f97316);
  --gradient-success: linear-gradient(135deg, #22c55e, #06b6d4);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(79, 111, 255, 0.15);

  --font-main: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   HEADER
===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 13, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 60px at 50% 0%, rgba(79,111,255,0.08), transparent);
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-orb {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(79,111,255,0.5);
  animation: orb-pulse 3s ease-in-out infinite;
}

@keyframes orb-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(79,111,255,0.5); }
  50% { box-shadow: 0 0 35px rgba(139,92,246,0.7), 0 0 60px rgba(6,182,212,0.3); }
}

.orb-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  opacity: 0.9;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.last-update {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.btn-refresh {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(79, 111, 255, 0.1);
  border: 1px solid rgba(79, 111, 255, 0.3);
  border-radius: var(--radius-sm);
  color: var(--accent-blue);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-refresh:hover {
  background: rgba(79, 111, 255, 0.2);
  border-color: var(--accent-blue);
  transform: translateY(-1px);
}

.btn-refresh:active svg {
  animation: spin 0.5s linear;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* =====================
   HERO
===================== */
.hero {
  padding: 52px 0 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,111,255,0.07) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  margin-bottom: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-green);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.badge-dot--live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 1.5s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

/* =====================
   STATS CARDS
===================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: -1px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  transition: opacity 0.3s;
  opacity: 0.7;
}

.stat-card--best::before { background: var(--gradient-gold); }
.stat-card--avg::before { background: var(--gradient-main); }
.stat-card--alert::before { background: var(--gradient-hot); }
.stat-card--sites::before { background: var(--gradient-success); }

.stat-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.stat-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
}

/* =====================
   FILTERS BAR
===================== */
.filters-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 73px;
  z-index: 90;
}

.filters-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.filter-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.filter-tab {
  padding: 7px 16px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.filter-tab:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
}

.filter-tab.active {
  background: var(--accent-blue);
  color: white;
  font-weight: 600;
}

.tab-badge {
  background: rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 1px 7px;
  font-size: 11px;
  font-weight: 700;
}

.filter-tab.active .tab-badge {
  background: rgba(255,255,255,0.3);
}

.sort-select {
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.sort-select option {
  background: var(--bg-surface);
  color: var(--text-primary);
}

.sort-select:focus { outline: none; border-color: var(--accent-blue); }

/* =====================
   MAIN CONTENT
===================== */
.main-content {
  padding: 32px 0 60px;
}

/* ALERT BANNER */
.alert-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(239,68,68,0.1));
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  animation: slideDown 0.4s ease;
}

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

.alert-banner-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.alert-banner-text {
  font-size: 14px;
  color: var(--text-primary);
}

.alert-banner-text strong {
  color: var(--accent-orange);
}

/* TABLE */
.table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table thead {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

.price-table thead th {
  padding: 16px 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: left;
  white-space: nowrap;
}

.col-site { width: 22%; }
.col-type { width: 10%; }
.col-base { width: 14%; text-align: right; }
.col-shipping { width: 14%; text-align: right; }
.col-total { width: 14%; text-align: right; }
.col-badge { width: 16%; text-align: center; }
.col-action { width: 10%; text-align: center; }

.price-table thead th.col-base,
.price-table thead th.col-shipping,
.price-table thead th.col-total,
.price-table thead th.col-badge,
.price-table thead th.col-action {
  text-align: center;
}

/* TABLE ROWS */
.price-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
  cursor: default;
}

.price-table tbody tr:last-child { border-bottom: none; }

.price-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

.price-table tbody tr.row--hot {
  background: rgba(249, 115, 22, 0.04);
}

.price-table tbody tr.row--hot:hover {
  background: rgba(249, 115, 22, 0.08);
}

.price-table tbody td {
  padding: 18px 20px;
  font-size: 14px;
  vertical-align: middle;
}

/* SITE CELL */
.site-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-favicon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  overflow: hidden;
}

.site-favicon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.site-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.site-domain {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

/* TYPE BADGE */
.type-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.type-badge--specialist {
  background: rgba(79,111,255,0.12);
  color: var(--accent-blue);
  border: 1px solid rgba(79,111,255,0.2);
}

.type-badge--general {
  background: rgba(139,92,246,0.12);
  color: var(--accent-purple);
  border: 1px solid rgba(139,92,246,0.2);
}

/* PRICE CELLS */
.price-base, .price-shipping, .price-total {
  text-align: center;
  font-family: var(--font-display);
}

.price-base .amount {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.price-shipping .amount {
  font-size: 14px;
  font-weight: 600;
}

.price-shipping .amount.free {
  color: var(--accent-green);
}

.price-shipping .amount.paid {
  color: var(--text-secondary);
}

.price-shipping .amount.pickup {
  color: var(--accent-cyan);
  font-size: 12px;
}

.price-total .amount {
  font-size: 18px;
  font-weight: 800;
}

.price-total .amount.best {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-total .amount.hot {
  color: var(--accent-orange);
}

.price-total .amount.normal {
  color: var(--text-primary);
}

.price-total .amount.pickup-total {
  background: var(--gradient-success);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* STATUS BADGES */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.badge--hot {
  background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(239,68,68,0.15));
  color: var(--accent-orange);
  border: 1px solid rgba(249,115,22,0.3);
}

.badge--best {
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(249,115,22,0.15));
  color: var(--accent-gold);
  border: 1px solid rgba(245,158,11,0.3);
}

.badge--free {
  background: rgba(34,197,94,0.12);
  color: var(--accent-green);
  border: 1px solid rgba(34,197,94,0.25);
}

.badge--pickup {
  background: rgba(6,182,212,0.12);
  color: var(--accent-cyan);
  border: 1px solid rgba(6,182,212,0.25);
}

.badge--normal {
  background: rgba(148,163,184,0.1);
  color: var(--text-secondary);
  border: 1px solid rgba(148,163,184,0.15);
}

.badge--warning {
  background: rgba(249,115,22,0.08);
  color: #fb923c;
  border: 1px solid rgba(249,115,22,0.2);
}

/* ACTION CELL */
.action-cell { text-align: center; }

.btn-visit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(79,111,255,0.1);
  border: 1px solid rgba(79,111,255,0.25);
  border-radius: var(--radius-sm);
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-visit:hover {
  background: rgba(79,111,255,0.2);
  border-color: var(--accent-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79,111,255,0.2);
}

/* SPECIAL NOTE */
.special-note {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(6,182,212,0.06);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: var(--radius-md);
  margin-top: 24px;
  animation: fadeIn 0.5s ease 0.3s both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.note-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }

.note-content {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.note-content strong { color: var(--accent-cyan); }

/* LEGEND */
.legend {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: var(--bg-surface);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-orb {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: inline-block;
  flex-shrink: 0;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* =====================
   EMPTY STATE
===================== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-state-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.empty-state-text {
  font-size: 16px;
  font-weight: 500;
}

/* =====================
   LOADING
===================== */
.loading-shimmer {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.03) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
  height: 16px;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1100px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .table-wrapper { overflow-x: auto; }
  .price-table { min-width: 800px; }
  .filters-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 32px; }
  .header-meta .last-update { display: none; }
  .legend { flex-direction: column; gap: 12px; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 400px) {
  .stats-row { grid-template-columns: 1fr; }
}

/* =====================
   ANIMATIONS D'ENTRÉE
===================== */
.table-wrapper {
  animation: fadeIn 0.5s ease;
}

.stat-card {
  animation: fadeIn 0.4s ease both;
}
.stat-card:nth-child(1) { animation-delay: 0.05s; }
.stat-card:nth-child(2) { animation-delay: 0.1s; }
.stat-card:nth-child(3) { animation-delay: 0.15s; }
.stat-card:nth-child(4) { animation-delay: 0.2s; }

/* Row entrance animation */
@keyframes rowIn {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

.price-table tbody tr {
  animation: rowIn 0.3s ease both;
}

/* =====================
   MODAL AJOUT SITE
===================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-body {
  padding: 24px;
}

.modal-input {
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-main);
  transition: border-color 0.2s;
}

.modal-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: rgba(255,255,255,0.06);
}

.modal-error {
  margin-top: 16px;
  padding: 12px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  color: var(--accent-red);
  font-size: 13px;
  font-weight: 500;
}

.modal-loading {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-blue);
  font-size: 14px;
  font-weight: 500;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(79, 111, 255, 0.2);
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  background: rgba(0,0,0,0.2);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.btn-cancel {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-cancel:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
}

.btn-confirm {
  padding: 10px 20px;
  background: var(--accent-blue);
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-confirm:hover {
  background: #3e5ee6;
}
