/*
  Website shared theme.
  Change colors/fonts here and all linked web pages will update.
*/
:root {
  /* Home + Product detail palette */
  --orange: #f97316;
  --orange-dk: #ea6c0a;
  --orange-lt: #fff7ed;
  --coal: #111827;
  --slate: #1f2937;
  --iron: #374151;
  --steel: #6b7280;
  --silver: #9ca3af;
  --fog: #e5e7eb;
  --snow: #f9fafb;
  --white: #ffffff;
  --green: #16a34a;
  --red: #dc2626;
  --amber: #d97706;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.14);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;

  /* Legacy index palette */
  --primary: #e67e22;
  --primary-dark: #cf6d17;
  --primary-lt: #fef5ec;
  --secondary: #2c3e50;
  --text: #2d3748;
  --muted: #718096;
  --border: #e2e8f0;
  --bg: #f7f8fa;
  --success: #27ae60;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body {
  font-family: var(--font-body);
}
