/* Default theme — ORANGE color scheme (warm orange accent on a neutral base).
   Only colours here — a copy of default.css with just the accent (primary trio) set to
   orange; surfaces + status colours unchanged (proven contrast).
   Developed by Bilal & the HQ Team. */
:root{
  /* ---- brand / accent ---- */
  --c-primary:      #ea580c;   /* orange — buttons & links */
  --c-primary-dark: #c2410c;   /* hover */
  --c-primary-soft: #ffedd5;   /* focus ring + soft chips */
  --c-on-primary:   #ffffff;   /* text/icon ON a primary-coloured button/badge/tab */

  /* ---- surfaces + text ---- */
  --c-header:   #f5f5f6;       /* header bar */
  --c-bg:       #ffffff;       /* page background */
  --c-card:     #f6f6f7;       /* card background */
  --c-input:    #ffffff;       /* input / toggle background */
  --c-text:     #333333;       /* main text */
  --c-muted:    #777777;       /* secondary text */
  --c-border:   #dddddd;       /* borders */
  --c-active:   #e9e9ea;       /* hover / active row */
  --c-shadow:   rgba(0,0,0,.03);
  --c-overlay:  rgba(255,255,255,.65);   /* full-page loading veil */
  --c-radius:   4px;           /* boxy / classic */

  /* ---- status: alerts + badges (text / background / border) ---- */
  --c-success:  #0f6b3f;  --c-success-bg:  #e8f7ee;  --c-success-border:  #b7dfc5;
  --c-danger:   #b42318;  --c-danger-bg:   #fdeceb;  --c-danger-border:   #f3c2bd;
  --c-warning:  #8a6d00;  --c-warning-bg:  #fff7e0;  --c-warning-border:  #f0d998;
  --c-info:     #0a4ea3;  --c-info-bg:     #e8f1fd;  --c-info-border:     #b7d3f5;
  --c-neutral:  #4b5563;  --c-neutral-bg:  #eef0f3;              /* closed / spam / refunded */
  --c-announce: #5b21b6;  --c-announce-bg: #f1ebfd;              /* announcement */

  /* ---- misc accents ---- */
  --c-star:       #f6a609;   /* rating stars */
  --c-wheel-line: #000000;   /* spin-wheel outline + labels (contrast on coloured segments) */
}
