/* =====================================================
   Saste Tools — Luxury Black & Gold Design Tokens
   Load this file FIRST, before any other CSS file.
   ===================================================== */

:root {
  /* ---- Core surfaces ---- */
  --black: #050505;
  --black-soft: #0d0d0d;
  --card-bg: #111111;
  --card-bg-hover: #161616;
  --card-border: #262626;
  --card-border-hover: #3a3020;

  /* ---- Gold system (luxury) ---- */
  --gold: #FCC00A;
  --gold-light: #FDD65F;
  --gold-dark: #BD9007;
  --gold-glow: rgba(252, 192, 10, 0.35);
  --gold-glow-soft: rgba(252, 192, 10, 0.15);

  /* ---- Text ---- */
  --text-light: #FFFFFF;
  --text-muted: #9CA3AF;
  --text-faint: #6b7280;

  /* ---- Status ---- */
  --success: #2ecc71;
  --danger: #ff6b6b;
  --whatsapp: #25D366;

  /* ---- Shape & motion ---- */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.16s ease;

  /* ---- Glassmorphism ---- */
  --glass-bg: rgba(17, 17, 17, 0.6);
  --glass-border: rgba(252, 192, 10, 0.15);
  --glass-blur: blur(16px);

  /* ---- Shadows ---- */
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 10px 34px var(--gold-glow);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
}

/* Backward-compatible aliases so existing markup/classes using the
   old variable names keep working while we migrate section by section. */
:root {
  --yellow: var(--gold);
  --yellow-dark: var(--gold-dark);
  --yellow-glow: var(--gold-glow);
}
