/* ============================================================
   Design Tokens — Hollywood Prop Store
   All colors, fonts, and spacing live here.
   Change values here to restyle the entire site.
   ============================================================ */

:root {
  /* --- Color Palette --- */
  --color-bg:          #fafaf8;   /* warm white — page background */
  --color-surface:     #ffffff;   /* pure white — cards and panels */
  --color-text:        #2a2a2a;   /* near-black — body copy */
  --color-muted:       #6b6560;   /* warm gray — metadata, captions */
  --color-accent:      #b8963e;   /* warm gold — prices, active states */
  --color-accent-dark: #8c6f28;   /* darker gold — hover states */
  --color-border:      #e8e4de;   /* light warm gray — dividers, card borders */
  --color-overlay:     rgba(42, 42, 42, 0.55);  /* for hero overlays */

  /* --- Typography --- */
  --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;

  --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 */

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

  /* --- Layout --- */
  --max-width:      1280px;
  --content-width:  900px;
  --nav-height:     72px;
  --border-radius:  4px;
  --border-radius-lg: 8px;

  /* --- Shadows --- */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 28px rgba(0,0,0,0.14);

  /* --- Transitions --- */
  --transition: 200ms ease;
}
