/* Quality Auto Centers - Custom Styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;800&display=swap');

:root {
    --primary: #4C5578;
    /* Future Dusk */
    --primary-dark: #373e5a;
    --secondary: #1e293b;
    /* Slate 900 */
    --accent: #FFCA5C;
    /* Ray Flower */
    --bg-warm: #f8fafc;
    /* Slate 50 (Systemic White) */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-warm);
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: 'Outfit', sans-serif;
}

/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.dark-glass {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Smooth Transitions */
.transition-standard {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* SEO Highlight for Debugging (toggleable) */
.seo-debug [data-seo-missing] {
    outline: 2px dashed #f59e0b;
}

/* Inventory Cards */
.inventory-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.inventory-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}