/* Основные стили */
body {
    font-family: 'GratoGrotesk', Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    margin: 0;
    min-height: 100vh;
}


section{
    background-color: #f5f5f5 !important;
}

header {
    background: #f5f5f5;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.catalog {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.configurator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.uppercase{
    text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'GratoGrotesk', Arial, sans-serif !important;    
}

