/*
Theme Name: SCW Shop
Theme URI: https://scw-shop.com
Author: Paul MAZZON
Author URI: https://scw-shop.com
Description: Thème personnalisé pour SCW Shop
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: scw-shop
Tags: ecommerce, shop, woocommerce
*/

/* CSS Variables */
:root {
    /* Primary colors */
    --site-primary-color: #0ea5e9;
    --color-primary-dark: #0284c7;
    --color-primary-light: #38bdf8;
    
    /* Accent colors */
    --site-accent-color: #f59e0b;
    
    /* Status colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    
    /* Neutral colors */
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-border: #e2e8f0;
    --color-bg: #f8fafc;
}

/* Styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
