body {
    font-family: 'Montserrat-Regular', sans-serif;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url('/static/fonts/Montserrat-Regular.woff2');
    font-weight: 400;
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url('/static/fonts/Montserrat-Bold.woff2');
    font-weight: 800;
}

@font-face {
    font-family: 'Montserrat-Light';
    src: url('/static/fonts/Montserrat-Light.woff2');
    font-weight: 200;
}

.category-btn {
    font-family: 'Montserrat-Bold';
    padding: 6px 10px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 10px;
    background: orange;
    color: #333333;
    width: 80%;
    max-width: none;
    box-sizing: border-box;
    height: 56px;
    justify-content: center;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px;
}

.categories .category-btn {
    flex: 1 1 46%; /* Устанавливаем базовую ширину и возможность изменения ширины */
    max-width: none; /* Убираем максимальную ширину */
}

/* Стили для компьютерной версии (ширина экрана 1024px и больше) */
@media (min-width: 1024px) {
    .categories {
        margin-left: 280px;
        margin-right: 280px;
    }
}

/* Стили для мобильной версии (ширина экрана меньше 1024px) */
@media (max-width: 1023px) {
    .categories {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.category-btn img {
	width: 56px;
	height: 56px;
	margin-right: 10px;
}

.category-btn.inactive {
	background: #ccc;
	color: #666;
	pointer-events: none;
}

.cards {
	display: flex;
	text-align: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 5px;
	border-color: transparent;
	width: 292px;
	height: 60px;
	margin: 8px;
	padding: 10px 10px 10px 10px;
	background-color: orange;
	color: #333333;
}

.card_title {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Montserrat-Bold', sans-serif;
	font-size: 16px;
	text-align: center;
	user-select: none;
}


.title_block {
    font-family: 'Montserrat-Regular', sans-serif;
    font-size: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 60px 20px;
}
.catalog_title {
    font-family: 'Montserrat-Bold', sans-serif;
    font-size: 60px;
}
.title_block_caption_catalog{
    font-family: 'Montserrat-Regular', sans-serif;
    font-size: 23px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

/* Стили при наведении */
.category-btn:hover {
    opacity: 0.8;
}

/* Стили при нажатии */
.category-btn:active {
    opacity: 0.6;
}

