/* ==========================================================================
   Luxe Glo Design System - Base Styles & Theme Tokens
   ========================================================================== */

:root {
    --bg: #F8F4F0;
    --surface: #FFFFFF;
    --surface-hover: #F2ECE4;
    --surface-glass: rgba(255, 255, 255, 0.85);
    
    --text-main: #362D26;
    --text-muted: #8E7F71;
    --text-light: #B8AAA0;
    
    --border: #EADCD0;
    --border-light: #F3EAE2;
    --accent: #A38260;
    --accent-hover: #8D6E4E;
    --accent-light: #F4EFEB;
    
    --success: #137333;
    --success-bg: #E6F4EA;
    --danger: #C5221F;
    --danger-bg: #FCE8E6;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-pill: 100px;
    
    --shadow-subtle: 0 4px 20px rgba(54, 45, 38, 0.04);
    --shadow-hover: 0 15px 35px rgba(54, 45, 38, 0.08);
    --shadow-float: 0 20px 45px rgba(54, 45, 38, 0.12);
    
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

p {
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* App Container */
.app-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    flex-direction: row;
}

/* Toast Container */
#toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.toast {
    background: var(--surface);
    color: var(--text-main);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-float);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    pointer-events: auto;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.toast-success i {
    color: var(--success);
    font-size: 1.25rem;
}

.toast.toast-info i {
    color: var(--accent);
    font-size: 1.25rem;
}
