/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Import del nuovo sistema di design tokens */
@import '_theme-vars.css';

@layer base {
  :root {
    /*=============================================================*/
    /* PROJECT-SPECIFIC OVERRIDES */
    /*=============================================================*/

    /* 🎨 Aggiungi qui solo variabili SPECIFICHE del progetto 
       o override necessari che differiscono da theme.json */

    /*=============================================================*/
    /* ✅ TUTTE LE ALTRE VARIABILI SONO CARICATE DA _theme-vars.css */
    /* ✅ Per modificarle: npm run theme:build dopo aver editato theme.json */
    /*=============================================================*/
  }
}

/* Reset e stili globali possono rimanere qui sotto se necessari */

/* Global font family */
body {
  font-family: var(--font-family-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure all elements inherit the font family */
* {
  font-family: inherit;
}
