:root {
    /* Fresh & Vibrant Soap Company Palette */

    /* Primary - Soft Lavender (calming, natural) */
    --color-primary: #7c3aed;
    --color-primary-dark: #6d28d9;
    --color-primary-light: #a78bfa;

    /* Accent - Warm Coral (inviting, energetic) */
    --color-accent: #f472b6;
    --color-accent-dark: #ec4899;
    --color-accent-light: #f9a8d4;

    /* Secondary - Fresh Teal (clean, refreshing) */
    --color-secondary: #14b8a6;
    --color-secondary-light: #5eead4;
    --color-secondary-dark: #0d9488;

    /* Tertiary - Sunny Yellow (cheerful) */
    --color-tertiary: #fbbf24;
    --color-tertiary-light: #fcd34d;
    --color-tertiary-dark: #f59e0b;

    /* Status Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-info: #06b6d4;

    /* Neutrals - Warm tinted */
    --color-white: #FFFFFF;
    --color-cream: #fefdfb;
    --color-gray-50: #faf9f7;
    --color-gray-100: #f5f3f0;
    --color-gray-200: #e8e5e0;
    --color-gray-300: #d6d2cb;
    --color-gray-400: #a8a29e;
    --color-gray-500: #78716c;
    --color-gray-600: #57534e;
    --color-gray-700: #44403c;
    --color-gray-800: #292524;
    --color-gray-900: #1c1917;

    /* Backgrounds - Light & Airy */
    --color-background: linear-gradient(135deg, #fefdfb 0%, #faf5ff 50%, #f0fdfa 100%);
    --color-surface: rgba(255, 255, 255, 0.95);
    --color-text: #44403c;
    --color-text-muted: #78716c;

    /* Glass Effect - Softer, warmer */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
    --glass-blur: blur(12px);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-display: 'Playfair Display', Georgia, serif;

    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* 3D Shadows - Softer, colorful */
    --shadow-sm: 0 2px 4px rgba(124, 58, 237, 0.04);
    --shadow-md: 0 4px 12px rgba(124, 58, 237, 0.08);
    --shadow-lg: 0 8px 24px rgba(124, 58, 237, 0.12);
    --shadow-xl: 0 16px 48px rgba(124, 58, 237, 0.16);
    --shadow-2xl: 0 24px 64px rgba(124, 58, 237, 0.2);

    /* 3D Layered Shadows - Vibrant */
    --shadow-3d:
        0 2px 4px rgba(124, 58, 237, 0.03),
        0 4px 8px rgba(244, 114, 182, 0.04),
        0 8px 16px rgba(20, 184, 166, 0.05),
        0 16px 32px rgba(124, 58, 237, 0.06);
    --shadow-3d-hover:
        0 4px 8px rgba(124, 58, 237, 0.05),
        0 8px 16px rgba(244, 114, 182, 0.06),
        0 16px 32px rgba(20, 184, 166, 0.08),
        0 32px 64px rgba(124, 58, 237, 0.1);

    /* Colored Shadows */
    --shadow-accent: 0 8px 32px rgba(244, 114, 182, 0.35);
    --shadow-primary: 0 8px 32px rgba(124, 58, 237, 0.25);
    --shadow-secondary: 0 8px 32px rgba(20, 184, 166, 0.25);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slower: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Layout */
    --container-max: 1280px;
    --header-height: 72px;
}

/* Dark mode - Still warm and inviting */
@media (prefers-color-scheme: dark) {
    :root {
        --color-background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
        --color-surface: rgba(41, 37, 36, 0.95);
        --color-text: #faf9f7;
        --color-text-muted: #a8a29e;
        --glass-bg: rgba(41, 37, 36, 0.8);
        --glass-border: rgba(255, 255, 255, 0.1);
    }
}
