/* ============================================
   FIX APPLIANCES DUBAI — Design Tokens
   Premium Dubai Appliance Service Brand
   ============================================ */

:root {
  /* ---- Brand Colors ---- */
  --color-charcoal:         #1a1d23;
  --color-charcoal-deep:    #13151a;
  --color-navy:             #0f1628;
  --color-navy-light:       #161d30;
  --color-dark-surface:     #1e2229;
  --color-dark-surface-alt: #252830;

  --color-white:            #ffffff;
  --color-offwhite:         #f8f7f5;
  --color-cream:            #f2f1ee;
  --color-light-border:     #e8e6e1;
  --color-mid-border:       #d5d3ce;

  /* Gold — used sparingly for accents */
  --color-gold:             #c8a45e;
  --color-gold-hover:       #d4b46e;
  --color-gold-muted:       #b8944a;
  --color-gold-dark:        #9a7b2e;
  --color-gold-bg:          rgba(200, 164, 94, 0.08);
  --color-gold-border:      rgba(200, 164, 94, 0.25);

  /* WhatsApp */
  --color-whatsapp:         #25D366;
  --color-whatsapp-hover:   #20bd5a;

  /* Text */
  --color-text-primary:     #1a1d23;
  --color-text-secondary:   #5a5d65;
  --color-text-tertiary:    #8a8d95;
  --color-text-light:       #f8fafc;
  --color-text-light-sec:   #b0b4bc;
  --color-text-gold:        #c8a45e;

  /* Semantic */
  --color-success:          #22c55e;
  --color-error:            #ef4444;

  /* ---- Typography ---- */
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  --fw-regular:   400;
  --fw-medium:    500;
  --fw-semibold:  600;
  --fw-bold:      700;

  --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 */
  --text-6xl:  3.75rem;    /* 60px */

  --leading-tight:  1.2;
  --leading-snug:   1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  --tracking-tight:   -0.02em;
  --tracking-normal:  0;
  --tracking-wide:    0.04em;
  --tracking-wider:   0.08em;

  /* ---- Spacing ---- */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ---- Layout ---- */
  --container-max:     1200px;
  --container-wide:    1400px;
  --container-narrow:  800px;
  --container-padding: 1.5rem;
  --section-py:        5rem;
  --section-py-lg:     6.5rem;

  /* ---- Borders ---- */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* ---- Shadows ---- */
  --shadow-xs:   0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:   0 2px 4px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 24px rgba(0,0,0,0.10);
  --shadow-xl:   0 16px 48px rgba(0,0,0,0.14);
  --shadow-gold: 0 4px 20px rgba(200,164,94,0.18);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 4px 8px rgba(0,0,0,0.06), 0 12px 28px rgba(0,0,0,0.10);

  /* ---- Transitions ---- */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --transition-fast:   150ms var(--ease-out);
  --transition-base:   250ms var(--ease-out);
  --transition-slow:   400ms var(--ease-out);
  --transition-spring: 300ms var(--ease-spring);

  /* ---- Z-Index ---- */
  --z-base:     1;
  --z-dropdown: 50;
  --z-header:   100;
  --z-menu:     200;
  --z-overlay:  300;
  --z-floating: 400;
  --z-toast:    500;
}
