@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

:root {
    --color-industrial-charcoal: #1A1A1A;
    --color-industrial-dark: #121212;
    --color-leather-accent: #8B5E3C;
    --color-leather-dark: #6E472B;
    --color-leather-light: #F4BB92;
    --color-safety-red: #C0422D;
    --color-safety-red-hover: #A33320;
    --color-surface: #F9F9F9;
    --color-surface-off-white: #F5F5F5;
    --color-surface-container: #EEEEEE;
    --color-surface-container-high: #E8E8E8;
    --color-surface-container-highest: #E2E2E2;
    --color-outline: #747878;
    --color-outline-variant: #E2E2E2;
    --color-text-primary: #1A1A1A;
    --color-text-secondary: #555858;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--color-text-primary);
    background-color: var(--color-surface);
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

img, video, iframe, svg {
    max-width: 100%;
}


/* Typography styles */
.font-display {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.font-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.font-label-caps {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    line-height: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.font-data-tabular {
    font-family: 'Inter', sans-serif;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

/* Material Symbols configuration */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.material-symbols-outlined.fill {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Architectural 1px Borders */
.border-industrial {
    border: 1px solid rgba(26, 26, 26, 0.12);
}

.border-industrial-dark {
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c4c7c7;
}

::-webkit-scrollbar-thumb:hover {
    background: #8B5E3C;
}

/* Animations */
.fade-in-element {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* RFQ Drawer styles */
#rfq-drawer {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

#rfq-backdrop {
    transition: opacity 0.35s ease;
}

/* Print styles */
@media print {
    nav, footer, #rfq-drawer, #whatsapp-trigger, .no-print {
        display: none !important;
    }
}
