/* theme.css - Global Design System Variables matching abstore.shop (Martfury) */

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Colors (Distinct Flat Indigo) */
    --primary-color: #4f46e5; /* Flat Indigo */
    --primary-light: #6366f1;
    --primary-dark: #4338ca;
    --secondary-color: #1e1b4b; /* Deep Indigo for contrast */
    
    /* Text Colors */
    --text-primary: #000000;
    --text-secondary: #666666;
    --text-light: #ffffff;
    --text-muted: #999999;
    --text-heading: #000000;

    /* Background Colors */
    --bg-body: #f8fafc; /* Very light slate */
    --bg-surface: #ffffff;
    --bg-header: #ffffff;
    --bg-footer: #ffffff;
    --bg-topbar: #f1f5f9;

    /* Borders */
    --border-color: #e2e8f0;
    --border-light: #f8fafc;

    /* Status Colors */
    --success-color: #8da100;
    --warning-color: #fcb800;
    --danger-color: #dd2a2a;
    --info-color: #0088cc;

    /* Typography */
    --font-family: 'Work Sans', sans-serif;
    --font-size-base: 14px;
    --font-size-sm: 13px;
    --font-size-xs: 12px;
    --font-size-lg: 16px;
    --font-size-xl: 18px;
    --font-size-2xl: 24px;
    --font-size-3xl: 32px;

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;
    --spacing-2xl: 60px;

    /* Shadows - Removed for Flat Design */
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-hover: none;

    /* Border Radius - Flat Design */
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --radius-full: 50%; /* Keep 50% for circles if absolutely needed, or change if we want square badges */

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.5;
    color: var(--text-secondary);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}
