/* MileMind shadows — mirrors MMShadow in Theme.swift.
   Two intentional surface styles:
     • Raised content cards — white surface, soft shadow, NO border (.mmCard).
     • Bordered form/field surfaces — surface + 1px border, NO shadow.
   Never put a shadow on a bordered surface, or a border on a card.
   Each token maps SwiftUI (color, radius, x, y) → CSS box-shadow. */

:root {
  /* subtle — small floating chips / chevrons */
  --mm-shadow-card-resting: 0 4px 16px rgba(23, 25, 28, 0.04);
  /* .mmCard default — raised content cards */
  --mm-shadow-card-raised: 0 8px 24px rgba(23, 25, 28, 0.05);
  /* the FAB — green-tinted glow */
  --mm-shadow-fab: 0 8px 18px rgba(28, 107, 71, 0.42);
  /* primary CTA buttons */
  --mm-shadow-cta: 0 8px 24px rgba(23, 25, 28, 0.20);
  /* vehicle card — deeper resting lift */
  --mm-shadow-vehicle: 0 10px 26px rgba(23, 25, 28, 0.07);
}
