/* Стиль контейнера */
.container {
    width: 100%;
    max-width: 1200px;

    margin-bottom: 20px;
}

.category-name{

        background: linear-gradient(to bottom, #222222, #111);
}


/* Островок с дополнительным функционалом */
.island {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 10px 0;
    background-color: #222222;
    padding: 10px 20px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-direction: column; /* Элементы будут располагаться в колонку по умолчанию */
}

.island-content {
    display: flex;
    justify-content: space-between; /* Распределяет элементы по сторонам */
    align-items: center;
    width: 100%; /* Занимает всю доступную ширину */
    gap: 20px; /* Добавляет отступы между элементами */
}

/* Поиск */
.search-container input {
    width: 250px;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.search-box {
    max-width: 500px;
}

.search-box input {
    width: 80%;
}

/* Количество товаров */
.product-count {
    font-size: 14px;
    color: #a79999;
}

/* Убираем осторовок, если экран меньше 768 */
.filter-button {
    display: none;
}

/* Стиль для изменения размера текста в categoryName */
#categoryName {
    display: flex; /* Включаем флексбокс */
    align-items: center; /* Выравнивание по вертикали */
    justify-content: center; /* Выравнивание по горизонтали */
    text-align: center;

     height: 60px;
     font-size: 32px; /* Устанавливаем нужный размер */
    font-weight: bold; /* Можно добавить полужирное начертание, если нужно */
    color: #ffffff; /* Цвет текста */


}

/* костяль чтобы выравнить поиск */
.psevdo {
    width: 80px;
    height: 20px;

}
psevdo_zapChaSt {
    width: 80px;
    height: 10px;
}

@media (max-width: 768px){
    #categoryName{
        font-size: 24px; /* Устанавливаем нужный размер */
    }

    .category-name{
        height: 40px;
    }

    .dropdown-menu {
        width: 120%;

    }

    .filter-button {
        display: block;
        background-color: #444;
        color: white;
        padding: 10px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    #productCount {
        white-space: nowrap; /* Предотвращает перенос текста */
    }

    .psevdo {
        display: none
    }

    .product-count {
        display: none;

    }

    .island {
        margin-top: 80px;
    }

}

