/*
Theme Name: Stoerfall
Theme URI: https://stoerfall.com
Author: Senior UX/UI Developer
Description: A premium, minimal, editorial WooCommerce theme for the Stoerfall fashion brand. Clean, powerful, black/white/blue palette.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.1
License: GNU General Public License v2 or later
Text Domain: stoerfall
Tags: minimal, custom-colors, e-commerce, premium, dark-mode, woocommerce
*/

:root {
    --color-primary: #215EB8;
    --color-black: #000000;
    --color-white: #FFFFFF;

    /* Defaults mapped to Light Mode */
    --bg-color: var(--color-white);
    --text-color: var(--color-black);
    --accent-color: var(--color-primary);
    --border-color: rgba(0, 0, 0, 0.1);

    /* Spacing & Layout */
    --container-width: 1440px;
    --spacing-base: 1rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --transition-smooth: all 300ms ease;

    /* Typography */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Dark Mode Variables applied to HTML tag */
html.dark-mode {
    --bg-color: var(--color-black);
    --text-color: var(--color-white);
    --border-color: rgba(255, 255, 255, 0.1);
}

/* Base Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 300ms ease, color 300ms ease;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Only include bare minimum here. All visual styles go to assets/css/main.css */