/* === Půjčovna — CSS Custom Properties ===
   Override this file to match your Shoptet theme.
   Change variable values only — everything else adapts automatically. */

:root {
  /* Colors */
  --color-primary: #d97706;
  --color-primary-hover: #b45309;
  --color-primary-light: #fef3c7;
  --color-success: #16a34a;
  --color-success-light: #dcfce7;
  --color-danger: #dc2626;
  --color-danger-light: #fee2e2;
  --color-warning: #d97706;
  --color-warning-light: #fef3c7;
  --color-text: #1a1a1a;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-bg: #fafaf9;
  --color-surface: #fffffe;
  --color-white: #ffffff;

  /* Typography */
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-size-base: 15px;
  --font-size-sm: 13px;
  --font-size-lg: 18px;
  --font-size-xl: 28px;
  --font-size-2xl: 42px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 800;
  --line-height: 1.6;
  --line-height-tight: 1.2;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 40px;
  --spacing-2xl: 64px;
  --spacing-3xl: 96px;

  /* Shapes */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-soft: 0 2px 8px -2px rgba(217,119,6,.08), 0 4px 16px -4px rgba(26,26,26,.06);
  --shadow-card: 0 4px 16px -2px rgba(217,119,6,.06), 0 8px 24px -4px rgba(26,26,26,.08);
  --shadow-card-hover: 0 8px 32px -4px rgba(217,119,6,.12), 0 16px 48px -8px rgba(26,26,26,.12);
  --shadow-input: 0 0 0 3px rgba(217,119,6,.12);
  --shadow-inner: inset 0 1px 2px rgba(255,255,255,.15);

  /* Layout */
  --max-width: 1100px;
  --grid-cols: 3;
}

@media (max-width: 900px) {
  :root { --grid-cols: 2; }
}
@media (max-width: 580px) {
  :root { --grid-cols: 1; }
}
