/* === ЦВЕТА ИЗ ЛЕНДИНГА ART GARDEN === */
:root {
    /* Основные */
    --brand: #2d5016;
    --brand-dark: #1a3d0a;
    --brand-light: #3d6b20;
    --accent: #d4af37;
    --olive: #6b7c59;

    /* Фоны */
    --bg: #f5f5f5;
    --bg-white: #ffffff;
    --bg-card: #ffffff;

    /* Текст */
    --text: #2c3e50;
    --text-light: #6b7c59;
    --text-muted: #94a3b8;

    /* Статусы */
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;

    /* Границы и тени */
    --border: #e2e8f0;
    --radius: 12px;
    --radius-full: 50px;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(45, 80, 22, 0.15);
    --shadow-hover: 0 10px 30px rgba(45, 80, 22, 0.1);

    /* Шрифты */
    --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Сайдбар */
    --sidebar-width: 260px;
    --sidebar-bg: var(--brand-dark);
    --sidebar-text: rgba(255, 255, 255, 0.8);
    --sidebar-text-active: #ffffff;
    --sidebar-hover: rgba(255, 255, 255, 0.1);
    --sidebar-active: rgba(255, 255, 255, 0.15);

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