/* ════════════════════════════════════════════════════════════
   LBC/FT Expert — Stylesheet
   Design : Institutionnel, sobre, bilingue FR/AR
   ════════════════════════════════════════════════════════════ */

:root {
  --navy:       #0f2444;
  --navy-light: #1a3a6b;
  --gold:       #c8973a;
  --gold-light: #e8b55a;
  --cream:      #f8f5f0;
  --white:      #ffffff;
  --text:       #1a1a2e;
  --text-muted: #5a6275;
  --border:     #ddd8cf;
  --premium:    #1a3a6b;
  --free-green: #1a6b3a;
  --shadow:     0 4px 24px rgba(15,36,68,0.10);
  --shadow-lg:  0 8px 48px rgba(15,36,68,0.15);
  --radius:     8px;
  --radius-lg:  16px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', 'Segoe UI', sans-serif;
  --font-arabic:  'Noto Naskh Arabic', 'Times New Roman', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
}

body[dir="rtl"] {
  font-family: var(--font-arabic);
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  height: 68px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 28px;
  line-height: 1;
  color: var(--gold);
}

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

.logo-main {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

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

.nav-link {
  padding: 6px 14px;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.premium-link {
  color: var(--gold-light) !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  background: transparent;
}

.lang-toggle:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.lang-sep { opacity: 0.4; }

.btn-login {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  transition: all 0.2s;
}

.btn-login:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn-premium {
  padding: 7px 16px;
  background: var(--gold);
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.2s;
}

.btn-premium:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200,151,58,0.4);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26,58,107,0.8) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200,151,58,0.15) 0%, transparent 50%),
    linear-gradient(135deg, #0f2444 0%, #1a3a6b 60%, #0f2444 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 80px,
      rgba(255,255,255,0.015) 80px,
      rgba(255,255,255,0.015) 81px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 80px,
      rgba(255,255,255,0.015) 80px,
      rgba(255,255,255,0.015) 81px
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 48px;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(200,151,58,0.2);
  border: 1px solid rgba(200,151,58,0.5);
  border-radius: 20px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

body[dir="rtl"] .hero-title {
  font-family: var(--font-arabic);
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  padding: 12px 28px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,151,58,0.4);
}

.btn-hero-secondary {
  padding: 12px 28px;
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-hero-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.hero-visual {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(10px);
  min-width: 240px;
  transition: all 0.3s;
}

.hero-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(-4px);
}

.hcard-icon { font-size: 24px; }

.hcard-label {
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
}

.hcard-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.hcard-badge {
  margin-left: auto;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.hcard-badge.free {
  background: rgba(26,107,58,0.3);
  color: #5dda8a;
  border: 1px solid rgba(93,218,138,0.3);
}

.hcard-badge.premium {
  background: rgba(200,151,58,0.25);
  color: var(--gold-light);
  border: 1px solid rgba(200,151,58,0.4);
}

/* ── SECTIONS ── */
.section-sectors {
  padding: 80px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

body[dir="rtl"] .section-header h2 {
  font-family: var(--font-arabic);
}

.section-header p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.sector-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.sector-card.free {
  border-color: rgba(26,107,58,0.25);
  cursor: pointer;
}

.sector-card.premium {
  border-color: rgba(200,151,58,0.35);
  cursor: pointer;
}

.sector-card.coming-soon {
  opacity: 0.65;
  cursor: default;
}

.sector-card:hover:not(.coming-soon) {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.sector-icon { font-size: 32px; flex-shrink: 0; }

.sector-info { flex: 1; }

.sector-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.sector-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.sector-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

.sector-access {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

body[dir="rtl"] .sector-access {
  right: auto;
  left: 16px;
}

.free-badge {
  background: rgba(26,107,58,0.1);
  color: var(--free-green);
  border: 1px solid rgba(26,107,58,0.25);
}

.premium-badge {
  background: rgba(200,151,58,0.12);
  color: #8b6820;
  border: 1px solid rgba(200,151,58,0.35);
}

.soon-badge {
  background: rgba(90,98,117,0.1);
  color: var(--text-muted);
  border: 1px solid rgba(90,98,117,0.2);
}

/* ── ABONNEMENT TEASER ── */
.section-abonnement {
  padding: 80px 0;
  background: var(--cream);
}

.abo-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.abo-free, .abo-premium {
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}

.abo-free {
  background: var(--white);
  border: 1.5px solid var(--border);
}

.abo-premium {
  background: var(--navy);
  border: 2px solid var(--gold);
}

.abo-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
}

.abo-icon { font-size: 36px; margin-bottom: 16px; }

.abo-free h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 20px;
}

.abo-premium h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 20px;
}

.abo-free ul, .abo-premium ul {
  list-style: none;
  margin-bottom: 28px;
}

.abo-free ul li, .abo-premium ul li {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}

.abo-free ul li { color: var(--text-muted); }
.abo-premium ul li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.1); }

.abo-free ul li::before { content: '✓'; color: var(--free-green); font-weight: 700; }
.abo-premium ul li::before { content: '✓'; color: var(--gold-light); font-weight: 700; }

.btn-abo-free {
  display: block;
  text-align: center;
  padding: 12px 24px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
}

.btn-abo-free:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-abo-premium {
  display: block;
  text-align: center;
  padding: 13px 24px;
  background: var(--gold);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
  margin-bottom: 10px;
}

.btn-abo-premium:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 48px 24px;
  border-bottom: 3px solid var(--gold);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

body[dir="rtl"] .page-hero h1 {
  font-family: var(--font-arabic);
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
}

/* ── CADRE RÉGLEMENTAIRE LAYOUT ── */
.reglementaire-layout {
  display: flex;
  min-height: calc(100vh - 68px - 120px);
  position: relative;
}

/* ── SIDEBAR ── */
.reg-sidebar {
  width: 320px;
  flex-shrink: 0;
  background: var(--white);
  border-right: 1.5px solid var(--border);
  overflow-y: auto;
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
}

body[dir="rtl"] .reg-sidebar {
  border-right: none;
  border-left: 1.5px solid var(--border);
}

.sidebar-section {
  border-bottom: 1.5px solid var(--border);
  padding: 16px 0;
}

.sidebar-title {
  padding: 8px 16px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.free-section {
  color: var(--free-green);
}

.premium-section {
  color: var(--gold);
}

.coming-title {
  color: var(--text-muted);
}

.sidebar-group {
  margin-bottom: 4px;
}

.sidebar-group-label {
  padding: 6px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sidebar-item {
  display: block;
  width: 100%;
  padding: 9px 16px 9px 24px;
  text-align: left;
  font-size: 13px;
  color: var(--text);
  border-left: 3px solid transparent;
  transition: all 0.15s;
  line-height: 1.4;
  cursor: pointer;
  background: none;
  border-right: none;
  border-top: none;
  border-bottom: none;
  font-family: inherit;
}

body[dir="rtl"] .sidebar-item {
  text-align: right;
  padding: 9px 24px 9px 16px;
  border-left: none;
  border-right: 3px solid transparent;
}

.sidebar-item:hover {
  background: rgba(15,36,68,0.04);
  color: var(--navy);
  border-left-color: var(--gold);
}

body[dir="rtl"] .sidebar-item:hover {
  border-left-color: transparent;
  border-right-color: var(--gold);
}

.sidebar-item.active {
  background: rgba(200,151,58,0.08);
  color: var(--navy);
  font-weight: 600;
  border-left-color: var(--gold);
}

body[dir="rtl"] .sidebar-item.active {
  border-left-color: transparent;
  border-right-color: var(--gold);
}

.premium-item.locked {
  color: var(--text-muted);
  cursor: pointer;
}

.premium-item.locked:hover {
  background: rgba(200,151,58,0.06);
  color: var(--navy);
  border-left-color: var(--gold);
}

.sidebar-lang-bar {
  display: flex;
  gap: 4px;
  padding: 8px 16px;
  margin-bottom: 4px;
}

.slang-btn {
  flex: 1;
  padding: 5px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
}

.slang-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.coming-soon-sidebar {
  background: rgba(90,98,117,0.04);
}

.sidebar-soon-list {
  padding: 4px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-soon-list span {
  font-size: 12px;
  color: var(--text-muted);
  padding: 4px 0;
}

/* ── PDF VIEWER ── */
.reg-viewer {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #e8e4dd;
  position: relative;
  min-height: calc(100vh - 68px);
}

.viewer-toolbar {
  background: var(--navy);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2px solid var(--gold);
  flex-shrink: 0;
}

.viewer-doc-title {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.viewer-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.vctr-btn {
  padding: 4px 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 5px;
  color: var(--white);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}

.vctr-btn:hover {
  background: rgba(255,255,255,0.2);
}

.zoom-level {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  min-width: 36px;
  text-align: center;
}

.viewer-secure-badge {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
}

.pdf-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  overflow: auto;
  user-select: none;
  -webkit-user-select: none;
}

#pdfCanvas {
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
  border-radius: 4px;
  background: white;
  max-width: 100%;
  display: block;
}

.pdf-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  background: rgba(0,0,0,0.15);
  border-radius: 30px;
  margin-top: 16px;
}

.pdf-nav-btn {
  padding: 6px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  font-size: 13px;
  transition: all 0.15s;
  font-family: inherit;
  cursor: pointer;
  border: none;
}

.pdf-nav-btn:hover:not(:disabled) {
  background: var(--navy-light);
}

.pdf-nav-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.pdf-page-info {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}

/* ── PREMIUM OVERLAY ── */
.premium-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,36,68,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  backdrop-filter: blur(4px);
}

.premium-overlay-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
}

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

.premium-overlay-box h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.premium-overlay-box p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.premium-overlay-box .btn-abo-free {
  margin-top: 10px;
  font-weight: 500;
  font-size: 13px;
  border-width: 1px;
  border-color: var(--border);
  color: var(--text-muted);
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .abo-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .reg-sidebar { width: 260px; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 0 16px; gap: 12px; }
  .logo-sub { display: none; }
}

@media (max-width: 600px) {
  .reglementaire-layout { flex-direction: column; }
  .reg-sidebar {
    width: 100%;
    height: auto;
    position: static;
    max-height: 300px;
  }
}

/* ── RTL ADJUSTMENTS ── */
body[dir="rtl"] .hero-content { padding: 60px 48px; }
body[dir="rtl"] .sector-access { right: auto; left: 16px; }
body[dir="rtl"] .abo-badge-top { left: auto; right: 50%; transform: translateX(50%); }
body[dir="rtl"] .footer-grid { direction: rtl; }
body[dir="rtl"] .sidebar-item { text-align: right; }

/* ── SMOOTH TRANSITIONS ── */
body { transition: direction 0.01s; }
[data-fr], [data-ar] { transition: opacity 0.2s; }

/* ── SIDEBAR COMING SOON ── */
.sidebar-coming {
  background: rgba(90,98,117,0.03);
  opacity: 0.85;
}

.sidebar-soon-msg {
  padding: 8px 16px 14px;
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

/* ── HEADER LOGIN DYNAMIC ── */
#headerLoginBtn { transition: color .2s; }

/* ── PROFIL REDIRECT ── */
.btn-hero-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
}
.btn-hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ── PREMIUM ITEMS LOCK ICON ── */
.sidebar-item.premium-item span {
  display: inline;
}
