/* ================================
   디자인 시스템 변수
   ================================ */

:root {
  /* 브랜드 컬러 */
  --primary-color: #ff4081;
  --primary-dark: #e91e63;
  --primary-light: #ff80ab;
  --secondary-color: #7c4dff;
  --secondary-dark: #651fff;
  --secondary-light: #b388ff;
  
  /* 뉴트럴 컬러 */
  --black: #000000;
  --gray-900: #1a1a1a;
  --gray-800: #2d2d2d;
  --gray-700: #404040;
  --gray-600: #666666;
  --gray-500: #999999;
  --gray-400: #cccccc;
  --gray-300: #e0e0e0;
  --gray-200: #f0f0f0;
  --gray-100: #f8f8f8;
  --white: #ffffff;
  
  /* 시스템 컬러 */
  --success: #4caf50;
  --warning: #ff9800;
  --error: #f44336;
  --info: #2196f3;
  
  /* 배경 */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f8f8;
  --bg-dark: #1a1a1a;
  --bg-overlay: rgba(0, 0, 0, 0.5);
  
  /* 텍스트 */
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-tertiary: #999999;
  --text-inverse: #ffffff;
  
  /* 테두리 */
  --border-color: #e0e0e0;
  --border-dark: #cccccc;
  
  /* 그림자 */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
  
  /* 타이포그래피 */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', 'Roboto', sans-serif;
  --font-mono: 'SF Mono', 'Consolas', monospace;
  
  /* Font Sizes */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 1.875rem;    /* 30px */
  --text-4xl: 2.25rem;     /* 36px */
  --text-5xl: 3rem;        /* 48px */
  
  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  
  /* Line Heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;
  
  /* Spacing */
  --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 */
  
  /* Border Radius */
  --radius-sm: 0.25rem;   /* 4px */
  --radius-md: 0.5rem;    /* 8px */
  --radius-lg: 0.75rem;   /* 12px */
  --radius-xl: 1rem;      /* 16px */
  --radius-2xl: 1.5rem;   /* 24px */
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  
  /* Container */
  --container-max-width: 1280px;
  --container-padding: var(--space-4);
  
  /* Grid */
  --grid-gap: var(--space-4);
  
  /* 전자담배 브랜드 포인트 컬러 (선택적 사용) */
  --accent-pink: #ff4081;
  --accent-purple: #9c27b0;
  --accent-red: #e91e63;
}

/* 다크모드 (선택적) */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-tertiary: #999999;
    --border-color: #404040;
    --border-dark: #666666;
  }
}

/* 반응형 브레이크포인트 */
/* Mobile: < 640px */
/* Tablet: >= 640px */
/* Desktop: >= 1024px */
/* Large: >= 1280px */
