:root {
    --bg-creme: #f3f0ea;      /* Fond crème mat officiel Floema */
    --text-dark: #121212;     /* Typographie sombre */
    --menu-bg: #ffffff;       /* Blanc pur des capsules */
    --accent-orange: #ff6b35; /* Orange signature */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--bg-creme);
    color: var(--text-dark);
    overflow-x: hidden; 
    min-height: 100vh;
    width: 100%;
}