/*
Theme Name: Aminera
Theme URI: https://amineralabs.com
Author: Aminera Labs
Description: Custom WooCommerce storefront theme for research-use-only peptide sales.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: aminera
License: GPL v2 or later
Tags: e-commerce, woocommerce, custom

This theme is intentionally minimal and built from scratch (no parent theme).
Base styles live here; component styles live in assets/css/main.css.
*/

:root {
  --color-ink: #0f172a;
  --color-ink-soft: #475569;
  --color-bg: #ffffff;
  --color-bg-alt: #f6f7f9;
  --color-border: #e2e8f0;
  --color-brand: #1e3a5f;
  --color-brand-light: #dbeafe;
  --color-accent: #b45309;
  --color-warning-bg: #fff7ed;
  --color-warning-border: #fdba74;
  --radius: 10px;
  --max-width: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.55;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; }
