/*
Theme Name: Shop Custom
Author: Ninette
Description: Thème sur-mesure ultra-léger, sans builder, 100% RGPD.
Version: 1.0
*/

/* --- TES VARIABLES MODERNES --- */
:root {
    --primary: #000000;
    --accent: #ff00cc; /* Un bleu studio ou la couleur de ton choix */
    --bg: #ffffff;
    --text: #1d1d1f;
    --font-main: 'MaPoliceLocale', sans-serif;
}

/* --- LE RESET --- */
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: var(--font-main);
    background-color: var(--bg);
    color: var(--text);
}

/* REGULAR */
@font-face {
    font-family: 'Space Grotesk';
    src: url('assets/fonts/SpaceGrotesk-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* LIGHT */
@font-face {
    font-family: 'Space Grotesk';
    src: url('assets/fonts/SpaceGrotesk-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* SEMIBOLD */
@font-face {
    font-family: 'Space Grotesk';
    src: url('assets/fonts/SpaceGrotesk-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* BOLD */
@font-face {
    font-family: 'Space Grotesk';
    src: url('assets/fonts/SpaceGrotesk-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}