/* Додаткові стилі для іншого вмісту */
.category-container {
    margin-top: 20px;
}

.category-container h2 {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase; /* Перетворення тексту на великі літери */
}

.category-container p {
    font-size: 18px;
    margin-bottom: 15px;
}

.category-container form {
    margin-bottom: 20px;
}

.category-container label {
    font-size: 16px;
    margin-right: 10px;
}

.category-container select,
.category-container input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}

.category-container button[type="submit"] {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.category-container button[type="submit"]:hover {
    background-color: #555;
}

.product-list {
    list-style: none;
    padding: 0;
}

.product-item {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
}

.product-item img {
    width: 100%;
    height: 280px; /* Задаємо фіксовану висоту */
    display: block;
    object-fit: cover; /* Вписуємо зображення в контейнер без спотворення пропорцій */
    margin: 0;
}

.product-item a {
    font-size: 20px; /* Збільшення розміру шрифту */
    color: #333;
    text-decoration: none;
    font-weight: normal; /* Звичайний текст */
    flex: 1; /* Займає всю доступну ширину */
}

.product-item span {
    font-size: 20px; /* Збільшення розміру шрифту */
    color: #333;
    font-weight: bold; /* Жирний текст */
    margin-left: auto; /* Вирівнювання в правий край */
}

.pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.pagination .step-links {
    font-size: 16px;
}

.pagination .current {
    font-weight: bold;
    margin: 0 10px;
}

.pagination a {
    color: #
