:root {
  --background: 42 38% 96%;
  --foreground: 232 24% 13%;
  --primary: 348 86% 51%;
  --primary-foreground: 0 0% 100%;
  --secondary: 168 74% 38%;
  --secondary-foreground: 0 0% 100%;
  --muted: 32 28% 88%;
  --muted-foreground: 230 10% 38%;
  --destructive: 0 76% 52%;
  --destructive-foreground: 0 0% 100%;
  --border: 34 22% 82%;
  --card: 0 0% 100%;
  --shadow-sm: 0 6px 18px hsl(232 24% 13% / 0.08);
  --shadow-md: 0 14px 38px hsl(232 24% 13% / 0.12);
  --shadow-lg: 0 24px 70px hsl(232 24% 13% / 0.18);
  --transition-fast: 150ms ease;
  --transition-smooth: 280ms cubic-bezier(.2,.8,.2,1);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
}
.dark {
  --background: 232 24% 9%;
  --foreground: 40 36% 95%;
  --primary: 348 88% 62%;
  --primary-foreground: 0 0% 100%;
  --secondary: 168 70% 45%;
  --secondary-foreground: 232 24% 9%;
  --muted: 232 18% 18%;
  --muted-foreground: 38 16% 72%;
  --destructive: 0 80% 62%;
  --destructive-foreground: 0 0% 100%;
  --border: 232 16% 24%;
  --card: 232 22% 13%;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
input, select, textarea { font-size: max(16px, 1rem); }
.safe-bottom { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
.glass {
  background: hsl(var(--card) / .82);
  backdrop-filter: blur(18px);
  border: 1px solid hsl(var(--border));
}
.product-art {
  background:
    radial-gradient(circle at 25% 20%, hsl(var(--primary) / .28), transparent 28%),
    radial-gradient(circle at 76% 22%, hsl(var(--secondary) / .24), transparent 26%),
    linear-gradient(135deg, hsl(var(--muted)), hsl(var(--card)));
}
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.focus-ring:focus { outline: 3px solid hsl(var(--primary) / .28); outline-offset: 2px; }
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-6px) } }
.floaty { animation: floaty 3.4s ease-in-out infinite; }