/* Configurator Base Styles */
:root {
    --primary-color: #1A1A1E;
    --secondary-color: #282830;
    --accent-color: #d0c57e;
    --text-color: #FFFFFF;
    --text-secondary: #E5E5E5;
    --overlay-light: rgba(40, 40, 48, 0.7);
    --overlay-dark: rgba(26, 26, 30, 0.85);
    --gradient-overlay: linear-gradient(to bottom, rgba(26, 26, 30, 0.3), rgba(26, 26, 30, 0.7));
    --header-height: 80px;
    --mega-menu-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.2);
    --transition-main: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);

    --warning-color: #FFCC00;
    --error-color: #FF4C4C; 
    --success-color: #4CAF50;
    --info-color: #2196F3;

}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
}