/* ============================================================================
   FLEAMIX - Modern Flea Market Platform
   Design System & Global Styles
   ============================================================================ */

/* CSS Variables - Design Tokens */
:root {
  /* Brand Colors - Based on flea mascot */
  --primary-orange: #FF6347;      /* Vibrant coral-orange from flea */
  --primary-dark: #C44630;        /* Darker orange for hover states */
  --accent-red: #D84315;          /* Shopping bag red accent */
  --neutral-cream: #FAF6F0;       /* Warm background cream */
  --neutral-light: #FFFFFF;
  --neutral-gray: #757575;
  --neutral-dark: #2C2C2C;
  
  /* Semantic Colors */
  --success: #4CAF50;
  --warning: #FFC107;
  --error: #F44336;
  --info: #2196F3;
  
  /* Typography */
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-heading: 'Poppins', var(--font-primary);
  
  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

/* ============================================================================
   Reset & Base Styles
   ============================================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--neutral-dark);
  background-color: var(--neutral-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================================
   Typography
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--space-sm);
}

a {
  color: var(--primary-orange);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

/* ============================================================================
   Header & Navigation
   ============================================================================ */

.header {
  background-color: var(--neutral-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--neutral-dark);
}

.logo-image {
  width: 48px;
  height: 48px;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.nav-links a {
  color: var(--neutral-dark);
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-links a:hover {
  background-color: var(--neutral-cream);
  color: var(--primary-orange);
}

.nav-actions {
  display: flex;
  gap: var(--space-sm);
}

/* ============================================================================
   Buttons
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: var(--neutral-light);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-orange);
  border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
  background-color: var(--primary-orange);
  color: var(--neutral-light);
}

.btn-ghost {
  background-color: transparent;
  color: var(--neutral-dark);
}

.btn-ghost:hover {
  background-color: var(--neutral-cream);
}

/* ============================================================================
   Hero Section
   ============================================================================ */

.hero {
  background: linear-gradient(135deg, var(--neutral-cream) 0%, #FFE8E0 100%);
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--neutral-dark);
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--neutral-gray);
  margin-bottom: var(--space-xl);
}

.hero-mascot {
  width: 200px;
  height: 200px;
  margin: var(--space-lg) auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ============================================================================
   Cards & Product Grid
   ============================================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.card {
  background-color: var(--neutral-light);
  border: 2px solid var(--primary-orange);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.card-content {
  padding: var(--space-md);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.card-price {
  color: var(--primary-orange);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.card-location {
  color: var(--neutral-gray);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* ============================================================================
   Forms
   ============================================================================ */

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--neutral-dark);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid var(--primary-orange);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  background-color: var(--neutral-light);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(255, 99, 71, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================================
   Footer
   ============================================================================ */

.footer {
  background-color: var(--neutral-dark);
  color: var(--neutral-light);
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  margin-top: var(--space-2xl);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.footer-section h4 {
  color: var(--primary-orange);
  margin-bottom: var(--space-sm);
}

.footer-links {
  list-style: none;
}

.footer-links a {
  color: var(--neutral-light);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
}

/* ============================================================================
   Badges & Status
   ============================================================================ */

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-verified {
  background-color: var(--success);
  color: white;
}

.badge-new {
  background-color: var(--primary-orange);
  color: white;
}

/* ============================================================================
   Registration - Step Indicators
   ============================================================================ */

.step-indicator {
  width: 32px;
  height: 32px;
  background: white;
  border: 2px solid #E0E0E0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: #757575;
  transition: all 0.3s;
}

.step-indicator.active {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: white;
}

.step-indicator.completed {
  background: var(--success);
  border-color: var(--success);
  color: white;
}

/* ============================================================================
   Invitation Banners
   ============================================================================ */

.invitation-banner {
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.invitation-banner.validating {
  background: #E3F2FD;
  border: 1px solid #2196F3;
  color: #1565C0;
}

.invitation-banner.success {
  background: #E8F5E9;
  border: 1px solid #4CAF50;
  color: #2E7D32;
}

.invitation-banner.error {
  background: #FFEBEE;
  border: 1px solid #F44336;
  color: #C62828;
}

.invitation-banner a {
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
}

/* ============================================================================
   Responsive Design
   ============================================================================ */

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }
  
  .nav-links {
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: var(--space-xs);
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
