#catalog.category-list {
    display: flex;
    flex-direction: column;

    width: 100%;
    margin-bottom: 70px;
}
#catalog .category {
    padding: 15px;
    position: relative;
    width: 100%;
}
#catalog .detail-product {
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 30px;
}
#catalog .category-holder {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    pointer-events: none;
}
#catalog .category-title {
    padding: 5px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: var(--white-color);
    color: #484949;
    font-size: 30px;
    font-weight: 500;
    position: sticky;
    top: 80px;
    z-index: 5;
}
#catalog .category-title .cat {
    background: #DFE7E0;
    padding: 4px 12px;
}
@media (max-width: 991px) {
    #catalog .category-title {
        top: 67px;
    }
}
@media (max-width: 582px) {
    #catalog .category-title {
        font-size: 22px;
    }
}