/*
 * Theme design tokens
 * ---------------------------------------------------------------------------
 * Central place for the storefront's colors, spacing, radius and shadow
 * values. redesign.css (and later phases) read from these custom properties
 * instead of hard-coded hex values, so a future multi-tenant SaaS layer can
 * re-skin the whole storefront by swapping this one file / injecting an
 * override block, without touching redesign.css or any Blade template.
 *
 * Current theme: "Premium Watch & Accessories" (charcoal navigation + gold accent).
 */
:root {
    /* Brand accent */
    --brand-primary: #b8863b;
    --brand-primary-dark: #96692a;
    --brand-primary-light: #d9b876;
    --brand-primary-contrast: #ffffff;

    /* Navigation (dark, premium) */
    --nav-bg: #14161c;
    --nav-bg-elevated: #1c1f28;
    --nav-text: #f3f1ec;
    --nav-text-muted: #a7a9b2;
    --nav-border: #2a2d38;

    /* Surfaces */
    --surface-bg: #ffffff;
    --surface-bg-soft: #f7f6f3;
    --surface-border: #e8e6e1;

    /* Text */
    --text-strong: #1b1c1f;
    --text-body: #38393f;
    --text-muted: #75767d;

    /* Feedback */
    --color-danger: #c0392b;
    --color-success: #1e824c;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-pill: 999px;

    /* Spacing scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;

    /* Elevation */
    --shadow-sm: 0 1px 2px rgba(20, 22, 28, 0.06), 0 1px 1px rgba(20, 22, 28, 0.04);
    --shadow-md: 0 10px 24px rgba(20, 22, 28, 0.10);
    --shadow-lg: 0 20px 45px rgba(20, 22, 28, 0.16);

    /* Typography */
    --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Layout */
    --transition-fast: 150ms ease;
    --transition-base: 220ms ease;
}
