/* ==========================================
   ELIVANCE CORE: BRUTALIST OVERRIDES 
   ========================================== */

   :root, .color-scheme-1, .color-scheme-2, .color-scheme-3, .color-scheme-4, .color-scheme-5 {
    --color-background: #ffffff !important;
    --color-foreground: #000000 !important;
    --color-button: #000000 !important;
    --color-button-text: #ffffff !important;
    --color-base-background-1: #ffffff !important;
    --color-base-background-2: #f4f4f4 !important; /* light concrete grey */
    --color-base-text: #000000 !important;
    --color-base-solid-button-labels: #ffffff !important;
    --color-base-outline-button-labels: #000000 !important;
  }
  
  /* Force sharp edges globally - No soft corners */
  * {
    border-radius: 0px !important;
  }
  
  /* Remove default theme shadows for a flat, raw look */
  .card-wrapper, .media, .button {
    box-shadow: none !important;
    border: 1px solid #000000 !important;
    /* Nuke Dawn's default body gradients and background classes */
body, .gradient, .page-width, .header, .footer-block {
    background: #ffffff !important;
    background-image: none !important;
    color: #000000 !important;
  }
  
  /* Force all text elements to be raw black */
  h1, h2, h3, h4, h5, h6, p, a, span, .h1, .h2 {
    color: #000000 !important;
  }
  
  /* Remove Dawn's default soft borders on inputs and buttons */
  .field__input, .select__select, .customer .field input {
    border-radius: 0 !important;
    border: 2px solid #000000 !important;
    box-shadow: none !important;
  }
  }