.catalog__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.catalog__item a {
    padding: 5px 0 20px 0;
    display: flex;
    gap:  20px;
    border-bottom: 1px solid #e6e6e6;
    text-decoration: none;
    color: inherit;
}

.catalog__image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.catalog__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.catalog__name {
    font-weight: 700;
    font-size: 17px;
    padding-bottom: 10px;
}

.catalog__preview {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 1.5;
}

.catalog__bar {
    margin-top: 30px;
    align-items: center;
    gap: 2px;
}
.catalog__bar-button {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    border: 1px solid #ccc;
    margin: 5px;
    text-decoration: none;
    font-size: 14px;
}
.catalog__bar-button.active {
    background-color: #D87093;
    color: var(--white-color);
}
.catalog__bar-dots {
    margin: 0 5px;
    color: var(--secondary-color);
}

.category-list .page-header h2 {
    color: #009245;
    font-size: 24px;
    margin-bottom: 20px;
}

.catalog__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.catalog__item a {
    padding: 20px 0;
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #e6e6e6;
}

.catalog__item a:hover .catalog__name {
    color: var(--primary-color);
}

.catalog__image {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.catalog__text {
    flex: 1;
}

.catalog__name {
    font-weight: 700;
    font-size: 17px;
    padding-bottom: 10px;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.catalog__preview {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.catalog__description {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.catalog__empty {
    padding: 40px;
    text-align: center;
    color: #888;
    background: #f9f9f9;
    border-radius: 8px;
}

.catalog__bar {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.catalog__bar > span {
    margin-right: 10px;
    color: var(--secondary-color);
}

.catalog__bar-button {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.catalog__bar-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.catalog__bar-button.active {
    background-color: #D87093;
    color: #fff;
    border-color: #D87093;
}

.catalog__children {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
}

.catalog__children h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.catalog__children-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.catalog__children-list li {
    list-style: none;
}

.catalog__children-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.catalog__children-list a:hover {
    text-decoration: underline;
}

.category .category-table {
    border-collapse: collapse;
    width: 100%;
}

.category .category-table tr {
    border-bottom: 1px solid #e6e6e6;
}

.category .category-item img {
    margin-top: 15px;
    margin-bottom: 15px;
}

.category .category-item .img-block {
    margin-right: 20px;
}

.category .category-item .img-block,
.category .category-item .all-category-content-block {
    display: inline-block;
    vertical-align: top;
}

.category .category-item .all-category-content-block {
    width: calc(100% - 220px);
    max-width: 500px;
}

.category .category-item .all-category-content-block > .text {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: justify;
}

.category .category-item .all-category-content-block > .text p {
    margin-top: 5px;
}

.category .category-item .all-category-content-block > .title {
    margin-top: 12px;
}

.category .category-item .all-category-content-block > .title a {
    font-family: 'UbuntuBold', sans-serif;
    font-weight: 700;
    color: #e30075;
    font-size: 16px;
    text-decoration: underline;
}

.category .category-item .all-category-content-block > .title a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .catalog {
        padding-top: 0;
    }

    .catalog__item a {
        padding: 10px 0;
        flex-direction: column;
    }

    .catalog__image {
        width: 100%;
        height: 200px;
    }

    .catalog__bar-button {
        width: 50px;
        height: 50px;
    }

    .catalog__item a {
        padding: 15px 0;
        flex-direction: column;
    }

    .catalog__image {
        width: 100%;
        height: 180px;
    }

    .catalog__bar-button {
        width: 45px;
        height: 45px;
    }

    .catalog__name {
        font-size: 16px;
    }

}