/**
 * ==============================================================================
 * Fashion Cloth - Global Configuration & Theme Design System
 * File: assets/css/config.css
 * Description: All website colors, typography, spacing, shadows, and radii
 * are defined here using CSS variables. Changing values here will update
 * the entire website seamlessly.
 * ==============================================================================
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  /* -------------------------------------------------------------
   * 1. BRAND COLORS (Modern Luxury Pink & Dark Navy Fashion Theme)
   * ------------------------------------------------------------- */
  --primary-color: #334041;
  /* Rich Royal Dark Navy */
  --primary-hover: #1e3e62;
  /* Ocean Navy Hover */
  --primary-light: #2c4a6f;
  /* Soft Slate Navy */

  --accent-color: #ff2b85;
  /* Ultra Chic Fashion Pink */
  --accent-hover: #e11d48;
  /* Rich Rose Red */
  --accent-light: #fce7f3;
  /* Soft Pink Tint */
  --accent-subtle: #fdf2f8;
  /* Pastel Blush Tint */
  --accent-gradient: linear-gradient(135deg, #ff2b85 0%, #f43f5e 50%, #fb7185 100%);
  --accent-glow: 0 8px 25px -4px rgba(255, 43, 133, 0.45);

  --secondary-color: #f59e0b;
  /* Warm Gold Accent */
  --secondary-hover: #d97706;
  /* Deep Amber */
  --secondary-light: #fef3c7;
  /* Soft Gold Tint */

  /* -------------------------------------------------------------
   * 2. NEUTRAL & BASE COLORS (Clean Dark Navy & Soft Whites)
   * ------------------------------------------------------------- */
  --color-white: #ffffff;
  --color-bg-main: #f8fafc;
  /* Crisp Modern Off-White */
  --color-bg-alt: #f0f4f8;
  /* Light Slate-Navy Alt Background */
  --color-bg-card: #ffffff;
  /* Pure White Card Surface */
  --color-bg-dark: #071324;
  /* Deep Royal Navy Footer */
  --color-bg-dark-alt: #0e223d;
  /* Secondary Dark Navy Surface */

  /* Text Colors (Dark Navy Typography) */
  --text-main: #0b192c;
  /* Dark Navy Primary Text */
  --text-body: #334e68;
  /* Soft Slate Navy Body Text */
  --text-muted: #627d98;
  /* Muted Blue-Gray Text */
  --text-light: #9fb3c8;
  /* Subtle Timestamp / Placeholder */
  --text-white: #ffffff;
  /* Clean White Text */
  --text-white-muted: #d9e2ec;
  /* Soft Light Slate on Dark */

  /* Border & Divider Colors */
  --border-color: #d9e2ec;
  /* Clean Smooth Slate-Navy Border */
  --border-light: #f0f4f8;
  /* Ultra Soft Border */
  --border-dark: #1e3e62;
  /* Border on Dark Navy Surface */
  --border-focus: var(--accent-color);
  /* Highlight Focus Border */

  /* Status Colors */
  --color-success: #10b981;
  /* In-Stock / Success */
  --color-warning: #f59e0b;
  /* Low Stock / Warning */
  --color-danger: #ef4444;
  /* Sold Out / Discount */
  --color-info: #06b6d4;
  /* Notice / Tag */

  /* -------------------------------------------------------------
   * 3. TYPOGRAPHY SYSTEM (Outfit Font)
   * ------------------------------------------------------------- */
  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Font Sizes */
  --font-size-xs: 0.75rem;
  /* 12px */
  --font-size-sm: 0.875rem;
  /* 14px */
  --font-size-base: 1rem;
  /* 16px */
  --font-size-md: 1.125rem;
  /* 18px */
  --font-size-lg: 1.25rem;
  /* 20px */
  --font-size-xl: 1.5rem;
  /* 24px */
  --font-size-2xl: 1.875rem;
  /* 30px */
  --font-size-3xl: 2.25rem;
  /* 36px */
  --font-size-4xl: 3rem;
  /* 48px */
  --font-size-5xl: 3.75rem;
  /* 60px */

  /* Font Weights */
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;

  /* Line Heights */
  --lh-tight: 1.2;
  --lh-snug: 1.35;
  --lh-normal: 1.5;
  --lh-relaxed: 1.65;
  --lh-loose: 2;

  /* -------------------------------------------------------------
   * 4. SPACING & LAYOUT SYSTEM
   * ------------------------------------------------------------- */
  --space-1: 0.25rem;
  /* 4px */
  --space-2: 0.5rem;
  /* 8px */
  --space-3: 0.75rem;
  /* 12px */
  --space-4: 1rem;
  /* 16px */
  --space-5: 1.25rem;
  /* 20px */
  --space-6: 1.5rem;
  /* 24px */
  --space-8: 2rem;
  /* 32px */
  --space-10: 2.5rem;
  /* 40px */
  --space-12: 3rem;
  /* 48px */
  --space-16: 4rem;
  /* 64px */
  --space-20: 5rem;
  /* 80px */
  --space-24: 6rem;
  /* 96px */

  /* Container Max Widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1250px;
  --container-2xl: 1320px;

  /* -------------------------------------------------------------
   * 5. ELEVATION & SHADOWS
   * ------------------------------------------------------------- */
  --shadow-xs: 0 1px 2px 0 rgba(24, 24, 27, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(24, 24, 27, 0.08), 0 1px 2px -1px rgba(24, 24, 27, 0.08);
  --shadow-md: 0 4px 6px -1px rgba(24, 24, 27, 0.08), 0 2px 4px -2px rgba(24, 24, 27, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(24, 24, 27, 0.08), 0 4px 6px -4px rgba(24, 24, 27, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(24, 24, 27, 0.1), 0 8px 10px -6px rgba(24, 24, 27, 0.05);
  --shadow-2xl: 0 25px 50px -12px rgba(24, 24, 27, 0.22);
  --shadow-accent: var(--accent-glow);

  /* -------------------------------------------------------------
   * 6. BORDER RADII (Corners)
   * ------------------------------------------------------------- */
  --radius-none: 0px;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-2xl: 30px;
  --radius-full: 9999px;

  /* -------------------------------------------------------------
   * 7. TRANSITIONS & ANIMATIONS
   * ------------------------------------------------------------- */
  --transition-fast: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* -------------------------------------------------------------
   * 8. Z-INDEX LAYERS
   * ------------------------------------------------------------- */
  --z-negative: -1;
  --z-normal: 1;
  --z-sticky: 100;
  --z-bottom-nav: 400;
  --z-header: 500;
  --z-dropdown: 600;
  --z-modal-backdrop: 900;
  --z-modal: 1000;
  --z-drawer: 1050;
  --z-toast: 1200;
}