/* SR Car Lift - Bright Pastel Design System & High Contrast Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

*, ::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e2e8f0;
}

body {
    margin: 0;
    font-family: var(--sr-font-body, 'Inter', sans-serif);
    background-color: var(--sr-bg, #FAFAFC);
    color: var(--sr-text, #0F172A);
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sr-font-heading, 'Outfit', sans-serif);
    color: #0F172A;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D97706;
}

/* Bright Card Glow & Soft Pastel Elevation */
.card-glow {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
}
.card-glow:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 119, 6, 0.4);
    box-shadow: 0 20px 25px -5px rgba(217, 119, 6, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

/* Glassmorphism Light Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.8);
}
