/* ClothingStoreAi - Placeholder Demo Styles */
/* Uses Tailwind CDN - this file contains custom overrides only */

/* Custom font imports */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* Base styles */
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth transitions */
a, button {
  transition: all 0.15s ease;
}

/* Custom scrollbar (hidden for demo) */
::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
