/* Advome Shared Styles — Production-Ready Legal-Tech Platform */
:root {
  --primary: #1a5fb4;
  --primary-light: #3584e4;
  --primary-dark: #104a8e;
  --primary-gradient: linear-gradient(135deg, #1a5fb4 0%, #3584e4 100%);
  --secondary: #26a269;
  --secondary-dark: #1e8a5e;
  --warning: #e5a50a;
  --danger: #c01c28;
  --neutral: #6c757d;
  --bg: #f6f8fc;
  --card-bg: #ffffff;
  --text: #1c1c1c;
  --text-muted: #5e5e5e;
  --border: #e2e8f0;
  --shadow: 0 2px 12px rgba(26, 95, 180, 0.08);
  --shadow-hover: 0 4px 20px rgba(26, 95, 180, 0.14);
  --shadow-lg: 0 8px 30px rgba(26, 95, 180, 0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 36px; height: 36px;
  background: var(--primary-gradient);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 18px;
}

.brand-text { font-weight: 700; font-size: 18px; letter-spacing: -0.3px; }
.brand-sub { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* Navigation */
.main-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover { background: var(--bg); color: var(--primary); }
.nav-link.active { background: var(--primary-gradient); color: white; }

.nav-premium {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: white;
  font-size: 13px;
  font-weight: 600;
  background: var(--primary-gradient);
  transition: var(--transition);
}

.nav-premium:hover { transform: translateY(-1px); box-shadow: var(--shadow-hover); }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 24px; }
.page-header { margin-bottom: 28px; }
.page-header h1 { font-size: 28px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.page-header p { color: var(--text-muted); font-size: 15px; }

/* Cards */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover { box-shadow: var(--shadow-hover); }

.card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-title .icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

/* Hero / Landing */
.hero {
  background: var(--primary-gradient);
  color: white;
  padding: 60px 24px;
  text-align: center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin: -24px -24px 32px -24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.hero h1 { font-size: 42px; font-weight: 700; margin-bottom: 12px; position: relative; }
.hero p { font-size: 18px; opacity: 0.9; max-width: 600px; margin: 0 auto 24px; position: relative; }

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--primary); transform: scale(1.02); }
.pricing-card.featured:hover { transform: scale(1.02) translateY(-4px); }

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-tier { font-size: 14px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.pricing-price { font-size: 48px; font-weight: 700; color: var(--text); line-height: 1; }
.pricing-price span { font-size: 16px; font-weight: 500; color: var(--text-muted); }
.pricing-desc { font-size: 14px; color: var(--text-muted); margin: 16px 0; }
.pricing-features { list-style: none; text-align: left; margin: 20px 0; }
.pricing-features li { padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.pricing-features li::before { content: '✓'; color: var(--secondary); font-weight: 700; }

/* Ad Slots */
.ad-slot {
  background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
  border: 2px dashed #fde047;
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  margin: 20px 0;
  transition: var(--transition);
}

.ad-slot:hover { border-color: #e5a50a; background: linear-gradient(135deg, #fef9c3 0%, #fef08a 100%); }
.ad-slot-label { font-size: 12px; font-weight: 700; color: #854d0e; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.ad-slot-title { font-size: 18px; font-weight: 600; color: #713f12; margin-bottom: 4px; }
.ad-slot-desc { font-size: 13px; color: #a16207; }

/* Timeline */
.timeline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 16px;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow-x: auto;
}

.timeline-step {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
}

.timeline-step .num {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  background: var(--bg);
  color: var(--text-muted);
  border: 2px solid var(--border);
}

.timeline-step.active .num {
  background: var(--primary-gradient);
  color: white;
  border-color: var(--primary);
}

.timeline-step.completed .num {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

.timeline-arrow { color: var(--border); font-size: 14px; }

/* Health / Readiness Meter */
.meter-container { margin-bottom: 20px; }

.meter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.meter-label { font-size: 14px; font-weight: 600; color: var(--text); }
.meter-value { font-size: 14px; font-weight: 700; }

.meter-bar-bg {
  width: 100%;
  height: 10px;
  background: var(--bg);
  border-radius: 5px;
  overflow: hidden;
}

.meter-bar-fill {
  height: 100%;
  border-radius: 5px;
  transition: width 0.6s ease;
  background: var(--primary-gradient);
}

.meter-bar-fill.low { background: var(--danger); }
.meter-bar-fill.medium { background: var(--warning); }
.meter-bar-fill.high { background: var(--secondary); }

.meter-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

.meter-status.critical { background: #fde8e8; color: var(--danger); }
.meter-status.attention { background: #fef3cd; color: #856404; }
.meter-status.healthy { background: #e6f4ea; color: var(--secondary); }

/* Fee Meter */
.fee-meter {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
  border: 1px solid #c7d2fe;
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}

.fee-meter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.fee-meter-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.fee-total {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.fee-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.fee-item {
  background: white;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.fee-item-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.fee-item-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.fee-item.pending { border-left: 3px solid var(--warning); }
.fee-item.paid { border-left: 3px solid var(--secondary); }
.fee-item.estimated { border-left: 3px solid var(--primary-light); }

/* Document Detector */
.doc-detector {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px dashed var(--primary-light);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-bottom: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.doc-detector:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
}

.doc-detector-icon { font-size: 40px; margin-bottom: 12px; }
.doc-detector-title { font-size: 16px; font-weight: 600; color: var(--primary-dark); margin-bottom: 6px; }
.doc-detector-sub { font-size: 13px; color: var(--text-muted); }
.doc-detector-input { display: none; }

.doc-result {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  margin-top: 16px;
  display: none;
}

.doc-result.show { display: block; animation: fadeIn 0.3s ease; }

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

.doc-result-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.doc-result-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.doc-result-badge.detected { background: #e6f4ea; color: var(--secondary); }
.doc-result-badge.unknown { background: #fef3cd; color: #856404; }

.doc-result-title { font-size: 16px; font-weight: 600; }

.doc-result-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.doc-meta-item { display: flex; flex-direction: column; gap: 2px; }
.doc-meta-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.doc-meta-value { font-size: 14px; font-weight: 600; color: var(--text); }

.doc-next-steps {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.doc-next-steps-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 10px; }

.doc-next-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.doc-next-step:last-child { border-bottom: none; }
.doc-next-step .step-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}

/* Template Engine */
.template-engine {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 20px;
}

.template-field {
  margin-bottom: 16px;
}

.template-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.template-field input,
.template-field select,
.template-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font);
  transition: var(--transition);
}

.template-field input:focus,
.template-field select:focus,
.template-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 95, 180, 0.1);
}

.template-output {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 16px;
  font-family: 'Georgia', serif;
  line-height: 1.8;
  white-space: pre-wrap;
  max-height: 400px;
  overflow-y: auto;
}

/* Legislation & Precedent Cards */
.legal-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid var(--primary);
}

.legal-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.legal-card-title { font-size: 15px; font-weight: 600; color: var(--text); }
.legal-card-citation { font-size: 12px; color: var(--primary); font-weight: 600; }
.legal-card-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.legal-card-tags { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }

/* Attorney Portal Specific */
.firm-dashboard {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}

.sidebar {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  height: fit-content;
}

.sidebar-menu { list-style: none; }
.sidebar-menu li { margin-bottom: 4px; }
.sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  background: var(--bg);
  color: var(--primary);
}

.sidebar-menu a.active { background: var(--primary-gradient); color: white; }

/* Matter List */
.matter-list { display: flex; flex-direction: column; gap: 12px; }
.matter-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  cursor: pointer;
}

.matter-item:hover { border-color: var(--primary); box-shadow: var(--shadow); }

.matter-info { flex: 1; }
.matter-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.matter-meta { font-size: 12px; color: var(--text-muted); }
.matter-status { display: flex; align-items: center; gap: 8px; }

/* Client Connect */
.client-connect {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}

.client-connect-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.client-connect-title { font-size: 16px; font-weight: 600; color: var(--secondary-dark); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }

.btn-secondary {
  background: var(--bg);
  color: var(--primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover { background: var(--primary); color: white; }

.btn-success { background: var(--secondary); color: white; }
.btn-success:hover { background: var(--secondary-dark); transform: translateY(-2px); }

.btn-danger { background: var(--danger); color: white; }
.btn-danger:hover { background: #a11722; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover { background: var(--primary); color: white; }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid transparent;
}

.btn-ghost:hover { background: var(--bg); color: var(--text); }

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-block { width: 100%; }

/* Route Cards */
.route-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.route-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

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

.route-card.selected {
  border-color: var(--primary);
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.route-card-icon { font-size: 32px; margin-bottom: 12px; }
.route-card-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.route-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Checklist */
.checklist { list-style: none; }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.checklist-item:last-child { border-bottom: none; }

.checklist-box {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.checklist-box.checked {
  background: var(--secondary);
  border-color: var(--secondary);
  position: relative;
}

.checklist-box.checked::after {
  content: "✓";
  color: white;
  font-size: 12px;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.checklist-text { flex: 1; }
.checklist-text.done { text-decoration: line-through; color: var(--text-muted); }

/* Status Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pill-green { background: #e6f4ea; color: var(--secondary); }
.pill-amber { background: #fef3cd; color: #856404; }
.pill-red { background: #fde8e8; color: var(--danger); }
.pill-blue { background: #e0f2fe; color: var(--primary-dark); }
.pill-purple { background: #f3e8ff; color: #7c3aed; }
.pill-neutral { background: var(--bg); color: var(--neutral); }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .firm-dashboard { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 16px; }
}

/* Footer / Disclaimer */
.disclaimer {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.disclaimer strong {
  color: var(--text);
  display: block;
  margin-bottom: 6px;
}

.access-message {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* Questions Panel */
.questions-panel {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 24px;
}

.questions-panel h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.question-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.question-item:last-child { border-bottom: none; }

.question-q { font-weight: 600; color: var(--primary); margin-bottom: 4px; }
.question-a { color: var(--text-muted); }

/* Section 34 reference */
.section-34 {
  background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
  border: 1px solid #fde047;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  color: #713f12;
  margin-top: 16px;
}

.section-34 strong { color: #854d0e; }

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.modal-overlay.show { display: flex; }

.modal {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.modal-text { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.modal-actions { display: flex; gap: 12px; justify-content: flex-end; }

/* Subscription Banner */
.sub-banner {
  background: linear-gradient(135deg, #1a5fb4 0%, #3584e4 100%);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.sub-banner-text { font-size: 14px; font-weight: 500; }
.sub-banner-price { font-size: 18px; font-weight: 700; }

/* Utility */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.hidden { display: none; }
.w-full { width: 100%; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }
