:root {
  --background: 38 45% 96%;
  --foreground: 224 31% 14%;
  --primary: 347 86% 48%;
  --primary-foreground: 0 0% 100%;
  --secondary: 35 95% 58%;
  --secondary-foreground: 224 31% 14%;
  --muted: 38 26% 88%;
  --muted-foreground: 224 12% 42%;
  --destructive: 0 74% 52%;
  --destructive-foreground: 0 0% 100%;
  --border: 35 23% 82%;
  --card: 0 0% 100%;
  --shadow-sm: 0 8px 20px rgba(34, 26, 38, 0.08);
  --shadow-md: 0 16px 42px rgba(34, 26, 38, 0.12);
  --shadow-lg: 0 28px 80px rgba(34, 26, 38, 0.18);
  --transition-fast: 160ms ease;
  --transition-smooth: 280ms cubic-bezier(.2,.8,.2,1);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
}
.dark {
  --background: 225 26% 9%;
  --foreground: 38 45% 94%;
  --primary: 347 82% 60%;
  --primary-foreground: 0 0% 100%;
  --secondary: 35 92% 62%;
  --secondary-foreground: 224 31% 12%;
  --muted: 225 18% 17%;
  --muted-foreground: 38 14% 72%;
  --destructive: 0 70% 58%;
  --destructive-foreground: 0 0% 100%;
  --border: 225 16% 24%;
  --card: 225 23% 13%;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, hsl(var(--secondary) / .22), transparent 34rem), hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
button, a { -webkit-tap-highlight-color: transparent; }
input, select, textarea { font-size: max(16px, 1rem); }
.safe-bottom { padding-bottom: calc(5.5rem + env(safe-area-inset-bottom)); }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.glass { background: hsl(var(--card) / .82); backdrop-filter: blur(18px); }
.product-art { position: relative; overflow: hidden; }
.product-art::before { content: ""; position: absolute; inset: 10%; border-radius: 999px; background: rgba(255,255,255,.32); filter: blur(8px); }
.focus-ring:focus-visible { outline: 3px solid hsl(var(--secondary)); outline-offset: 3px; }