/**
 * 4Apples Enterprise Design System
 *
 * Load order:
 * 1. design-system.css  - tokens, reset helpers, accessibility utilities
 * 2. main.css           - global layout and base components
 * 3. header.css         - topbar, navigation, mega menu, mobile menu
 * 4. woocommerce.css    - shared WooCommerce defaults
 * 5. shop.css           - shop/archive/catalog layouts
 * 6. product.css        - single product experience
 * 7. cart.css           - cart page
 * 8. checkout.css       - checkout page
 * 9. world-class.css    - premium enterprise visual layer
 */

:root {
  color-scheme: light;
  --ae-primary: #f47c20;
  --ae-primary-dark: #c85b08;
  --ae-primary-soft: rgba(244, 124, 32, .12);
  --ae-secondary: #17633a;
  --ae-secondary-deep: #082015;
  --ae-secondary-soft: rgba(23, 99, 58, .1);
  --ae-dark: #17211b;
  --ae-muted: #66746b;
  --ae-light: #f7faf5;
  --ae-line: #dfe8e1;
  --ae-white: #fff;
  --ae-accent: #0b5ed7;
  --ae-danger: #b42318;
  --ae-success: #1f7a3f;
  --ae-radius-sm: 12px;
  --ae-radius: 18px;
  --ae-radius-lg: 30px;
  --ae-shadow-soft: 0 14px 36px rgba(21, 34, 27, .08);
  --ae-shadow: 0 26px 70px rgba(21, 34, 27, .14);
  --ae-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ae-font-heading: "Manrope", "Inter", system-ui, sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ae-font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ae-font-heading);
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
