/* Archivo Maestro de THEMES / SKINS */
:root {
    /* Default Skin (Bazar / Entre Cosas) */
    --primary-color: #3bb2aa; /* Verde claro logo */
    --secondary-color: #df663d; /* Naranja logo */
    --bg-color: #f7fcfb;
    --text-color: #333333;
    --card-bg: #ffffff;
    --font-family: 'Inter', sans-serif;
    --border-radius-m: 12px;
    --border-radius-s: 8px;
    --button-radius: 20px;
    --shadow-light: 0 4px 6px rgba(0,0,0,0.05);
}

body.skin-bazar {
    /* Mismos que root, o forzados */
    --primary-color: #3bb2aa; 
    --secondary-color: #df663d;
    --bg-color: #f0f9f8;
    --text-color: #2d3748;
    --card-bg: #ffffff;
    --font-family: 'Inter', sans-serif;
    --border-radius-m: 16px;
    --border-radius-s: 10px;
    --button-radius: 30px;
    --shadow-light: 0 4px 15px rgba(59, 178, 170, 0.1);
}

body.skin-tech {
    /* Estilo oscuro / Cuadrado / Tech */
    --primary-color: #0fa8e6; 
    --secondary-color: #e62344;
    --bg-color: #0d1117;
    --text-color: #c9d1d9;
    --card-bg: #161b22;
    --font-family: 'Roboto', sans-serif;
    --border-radius-m: 4px;
    --border-radius-s: 2px;
    --button-radius: 2px;
    --shadow-light: 0 4px 6px rgba(0,0,0,0.3);
}

body.skin-minimal {
    /*Minimalista*/
    --primary-color: #222222; 
    --secondary-color: #555555;
    --bg-color: #ffffff;
    --text-color: #111111;
    --card-bg: #fafafa;
    --font-family: 'Helvetica Neue', Arial, sans-serif;
    --border-radius-m: 0px;
    --border-radius-s: 0px;
    --button-radius: 0px;
    --shadow-light: none;
    border: 1px solid #eee;
}
