/* ============================================
   JUPITER PLANET XXL - Design 8: Light Pastel Soft
   CSS Custom Properties
   ============================================ */

:root {
  /* ---- Primary Palette ---- */
  --color-bg: #f8f7fc;
  --color-bg-alt: #f3f0fa;
  --color-primary: #a78bfa;
  --color-primary-light: #c4b5fd;
  --color-primary-dark: #7c3aed;
  --color-secondary: #f472b6;
  --color-secondary-light: #f9a8d4;
  --color-tertiary: #34d399;
  --color-tertiary-light: #6ee7b7;
  --color-yellow: #fbbf24;
  --color-yellow-light: #fde68a;
  --color-sky: #67e8f9;
  --color-sky-light: #a5f3fc;
  --color-peach: #fdba74;
  --color-rose: #fda4af;
  --color-orange: #fb923c;

  /* ---- Text ---- */
  --color-heading: #2d2b55;
  --color-body: #4a4a68;
  --color-body-light: #7b7b9e;
  --color-white: #ffffff;

  /* ---- Card & Surface ---- */
  --color-card: #ffffff;
  --color-card-border: rgba(167, 139, 250, 0.12);
  --shadow-soft: 0 4px 24px rgba(167, 139, 250, 0.10);
  --shadow-medium: 0 8px 32px rgba(167, 139, 250, 0.14);
  --shadow-hover: 0 12px 40px rgba(167, 139, 250, 0.18);

  /* ---- Gradients ---- */
  --gradient-hero: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 50%, #e0f2fe 100%);
  --gradient-primary: linear-gradient(135deg, #a78bfa, #f472b6);
  --gradient-soft: linear-gradient(135deg, #f8f7fc 0%, #fce7f3 100%);
  --gradient-footer: linear-gradient(135deg, #ede9fe 0%, #fce7f3 100%);
  --gradient-cta: linear-gradient(135deg, #a78bfa 0%, #f472b6 50%, #34d399 100%);
  --gradient-text: linear-gradient(135deg, #a78bfa, #f472b6, #a78bfa);

  /* Product card gradients */
  --gradient-card-1: linear-gradient(135deg, #c4b5fd, #f9a8d4);
  --gradient-card-2: linear-gradient(135deg, #6ee7b7, #67e8f9);
  --gradient-card-3: linear-gradient(135deg, #fde68a, #fdba74);
  --gradient-card-4: linear-gradient(135deg, #f9a8d4, #c4b5fd);
  --gradient-card-5: linear-gradient(135deg, #67e8f9, #6ee7b7);
  --gradient-card-6: linear-gradient(135deg, #fdba74, #fda4af);

  /* ---- Typography ---- */
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'Quicksand', sans-serif;

  /* ---- Font Sizes ---- */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* ---- Spacing ---- */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* ---- Border Radius ---- */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 40px;
  --radius-pill: 100px;
  --radius-full: 50%;

  /* ---- Transitions ---- */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ---- Layout ---- */
  --container-max: 1200px;
  --header-height: 80px;
  --navbar-radius: 20px;
}
