/* CSL Shoes Design Tokens — shared across all webshop pages */
/* This file provides consistent variables, font, and utility classes */

/* Font face */
@font-face {
  font-family: InterVariable;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/cslshoes_erp/fonts/InterVariable-Latin.woff2") format("woff2");
  unicode-range: U+0020-00FF, U+2000-200B, U+2013-2014, U+2018-201D, U+2022, U+2026, U+2039-203A, U+20AC, U+2122, U+2212;
}

/* Unified design tokens — WCAG AA compliant contrast */
:root {
  /* Brand colors — gold darkened from #c9a227 to pass AA contrast (5.1:1 on white) */
  --csl-accent: #8B6914;
  --csl-accent-light: #c9a227;
  --csl-primary: #1a1a1a;
  --csl-success: #16a34a;
  --csl-danger: #ef4444;
  --csl-warning: #f59e0b;
  --csl-info: #3b82f6;

  /* Grays */
  --csl-white: #ffffff;
  --csl-gray-50: #f9fafb;
  --csl-gray-100: #f3f4f6;
  --csl-gray-200: #e5e7eb;
  --csl-gray-300: #d1d5db;
  --csl-gray-400: #9ca3af;
  --csl-gray-500: #6b7280;
  --csl-gray-600: #4b5563;
  --csl-gray-700: #374151;
  --csl-gray-800: #1f2937;
  --csl-gray-900: #111827;

  /* Typography */
  --csl-font: InterVariable, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Accessibility utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Focus visible — WCAG 2.4.7 */
:focus-visible {
  outline: 2px solid var(--csl-accent);
  outline-offset: 2px;
}

/* Reduced motion — WCAG 2.3.3 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Touch targets — WCAG 2.5.8 */
.csl-touch-target {
  min-width: 44px;
  min-height: 44px;
}
