/*!
 * Design System Variables
 * Centralized design tokens for the entire theme
 * Version: 3.0
 */

:root {
    /* ============================================
       Color Palette - Gold Theme
       ============================================ */
    --color-gold: #D4AF37;
    --color-gold-light: #F4D03F;
    --color-gold-dark: #B8941C;
    --color-gold-glow: rgba(212, 175, 55, 0.3);
    
    /* Background Colors */
    --color-bg-black: #000000;
    --color-bg-dark: #0a0a0a;
    --color-bg-darker: #050505;
    --color-bg-card: #111111;
    --color-bg-card-hover: #1a1a1a;
    --color-bg-overlay: rgba(0, 0, 0, 0.8);
    
    /* Text Colors */
    --color-text-white: #ffffff;
    --color-text-gray-light: #e5e5e5;
    --color-text-gray: #cccccc;
    --color-text-gray-dark: #999999;
    
    /* Accent Colors */
    --color-success: #28a745;
    --color-error: #dc3545;
    --color-warning: #ffc107;
    --color-info: #17a2b8;
    
    /* Social Media Colors */
    --color-facebook: #1877F2;
    --color-instagram: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --color-tiktok: #000000;
    --color-whatsapp: #25D366;
    
    /* ============================================
       Typography
       ============================================ */
    --font-family-primary: 'Cairo', 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif;
    --font-family-heading: 'Cairo', 'Tajawal', sans-serif;
    
    --font-size-xs: 0.75rem;      /* 12px */
    --font-size-sm: 0.875rem;     /* 14px */
    --font-size-base: 1rem;       /* 16px */
    --font-size-lg: 1.125rem;     /* 18px */
    --font-size-xl: 1.25rem;      /* 20px */
    --font-size-2xl: 1.5rem;      /* 24px */
    --font-size-3xl: 1.875rem;    /* 30px */
    --font-size-4xl: 2.25rem;     /* 36px */
    --font-size-5xl: 3rem;        /* 48px */
    
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
    
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.8;
    
    --letter-spacing-tight: -0.02em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.02em;
    --letter-spacing-wider: 0.05em;
    
    /* ============================================
       Spacing Scale
       ============================================ */
    --spacing-0: 0;
    --spacing-1: 0.25rem;   /* 4px */
    --spacing-2: 0.5rem;    /* 8px */
    --spacing-3: 0.75rem;   /* 12px */
    --spacing-4: 1rem;      /* 16px */
    --spacing-5: 1.25rem;   /* 20px */
    --spacing-6: 1.5rem;    /* 24px */
    --spacing-8: 2rem;      /* 32px */
    --spacing-10: 2.5rem;   /* 40px */
    --spacing-12: 3rem;     /* 48px */
    --spacing-16: 4rem;     /* 64px */
    --spacing-20: 5rem;     /* 80px */
    --spacing-24: 6rem;     /* 96px */
    
    /* ============================================
       Border Radius
       ============================================ */
    --radius-none: 0;
    --radius-sm: 0.375rem;   /* 6px */
    --radius-md: 0.5rem;     /* 8px */
    --radius-lg: 0.75rem;    /* 12px */
    --radius-xl: 1rem;       /* 16px */
    --radius-2xl: 1.5rem;    /* 24px */
    --radius-full: 9999px;
    
    /* ============================================
       Shadows
       ============================================ */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-gold-lg: 0 8px 30px rgba(212, 175, 55, 0.4);
    
    /* ============================================
       Transitions
       ============================================ */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* ============================================
       Z-Index Scale
       ============================================ */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    --z-header: 1000;
    --z-cart: 9999;
    --z-social-icons: 9999;
    
    /* ============================================
       Layout
       ============================================ */
    --container-max-width: 1200px;
    --container-padding: 1.25rem;  /* 20px */
    --header-height: 90px;
    --header-height-mobile: 70px;
    
    /* ============================================
       Breakpoints (for JS use)
       ============================================ */
    --breakpoint-sm: 480px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
    
    /* ============================================
       Touch Targets (Accessibility)
       ============================================ */
    --touch-target-min: 44px;
}
