/* CSS Variables для темы Carrosserie Berger */

:root {
    /* Основные цвета */
    --color-gold: #D9C07C;
    --color-purple: #B21471;
    --color-pink: #D22364;
    --color-text: #000;
    --color-bg: #fff;
    --color-gray-light: #f5f5f5;
    --color-gray-medium: #666;
    --color-footer: #B993C0;

    /* Тени */
    --shadow-card: 3px 3px 15px rgba(0, 0, 0, 0.15);
    --shadow-header: 0 2px 10px rgba(0, 0, 0, 0.1);

    /* Закругления */
    --border-radius: 16px;
    --border-radius-sm: 8px;

    /* Переходы */
    --transition-speed: 0.3s;
    --transition-timing: ease;

    /* Z-index слои */
    --z-header: 1000;
    --z-nav: 999;
    --z-modal: 1001;
    --z-sticky-bar: 100;

    /* Шрифты */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
}

/* Дополнительные утилиты для переменных */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    scroll-behavior: smooth;
}

