/**
 * SOROTECNO MARKETPLACE DESIGN TOKENS
 * Virtual Store & Marketplace Aesthetic (Amazon / MercadoLibre Inspired)
 */
:root {
  /* ==========================================================================
     Color System — Marketplace High-Conversion Palette
     ========================================================================== */
  --color-header-bg: #07150E;
  --color-header-nav: #0D241A;
  --color-header-text: #FFFFFF;
  --color-header-muted: #9BB0A5;

  /* Brand Accents */
  --color-brand-primary: #0B5D35;
  --color-brand-hover: #074727;
  --color-brand-light: #E8F5EE;
  --color-brand-accent: #10B981;

  /* Marketplace Conversion Colors */
  --color-deal-red: #E11D48;
  --color-deal-bg: #FFE4E6;
  --color-deal-orange: #FF5A00;
  --color-deal-orange-bg: #FFF3EB;
  --color-shipping-green: #00A650;
  --color-shipping-bg: #E6F7ED;
  --color-star-yellow: #F59E0B;
  --color-star-empty: #D1D5DB;

  /* Base & Surfaces */
  --color-bg-page: #F4F6F8;
  --color-surface-white: #FFFFFF;
  --color-surface-alt: #F9FAFB;
  --color-surface-hover: #F0F2F5;

  /* Text & Borders */
  --color-text-main: #111827;
  --color-text-secondary: #4B5563;
  --color-text-muted: #6B7280;
  --color-text-light: #9CA3AF;
  --color-border: #E5E7EB;
  --color-border-subtle: #F3F4F6;
  --color-border-dark: #374151;

  /* Gradients */
  --gradient-header: linear-gradient(180deg, #07150E 0%, #0B2217 100%);
  --gradient-deal: linear-gradient(135deg, #FF5A00 0%, #E11D48 100%);
  --gradient-primary: linear-gradient(135deg, #0B5D35 0%, #10B981 100%);
  --gradient-card-overlay: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.7) 100%);

  /* Typography */
  --font-family-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Type Scale */
  --text-2xs: 0.6875rem; /* 11px */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 1.875rem;  /* 30px */
  --text-4xl: 2.25rem;   /* 36px */

  /* Spacing */
  --container-width: 1320px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 10px 25px -4px rgba(0, 0, 0, 0.12), 0 4px 10px -2px rgba(0, 0, 0, 0.05);
  --shadow-modal: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-dropdown: 0 10px 30px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
