:root {
    --primary: #2C3E50;
    --orange: #E67E22;
    --orange-light: #FDEBD0;
    --orange-dark: #CA6F1E;
    --white: #FFFFFF;
    --bg: #F4F6F8;
    --surface: #FFFFFF;
    --text: #2C3E50;
    --text-muted: #7F8C8D;
    --border: #E0E6ED;
    --green: #27AE60;
    --blue: #3498DB;
    --purple: #9B59B6;
    --red: #E74C3C;
    --teal: #1ABC9C;
    --dark: #1A252F;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  /* ─── TOP NAV ─── */
  .topbar {
    background: var(--primary);
    padding: 12px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  }
  .topbar-brand { color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.8; }
  .topbar-title { color: var(--white); font-size: 15px; font-weight: 600; }
  .topbar-meta { color: var(--orange); font-size: 12px; font-weight: 500; }

  /* ─── SLIDE NAV BAR ─── */
  .slidenav {
    background: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .slidenav::-webkit-scrollbar { display: none; }
  .snav-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 10px 12px;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    flex-shrink: 0;
  }
  .snav-btn:hover { color: rgba(255,255,255,0.85); }
  .snav-btn.active { color: var(--orange); border-bottom-color: var(--orange); }

  /* ─── MAIN LAYOUT ─── */
  .main-wrap {
    display: flex;
    flex: 1;
    gap: 0;
  }

  /* ─── SLIDE PANEL ─── */
  .slide-panel {
    flex: 1;
    padding: 32px 28px;
    min-width: 0;
  }

  .slide { display: none; animation: fadeIn 0.3s ease; }
  .slide.active { display: block; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

  /* ─── NOTES PANEL ─── */
  .notes-panel {
    width: 300px;
    flex-shrink: 0;
    background: var(--primary);
    border-left: 1px solid rgba(255,255,255,0.08);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .notes-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .notes-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
  .notes-text {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    flex: 1;
  }
  .notes-toggle {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
  }
  .notes-toggle:hover { background: rgba(255,255,255,0.1); }

  /* ─── BOTTOM NAV ─── */
  .bottom-nav {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .nav-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .nav-btn:hover { background: #1a252f; }
  .nav-btn:active { transform: scale(0.97); }
  .nav-btn.orange { background: var(--orange); }
  .nav-btn.orange:hover { background: var(--orange-dark); }
  .nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
  .progress-wrap { flex: 1; display: flex; align-items: center; gap: 12px; }
  .progress-bar { flex: 1; height: 4px; background: var(--border); border-radius: 4px; overflow: hidden; }
  .progress-fill { height: 100%; background: var(--orange); border-radius: 4px; transition: width 0.3s ease; }
  .progress-text { font-size: 12px; color: var(--text-muted); white-space: nowrap; }

  /* ─── SLIDE COMPONENTS ─── */
  .slide-header {
    margin-bottom: 28px;
  }
  .section-badge {
    display: inline-flex;
    align-items: center;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
  }
  .slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .slide-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
  }
  .slide-quote {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-style: italic;
    color: var(--orange-dark);
    line-height: 1.6;
    padding: 16px 20px;
    background: var(--orange-light);
    border-left: 4px solid var(--orange);
    border-radius: 0 8px 8px 0;
    margin-bottom: 28px;
  }

  /* Cards */
  .card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
  }
  .card-dark {
    background: var(--dark);
    border-radius: 12px;
    padding: 20px;
  }
  .card-orange {
    background: var(--orange);
    border-radius: 12px;
    padding: 20px;
  }

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

  /* Layer cards */
  .layer-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
  }
  .layer-num {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 700; color: white;
    margin: 0 auto 14px;
  }
  .layer-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
  .layer-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
  .divider-line { height: 2px; border-radius: 2px; margin: 0 auto 12px; width: 48px; }
  .layer-desc { font-size: 13px; color: var(--text); line-height: 1.6; }

  /* Example item */
  .ex-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }
  .ex-item:last-child { border-bottom: none; }
  .ex-check { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
  .ex-text { font-size: 14px; color: var(--text); line-height: 1.5; }

  /* Pro tip / analogy */
  .pro-tip {
    background: var(--orange);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
  }
  .pro-tip-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.75); margin-bottom: 6px; }
  .pro-tip-text { font-size: 13px; color: white; line-height: 1.5; }
  .analogy-box {
    background: var(--dark);
    border-radius: 10px;
    padding: 16px;
  }
  .analogy-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--orange); margin-bottom: 6px; }
  .analogy-text { font-size: 13px; color: rgba(255,255,255,0.75); font-style: italic; line-height: 1.5; }

  /* Strategy badge */
  .strat-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px;
    font-size: 16px; font-weight: 700; color: white;
    flex-shrink: 0;
  }

  /* Funnel */
  .funnel-step {
    background: var(--dark);
    border-radius: 8px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
  }
  .funnel-step.highlight { background: var(--orange); }
  .funnel-label { font-size: 12px; font-weight: 700; color: var(--orange); min-width: 90px; }
  .funnel-step.highlight .funnel-label { color: var(--primary); }
  .funnel-arrow { color: rgba(255,255,255,0.4); font-size: 16px; }
  .funnel-step.highlight .funnel-arrow { color: rgba(0,0,0,0.4); }
  .funnel-value { font-size: 14px; color: white; }
  .funnel-step.highlight .funnel-value { color: white; font-weight: 600; }

  /* Niche table */
  .niche-row {
    display: grid;
    grid-template-columns: 100px 1fr 20px 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 8px;
  }
  .niche-cat { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
  .niche-from { font-size: 13px; color: var(--red); }
  .niche-arrow { font-size: 16px; color: var(--orange); text-align: center; }
  .niche-to { font-size: 13px; color: var(--green); font-weight: 500; }

  /* Exercise table */
  .ex-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
  .ex-table th {
    background: var(--orange);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 12px;
    text-align: left;
  }
  .ex-table th:first-child { border-radius: 8px 0 0 0; }
  .ex-table th:last-child { border-radius: 0 8px 0 0; }
  .ex-table td {
    padding: 10px 12px;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
  }
  .ex-table tr.example-row td { background: var(--dark); color: #F0B27A; }
  .ex-table tr.blank-row td { background: var(--surface); color: var(--text-muted); font-style: italic; height: 44px; }
  .ex-table input {
    background: transparent;
    border: none;
    outline: none;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    width: 100%;
  }
  .ex-table tr.blank-row td:first-child { border-left: 2px solid var(--orange); }

  /* Takeaway rows */
  .takeaway {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--dark);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 10px;
  }
  .takeaway-icon { font-size: 22px; flex-shrink: 0; }
  .takeaway-text { font-size: 14px; color: white; font-weight: 500; line-height: 1.4; }

  /* Hero slide */
  .hero-slide {
    background: var(--primary);
    border-radius: 16px;
    padding: 40px 36px;
    color: white;
  }
  .hero-headline { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; line-height: 1.15; margin-bottom: 8px; }
  .hero-sub { font-size: 16px; color: rgba(255,255,255,0.6); font-style: italic; margin-bottom: 28px; }
  .hero-divider { width: 60px; height: 4px; background: var(--orange); border-radius: 2px; margin-bottom: 24px; }
  .hero-reality {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 20px;
  }
  .hero-reality-label { font-size: 12px; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
  .hero-reality-text { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; }
  .hero-reality-text strong { color: var(--orange); }
  .hero-quote { font-family: 'Playfair Display', serif; font-size: 15px; font-style: italic; color: rgba(255,255,255,0.55); text-align: center; line-height: 1.6; }

  /* Outcome slide */
  .outcome-box {
    background: var(--orange);
    border-radius: 12px;
    padding: 18px 24px;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .outcome-row {
    background: var(--dark);
    border-radius: 10px;
    padding: 14px 20px;
    margin-bottom: 10px;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .outcome-num { background: var(--orange); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }

  /* Section overview grid */
  .strat-overview-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s;
  }
  .strat-overview-card:hover { border-color: var(--orange); transform: translateY(-1px); }
  .strat-num-badge {
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700; color: white;
    flex-shrink: 0;
  }
  .strat-name { font-size: 14px; font-weight: 600; }

  /* Strategy detail slide */
  .strat-header { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
  .strat-tagline { font-size: 14px; color: var(--text-muted); font-style: italic; margin-bottom: 20px; margin-left: 50px; }
  .strat-content { display: grid; grid-template-columns: 1fr 280px; gap: 20px; }
  .examples-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
  }
  .examples-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }

  /* Benefits pills */
  .benefit-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
  .pill {
    background: rgba(230,126,34,0.12);
    color: var(--orange-dark);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .pill-check { color: var(--orange); font-size: 12px; }

  /* Resistance bands comparison */
  .compare-grid { display: grid; grid-template-columns: 1fr 40px 1fr; gap: 0; align-items: stretch; }
  .compare-bad { background: var(--surface); border: 1px solid var(--border); border-radius: 12px 0 0 12px; padding: 20px; }
  .compare-arrow-col { display: flex; align-items: center; justify-content: center; background: var(--bg); }
  .compare-good { background: var(--dark); border-radius: 0 12px 12px 0; padding: 20px; }
  .compare-title { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
  .compare-item { font-size: 13px; padding: 6px 0; border-bottom: 1px solid var(--border); }
  .compare-item:last-child { border-bottom: none; }
  .compare-item-dark { font-size: 13px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.08); color: #F0B27A; }
  .compare-item-dark:last-child { border-bottom: none; }

  /* ─── SCRIPT PANEL ─── */
  .notes-panel {
    width: 300px;
    flex-shrink: 0;
    background: #0d1117;
    border-left: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
  }
  .script-header {
    padding: 14px 16px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
  }
  .script-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .script-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
  .tp-btn {
    background: rgba(230,126,34,0.15);
    border: 1px solid rgba(230,126,34,0.3);
    color: var(--orange);
    font-size: 11px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.03em;
  }
  .tp-btn:hover { background: rgba(230,126,34,0.28); }
  .script-lines {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(230,126,34,0.3) transparent;
  }
  .script-line {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.5);
    padding: 8px 10px;
    border-radius: 6px;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
  }
  .script-line:hover { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.8); }
  .script-line.current {
    color: #FFFFFF;
    background: rgba(230,126,34,0.12);
    border-left-color: var(--orange);
    font-weight: 500;
  }
  .script-line.done { color: rgba(255,255,255,0.2); text-decoration: line-through; }
  .script-footer {
    padding: 10px 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    gap: 8px;
    flex-shrink: 0;
  }
  .sf-btn {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    font-family: 'Inter', sans-serif;
    padding: 7px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .sf-btn:hover { background: rgba(255,255,255,0.1); color: white; }


  /* Responsive */
  @media (max-width: 900px) {
    .notes-panel { display: none; }
    .grid-2-1 { grid-template-columns: 1fr; }
    .strat-content { grid-template-columns: 1fr; }
    .compare-grid { grid-template-columns: 1fr; }
    .compare-bad { border-radius: 12px 12px 0 0; }
    .compare-arrow-col { height: 36px; }
    .compare-good { border-radius: 0 0 12px 12px; }
    .tp-line { font-size: 22px; }
  }

  @media print {
    .topbar,.slidenav,.bottom-nav,#notesPanel,#tpOverlay,#voiceToast { display:none!important; }
    .main-wrap { display:block!important; }
    .slide { display:block!important; page-break-after:always; break-after:page; }
    body { background:white!important; }
  }

  /* ── ANNOTATION TOOLBAR ── */
  #annotationBar {
    display: none;
    position: fixed;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6000;
    background: rgba(26,37,47,0.97);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 32px;
    padding: 14px 8px;
    flex-direction: column;
    cursor: grab;
    align-items: center;
    gap: 6px;
    box-shadow: -4px 0 32px rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    user-select: none;
    width: 52px;
  }
  #annotationBar.open { display: flex; }

  .ann-sep { height: 1px; width: 28px; background: rgba(255,255,255,0.12); margin: 2px 0; }

  .ann-tool {
    width: 34px; height: 34px; border-radius: 8px;
    border: 2px solid transparent;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.75) !important;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
  }
  .ann-tool:hover { background: rgba(255,255,255,0.14); color: white !important; }
  .ann-tool.active { border-color: var(--orange); background: rgba(230,126,34,0.2); color: var(--orange) !important; }
  .ann-tool svg { pointer-events: none; display: block; }

  .ann-color {
    width: 22px; height: 22px; border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer; flex-shrink: 0;
    transition: transform 0.15s, border-color 0.15s;
  }
  .ann-color:hover { transform: scale(1.2); }
  .ann-color.active { border-color: white; transform: scale(1.15); }

  .ann-size-btn {
    width: 28px; height: 22px; border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.6);
    font-size: 14px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
    line-height: 1;
  }
  .ann-size-btn:hover { background: rgba(255,255,255,0.12); color: white; }
  #annSizeVal { font-size: 11px; color: rgba(255,255,255,0.5); text-align: center; width:100%; }

  /* Canvas overlay — sits over slide panel, below overlays */
  #annotationCanvas {
    position: fixed;
    pointer-events: none;
    z-index: 5500;
    cursor: crosshair;
  }
  #annotationCanvas.active { pointer-events: all; }


  /* ══ 16:9 FULLSCREEN MODE ══
   * Simple & clean:
   * - Browser goes true fullscreen (hides chrome + taskbar)
   * - Normal page layout unchanged
   * - Slide panel gets 16:9 height + orange guide border
   * - Slide content fills the box vertically
   */

  /* ── 16:9 slide panel in fs-mode ── */
  body.fs-mode #slidePanel {
    border: 2px dashed var(--orange) !important;
    box-shadow: 0 0 0 4px rgba(230,126,34,0.15) !important;
    border-radius: 4px;
    overflow: hidden !important;
    /* Width and height locked via JS inline styles — no CSS constraints needed */
  }

  /* When website chrome is hidden in fs-mode */
  .fs-hide { display: none !important; }

  /* Notes panel locked in fs-mode — same height as slide, scrollable inside */
  body.fs-mode .notes-panel {
    overflow: hidden !important;
    flex-shrink: 0 !important;
    min-height: 0 !important;
  }
  body.fs-mode .script-lines {
    overflow-y: auto !important;
    min-height: 0 !important;
    flex: 1 !important;
  }

  /* Slides fill the full panel height in fs-mode */
  body.fs-mode #slidePanel .slide.active {
    min-height: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
  }

  /* main-wrap fits content naturally — no overflow */
  body.fs-mode .main-wrap {
    overflow: visible;
  }

  /* FS button active state */
  #fsBtn.active {
    background: rgba(230,126,34,0.25) !important;
    border-color: rgba(230,126,34,0.6) !important;
    color: var(--orange) !important;
  }