/* Base Theme Variables */
:root {
  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  /* Line Heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;

  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  /* Section Spacing */
  --section-padding-y: 5rem;
  --section-gap: 1rem;

  /* Container */
  --max-content-width: 1280px;
  --container-padding: 1.5rem;

  /* Border Radius */
  --radius-none: 0;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;

  /* State Colors (consistent across themes) */
  --color-success: #22c55e;
  --color-success-light: #dcfce7;
  --color-warning: #f59e0b;
  --color-warning-light: #fef3c7;
  --color-error: #ef4444;
  --color-error-light: #fee2e2;
  --color-info: #3b82f6;
  --color-info-light: #dbeafe;
}

/* Modern Theme (Современный) - IT/SaaS/Стартапы */
[data-theme="modern"] {
  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Primary Colors */
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --primary-light: #dbeafe;
  --primary-dark: #1d4ed8;

  /* Secondary Colors */
  --secondary: #8b5cf6;
  --secondary-hover: #7c3aed;
  --secondary-light: #ede9fe;

  /* Accent Colors */
  --accent: #06b6d4;
  --accent-hover: #0891b2;

  /* Backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-dark: #0f172a;
  --bg-overlay: rgba(0, 0, 0, 0.5);

  /* Text */
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --text-on-primary: #ffffff;
  --text-on-dark: #f1f5f9;

  /* Borders */
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --border-hover: #cbd5e1;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-button: 0 1px 3px 0 rgba(0, 0, 0, 0.1);

  /* Geometry */
  --btn-radius: var(--radius-lg);
  --card-radius: var(--radius-xl);
  --img-radius: var(--radius-lg);
  --btn-padding-x: 1.5rem;
  --btn-padding-y: 0.75rem;
  --btn-font-weight: 500;
  --btn-text-transform: none;

  /* Link Styles */
  --link-color: var(--primary);
  --link-hover: var(--primary-hover);
  --link-decoration: none;
  --link-hover-decoration: underline;
}

/* Minimal Theme (Минимализм) - Портфолио/Блоги */
[data-theme="minimal"] {
  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Primary Colors */
  --primary: #000000;
  --primary-hover: #333333;
  --primary-light: #f5f5f5;
  --primary-dark: #000000;

  /* Secondary Colors */
  --secondary: #666666;
  --secondary-hover: #444444;
  --secondary-light: #e5e5e5;

  /* Accent Colors */
  --accent: #737373;
  --accent-hover: #525252;

  /* Backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #fafafa;
  --bg-tertiary: #f5f5f5;
  --bg-dark: #000000;
  --bg-overlay: rgba(0, 0, 0, 0.3);

  /* Text */
  --text-primary: #000000;
  --text-secondary: #666666;
  --text-muted: #999999;
  --text-on-primary: #ffffff;
  --text-on-dark: #ffffff;

  /* Borders */
  --border-color: #e5e5e5;
  --border-light: #f5f5f5;
  --border-hover: #d4d4d4;

  /* Shadows - Minimal, почти без теней */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  --shadow-md: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 4px 8px -2px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
  --shadow-card: none;
  --shadow-button: none;

  /* Geometry - Острые углы */
  --btn-radius: 0;
  --card-radius: 0;
  --img-radius: 0;
  --btn-padding-x: 2rem;
  --btn-padding-y: 0.875rem;
  --btn-font-weight: 400;
  --btn-text-transform: none;

  /* Link Styles */
  --link-color: var(--text-primary);
  --link-hover: var(--text-secondary);
  --link-decoration: underline;
  --link-hover-decoration: none;
}

/* Corporate Theme (Корпоративный) - B2B/Финансы/Юристы */
[data-theme="corporate"] {
  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Primary Colors */
  --primary: #1e40af;
  --primary-hover: #1e3a8a;
  --primary-light: #dbeafe;
  --primary-dark: #1e3a8a;

  /* Secondary Colors */
  --secondary: #059669;
  --secondary-hover: #047857;
  --secondary-light: #d1fae5;

  /* Accent Colors */
  --accent: #dc2626;
  --accent-hover: #b91c1c;

  /* Backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --bg-dark: #111827;
  --bg-overlay: rgba(30, 64, 175, 0.5);

  /* Text */
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --text-on-primary: #ffffff;
  --text-on-dark: #f9fafb;

  /* Borders */
  --border-color: #d1d5db;
  --border-light: #e5e7eb;
  --border-hover: #9ca3af;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  --shadow-button: 0 1px 2px 0 rgba(0, 0, 0, 0.05);

  /* Geometry - Консервативные скругления */
  --btn-radius: var(--radius-sm);
  --card-radius: var(--radius-md);
  --img-radius: var(--radius-sm);
  --btn-padding-x: 1.75rem;
  --btn-padding-y: 0.625rem;
  --btn-font-weight: 600;
  --btn-text-transform: none;

  /* Link Styles */
  --link-color: var(--primary);
  --link-hover: var(--primary-hover);
  --link-decoration: none;
  --link-hover-decoration: underline;
}

/* Creative Theme (Креативный) - Агентства/Дизайн-студии */
[data-theme="creative"] {
  /* Typography */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Primary Colors */
  --primary: #ec4899;
  --primary-hover: #db2777;
  --primary-light: #fce7f3;
  --primary-dark: #be185d;

  /* Secondary Colors */
  --secondary: #a855f7;
  --secondary-hover: #9333ea;
  --secondary-light: #f3e8ff;

  /* Accent Colors */
  --accent: #f59e0b;
  --accent-hover: #d97706;

  /* Backgrounds */
  --bg-primary: #fefefe;
  --bg-secondary: #fdf4ff;
  --bg-tertiary: #fae8ff;
  --bg-dark: #1f2937;
  --bg-overlay: rgba(236, 72, 153, 0.4);

  /* Text */
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --text-on-primary: #ffffff;
  --text-on-dark: #fdf4ff;

  /* Borders */
  --border-color: #f3e8ff;
  --border-light: #fae8ff;
  --border-hover: #e9d5ff;

  /* Shadows - Цветные тени */
  --shadow-sm: 0 2px 4px 0 rgba(236, 72, 153, 0.1);
  --shadow-md: 0 6px 12px -2px rgba(236, 72, 153, 0.15);
  --shadow-lg: 0 12px 24px -4px rgba(236, 72, 153, 0.2);
  --shadow-xl: 0 24px 48px -8px rgba(236, 72, 153, 0.25);
  --shadow-card: 0 4px 12px -2px rgba(168, 85, 247, 0.15);
  --shadow-button: 0 4px 14px 0 rgba(236, 72, 153, 0.3);

  /* Geometry - Большие скругления */
  --btn-radius: var(--radius-xl);
  --card-radius: var(--radius-2xl);
  --img-radius: var(--radius-xl);
  --btn-padding-x: 2rem;
  --btn-padding-y: 0.875rem;
  --btn-font-weight: 600;
  --btn-text-transform: none;

  /* Link Styles */
  --link-color: var(--primary);
  --link-hover: var(--secondary);
  --link-decoration: none;
  --link-hover-decoration: none;
}

/* Elegant Theme (Элегантный) - Мода/Красота/Премиум */
[data-theme="elegant"] {
  /* Typography - Serif заголовки */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Primary Colors */
  --primary: #78716c;
  --primary-hover: #57534e;
  --primary-light: #f5f5f4;
  --primary-dark: #44403c;

  /* Secondary Colors */
  --secondary: #a8a29e;
  --secondary-hover: #78716c;
  --secondary-light: #e7e5e4;

  /* Accent Colors */
  --accent: #b8860b;
  --accent-hover: #996f0a;

  /* Backgrounds */
  --bg-primary: #fafaf9;
  --bg-secondary: #f5f5f4;
  --bg-tertiary: #e7e5e4;
  --bg-dark: #292524;
  --bg-overlay: rgba(120, 113, 108, 0.5);

  /* Text */
  --text-primary: #292524;
  --text-secondary: #57534e;
  --text-muted: #78716c;
  --text-on-primary: #fafaf9;
  --text-on-dark: #f5f5f4;

  /* Borders */
  --border-color: #e7e5e4;
  --border-light: #f5f5f4;
  --border-hover: #d6d3d1;

  /* Shadows - Мягкие */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 8px -2px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 20px -5px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.18);
  --shadow-card: 0 2px 8px -2px rgba(0, 0, 0, 0.1);
  --shadow-button: 0 2px 4px 0 rgba(0, 0, 0, 0.08);

  /* Geometry - Средние скругления */
  --btn-radius: var(--radius-md);
  --card-radius: var(--radius-lg);
  --img-radius: var(--radius-md);
  --btn-padding-x: 1.75rem;
  --btn-padding-y: 0.75rem;
  --btn-font-weight: 500;
  --btn-text-transform: none;

  /* Link Styles */
  --link-color: var(--primary);
  --link-hover: var(--primary-hover);
  --link-decoration: underline;
  --link-hover-decoration: underline;
}

/* Bold Theme (Яркий) - Спорт/Молодёжь/Развлечения */
[data-theme="bold"] {
  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Primary Colors */
  --primary: #ef4444;
  --primary-hover: #dc2626;
  --primary-light: #fee2e2;
  --primary-dark: #b91c1c;

  /* Secondary Colors */
  --secondary: #f59e0b;
  --secondary-hover: #d97706;
  --secondary-light: #fef3c7;

  /* Accent Colors */
  --accent: #10b981;
  --accent-hover: #059669;

  /* Backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #fef2f2;
  --bg-tertiary: #fee2e2;
  --bg-dark: #18181b;
  --bg-overlay: rgba(239, 68, 68, 0.5);

  /* Text */
  --text-primary: #18181b;
  --text-secondary: #3f3f46;
  --text-muted: #71717a;
  --text-on-primary: #ffffff;
  --text-on-dark: #fef2f2;

  /* Borders */
  --border-color: #fecaca;
  --border-light: #fee2e2;
  --border-hover: #fca5a5;

  /* Shadows - Контрастные цветные */
  --shadow-sm: 0 2px 4px 0 rgba(239, 68, 68, 0.1);
  --shadow-md: 0 6px 12px -2px rgba(239, 68, 68, 0.15);
  --shadow-lg: 0 12px 24px -4px rgba(239, 68, 68, 0.2);
  --shadow-xl: 0 24px 48px -8px rgba(239, 68, 68, 0.3);
  --shadow-card: 0 4px 12px -2px rgba(239, 68, 68, 0.15);
  --shadow-button: 0 4px 14px 0 rgba(239, 68, 68, 0.35);

  /* Geometry - Большие элементы */
  --btn-radius: var(--radius-lg);
  --card-radius: var(--radius-xl);
  --img-radius: var(--radius-lg);
  --btn-padding-x: 2rem;
  --btn-padding-y: 1rem;
  --btn-font-weight: 700;
  --btn-text-transform: uppercase;

  /* Link Styles */
  --link-color: var(--primary);
  --link-hover: var(--secondary);
  --link-decoration: none;
  --link-hover-decoration: underline;
}

/* Warm Theme (Тёплый) - Рестораны/Кафе/Еда */
[data-theme="warm"] {
  /* Typography */
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Primary Colors */
  --primary: #f59e0b;
  --primary-hover: #d97706;
  --primary-light: #fef3c7;
  --primary-dark: #b45309;

  /* Secondary Colors */
  --secondary: #92400e;
  --secondary-hover: #78350f;
  --secondary-light: #fde68a;

  /* Accent Colors */
  --accent: #dc2626;
  --accent-hover: #b91c1c;

  /* Backgrounds */
  --bg-primary: #fffbeb;
  --bg-secondary: #fef3c7;
  --bg-tertiary: #fde68a;
  --bg-dark: #78350f;
  --bg-overlay: rgba(245, 158, 11, 0.4);

  /* Text */
  --text-primary: #451a03;
  --text-secondary: #78350f;
  --text-muted: #92400e;
  --text-on-primary: #ffffff;
  --text-on-dark: #fef3c7;

  /* Borders */
  --border-color: #fde68a;
  --border-light: #fef3c7;
  --border-hover: #fcd34d;

  /* Shadows - Тёплые оттенки */
  --shadow-sm: 0 1px 3px 0 rgba(146, 64, 14, 0.1);
  --shadow-md: 0 4px 8px -2px rgba(146, 64, 14, 0.15);
  --shadow-lg: 0 10px 20px -5px rgba(146, 64, 14, 0.2);
  --shadow-xl: 0 20px 40px -10px rgba(146, 64, 14, 0.25);
  --shadow-card: 0 2px 8px -2px rgba(146, 64, 14, 0.12);
  --shadow-button: 0 2px 6px 0 rgba(245, 158, 11, 0.3);

  /* Geometry - Мягкие скругления */
  --btn-radius: var(--radius-xl);
  --card-radius: var(--radius-xl);
  --img-radius: var(--radius-lg);
  --btn-padding-x: 1.75rem;
  --btn-padding-y: 0.875rem;
  --btn-font-weight: 600;
  --btn-text-transform: none;

  /* Link Styles */
  --link-color: var(--secondary);
  --link-hover: var(--primary);
  --link-decoration: none;
  --link-hover-decoration: underline;
}

/* Clean Theme (Чистый) - Медицина/Здоровье/Аптеки */
[data-theme="clean"] {
  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Primary Colors */
  --primary: #0ea5e9;
  --primary-hover: #0284c7;
  --primary-light: #e0f2fe;
  --primary-dark: #0369a1;

  /* Secondary Colors */
  --secondary: #10b981;
  --secondary-hover: #059669;
  --secondary-light: #d1fae5;

  /* Accent Colors */
  --accent: #6366f1;
  --accent-hover: #4f46e5;

  /* Backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f0f9ff;
  --bg-tertiary: #e0f2fe;
  --bg-dark: #0c4a6e;
  --bg-overlay: rgba(14, 165, 233, 0.3);

  /* Text */
  --text-primary: #0c4a6e;
  --text-secondary: #0369a1;
  --text-muted: #7dd3fc;
  --text-on-primary: #ffffff;
  --text-on-dark: #e0f2fe;

  /* Borders */
  --border-color: #bae6fd;
  --border-light: #e0f2fe;
  --border-hover: #7dd3fc;

  /* Shadows - Минимальные чистые */
  --shadow-sm: 0 1px 2px 0 rgba(14, 165, 233, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(14, 165, 233, 0.08);
  --shadow-lg: 0 10px 15px -3px rgba(14, 165, 233, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(14, 165, 233, 0.12);
  --shadow-card: 0 1px 4px 0 rgba(14, 165, 233, 0.08);
  --shadow-button: 0 1px 3px 0 rgba(14, 165, 233, 0.15);

  /* Geometry - Мягкие скругления */
  --btn-radius: var(--radius-md);
  --card-radius: var(--radius-lg);
  --img-radius: var(--radius-md);
  --btn-padding-x: 1.5rem;
  --btn-padding-y: 0.75rem;
  --btn-font-weight: 500;
  --btn-text-transform: none;

  /* Link Styles */
  --link-color: var(--primary);
  --link-hover: var(--primary-hover);
  --link-decoration: none;
  --link-hover-decoration: underline;
}

/* Playful Theme (Игривый) - Детские товары/Игры/Развлечения */
[data-theme="playful"] {
  /* Typography */
  --font-heading: 'Nunito', 'Comic Sans MS', sans-serif;
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Primary Colors */
  --primary: #f43f5e;
  --primary-hover: #e11d48;
  --primary-light: #ffe4e6;
  --primary-dark: #be123c;

  /* Secondary Colors */
  --secondary: #8b5cf6;
  --secondary-hover: #7c3aed;
  --secondary-light: #ede9fe;

  /* Accent Colors */
  --accent: #facc15;
  --accent-hover: #eab308;

  /* Backgrounds */
  --bg-primary: #fefefe;
  --bg-secondary: #fdf2f8;
  --bg-tertiary: #fce7f3;
  --bg-dark: #831843;
  --bg-overlay: rgba(244, 63, 94, 0.3);

  /* Text */
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --text-on-primary: #ffffff;
  --text-on-dark: #fce7f3;

  /* Borders */
  --border-color: #fbcfe8;
  --border-light: #fce7f3;
  --border-hover: #f9a8d4;

  /* Shadows - Яркие игривые */
  --shadow-sm: 0 2px 4px 0 rgba(244, 63, 94, 0.1);
  --shadow-md: 0 6px 12px -2px rgba(139, 92, 246, 0.15);
  --shadow-lg: 0 12px 24px -4px rgba(244, 63, 94, 0.2);
  --shadow-xl: 0 24px 48px -8px rgba(139, 92, 246, 0.25);
  --shadow-card: 0 4px 12px -2px rgba(244, 63, 94, 0.12);
  --shadow-button: 0 4px 14px 0 rgba(244, 63, 94, 0.3);

  /* Geometry - Максимальные скругления */
  --btn-radius: var(--radius-2xl);
  --card-radius: var(--radius-2xl);
  --img-radius: var(--radius-xl);
  --btn-padding-x: 2rem;
  --btn-padding-y: 1rem;
  --btn-font-weight: 700;
  --btn-text-transform: none;

  /* Link Styles */
  --link-color: var(--primary);
  --link-hover: var(--secondary);
  --link-decoration: none;
  --link-hover-decoration: none;
}

/* Luxury Theme (Люксовый) - Ювелирка/Премиум-авто/VIP */
[data-theme="luxury"] {
  /* Typography - Serif заголовки */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Primary Colors */
  --primary: #d4af37;
  --primary-hover: #b8972e;
  --primary-light: #fef9e7;
  --primary-dark: #9a7b25;

  /* Secondary Colors */
  --secondary: #1a1a1a;
  --secondary-hover: #2d2d2d;
  --secondary-light: #404040;

  /* Accent Colors */
  --accent: #8b7355;
  --accent-hover: #6b5a45;

  /* Backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #fafafa;
  --bg-tertiary: #f5f5f5;
  --bg-dark: #0a0a0a;
  --bg-overlay: rgba(0, 0, 0, 0.6);

  /* Text */
  --text-primary: #1a1a1a;
  --text-secondary: #404040;
  --text-muted: #737373;
  --text-on-primary: #0a0a0a;
  --text-on-dark: #d4af37;

  /* Borders */
  --border-color: #e5e5e5;
  --border-light: #f5f5f5;
  --border-hover: #d4af37;

  /* Shadows - Контрастные глубокие */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 8px -2px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 10px 20px -5px rgba(0, 0, 0, 0.22);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.28);
  --shadow-card: 0 4px 16px -4px rgba(0, 0, 0, 0.15);
  --shadow-button: 0 2px 8px 0 rgba(212, 175, 55, 0.3);

  /* Geometry - Минимальные скругления, uppercase */
  --btn-radius: var(--radius-sm);
  --card-radius: var(--radius-md);
  --img-radius: var(--radius-sm);
  --btn-padding-x: 2rem;
  --btn-padding-y: 0.875rem;
  --btn-font-weight: 500;
  --btn-text-transform: uppercase;

  /* Link Styles */
  --link-color: var(--primary);
  --link-hover: var(--primary-hover);
  --link-decoration: none;
  --link-hover-decoration: underline;
}

/* Global Theme Styles */
[data-theme] .btn-primary {
  background-color: var(--primary);
  color: var(--text-on-primary);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  border-radius: var(--btn-radius);
  font-weight: var(--btn-font-weight);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

[data-theme] .btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

[data-theme] .btn-secondary {
  background-color: var(--secondary);
  color: var(--text-on-primary);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  border-radius: var(--btn-radius);
  font-weight: var(--btn-font-weight);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

[data-theme] .btn-secondary:hover {
  background-color: var(--secondary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

[data-theme] .btn-outline {
  background-color: transparent;
  color: var(--primary);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  border-radius: var(--btn-radius);
  font-weight: var(--btn-font-weight);
  transition: all var(--transition-base);
  border: 2px solid var(--primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

[data-theme] .btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-on-primary);
  box-shadow: var(--shadow-md);
}

[data-theme] .btn-ghost {
  background-color: transparent;
  color: var(--primary);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  border-radius: var(--btn-radius);
  font-weight: var(--btn-font-weight);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

[data-theme] .btn-ghost:hover {
  background-color: var(--primary-light);
  color: var(--primary-hover);
}

[data-theme] a:not(.btn-primary):not(.btn-secondary):not(.btn-outline):not(.btn-ghost) {
  color: var(--link-color);
  text-decoration: var(--link-decoration);
  transition: all var(--transition-fast);
}

[data-theme] a:not(.btn-primary):not(.btn-secondary):not(.btn-outline):not(.btn-ghost):hover {
  color: var(--link-hover);
  text-decoration: var(--link-hover-decoration);
}

[data-theme] .card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--btn-radius);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

[data-theme] .card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

[data-theme] .input,
[data-theme] input[type="text"],
[data-theme] input[type="email"],
[data-theme] input[type="tel"],
[data-theme] input[type="password"],
[data-theme] textarea,
[data-theme] select {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all var(--transition-fast);
  width: 100%;
}

[data-theme] .input:focus,
[data-theme] input:focus,
[data-theme] textarea:focus,
[data-theme] select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

[data-theme] .badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 500;
  background-color: var(--primary-light);
  color: var(--primary);
}

[data-theme] .divider {
  height: 1px;
  background-color: var(--border-color);
  margin: var(--spacing-lg) 0;
}
